
@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    
    background-image: linear-gradient(to bottom, #000000, #1a1a1a);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    font-family: 'Montserrat', sans-serif; /* mantengo Montserrat para el body */
    font-weight: 300; /* peso ligero */
    font-style: normal;
    color: white; /* texto blanco */
    font-size: 1rem;
    text-shadow: none;
}

/* Main container */
.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;

}

/* Title and form title */
.title, .form-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-title {
    font-size: 2rem;
    text-shadow: none;
    text-align: center;
}
.form-subtitle {
    font-size: 2rem;
    color: white;
    text-align: center;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 2rem; /* separa los párrafos entre sí */
}
 
/* Form container */
.form-container {
    background-color: rgba(0, 0, 0, 0.4); /* negro con 50% de transparencia */
    padding: 2.5rem;
    border-radius: 1rem; /* opcional: esquinas redondeadas */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-family: "Cutive Mono", monospace;
    font-weight: 200;
    
    
}

label {
    display: block;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    color: white;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="tel"],
input[type="checkbox"],
input[type="style"],
input[type="insta"],
input[type="area"],
input[type="file"],
input[type="city"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    background-color: rgba(255, 255, 255, 0.25);
    outline: none;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

button[type="submit"] {
    margin-top: 2rem;
    padding: 0.9rem 1.5rem;
    width: 100%;
    border: none;
    border-radius: 1rem;
    background-color: #4caf50;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
    background-color: #43a047;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}
.style-selection {
  margin-top: 20px;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border: 2px solid #ccc;
  border-radius: 4px;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #000;
  border-color: #000;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.footer a {
    color: white;
    text-decoration: none;
}

.footer a i {
    color: inherit; /* ensures the Instagram icon color inherits the link color */
    font-size: 1.5rem; /* adjust icon size */
    margin-right: 8px; /* space between icon and text */
    vertical-align: middle; /* aligns the icon with text */
}

.footer a:hover {
    text-decoration: underline; /* optional hover effect for the link */
    color: white; /* ensures the icon stays white on hover */
}

/* Image container */
.image-container {
    text-align: center; /* Centers the image */
    margin: 1rem 0; /* Adds spacing around the image */
}

/* Adjusting the size of the image */
.example-image {
    max-width: 50%; /* Sets the image width to 50% of its container */
    height: auto; /* Keeps the aspect ratio intact */
    border-radius: 4px; /* Optional: adds rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Adds a shadow for better visibility */
}

.image-label{
    text-align: center;
}


/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .title {
        font-size: 4rem; /* slightly smaller font for tablets */
    }

    .links {
        font-size: 1.75rem; /* slightly smaller font for tablets */
    }

    .footer {
        font-size: 1.25rem; /* slightly smaller footer */
    }

    .form-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem; /* smaller font for mobile */
    }

    .links {
        font-size: 1.5rem; /* smaller font for mobile */
    }

    .footer {
        font-size: 1rem; /* smaller footer for mobile */
    }

    form {
        padding: 1.5rem;
    }

    form h1 {
        font-size: 2rem;
    }

    label {
        font-size: 1rem;
    }

    input,
    select,
    textarea {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-tattoo {
        grid-template-columns: 1fr;
    }
}
