@import url('https://fonts.googleapis.com/css2?family=Cutive+Mono&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&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;
}

/* Ejemplo: si tienes títulos h1 */
h1, h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Párrafos con Lora para mejor lectura */
p {
    font-family: 'Lora', serif;
    font-weight: 400;
}

/* Una clase destacada con Poppins */
.highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}


/* Main container */
.container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}
a {
  color: white;
  text-decoration: none; /* elimina el subrayado, opcional */
}

a:hover {
  text-decoration: underline; /* agrega subrayado al pasar el mouse, opcional */
}
.title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: "Bodoni Moda", serif;
    font-weight: 300;
    letter-spacing: 4px; /* separa las letras */
}

.links {
  font-size: 1.2rem;
  margin-bottom: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  display: flex;
  flex-wrap: nowrap; /* Esto evita que se envuelvan */
  justify-content: center;
  flex-shrink: 0;
  gap: 0.75rem;
}


.links a {
    color: white;
    text-decoration: none;
}

.links a:hover {
    text-decoration: underline;
}

.tattoo-box {
    width: 420px;
    height: 420px;
    margin: 0 auto 60px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a i {
    color: inherit;
    font-size: 1.5rem;
    margin-right: 8px;
    vertical-align: middle;
}

.footer a:hover {
    text-decoration: underline;
    color: white;
}

.gallery-tattoo {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 10px;
    padding: 20px;
}

.tattoo-image {
    cursor: pointer;
    width: 100%;
    display: block;
    margin: 0 auto;
    height: 100%;
    pointer-events: none;        /* evita que sea clickeable */
    user-select: none;           /* evita que se seleccione */
    -webkit-user-drag: none;     /* evita que se arrastre */
    object-fit: cover;
    box-shadow: none;
    border-radius: 8px;
   
}

.tattoo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.back-home {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.back-home:hover {
  background-color: rgba(255, 255, 255, 0.2);
}


#fullscreen-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000; /* negro sólido */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#fullscreen-image {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px #000000;
    border-radius: 8px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.about-image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about-text {
    width: 500px;
    max-width: 100%;
    color: white;
    background-color: #000000; /* negro sólido */
    padding: 20px;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.about-text p {
    font-size: 1.5rem;
}

form {
    background-color: #000000; /* negro sólido */
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    font-family: "Glass Antiqua", cursive;
    font-weight: 200;
}

.form-title {
    font-size: 2.8rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    text-align: center;
    color: white;
}

label {
    display: block;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    color: white;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="tel"],
input[type="file"],
select,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 1rem;
    background-color: #000000; /* negro sólido */
    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);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .title {
        font-size: 4rem;
    }

    .links {
        font-size: 1.75rem;
    }

    .tattoo-box {
        width: 90%;
        height: auto;
    }

    .footer {
        font-size: 1.25rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img, .about-text {
        width: 80%;
        height: auto;
    }

    .about-text {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }

    .links {
        font-size: 1.5rem;
    }

    .tattoo-box {
        width: 90%;
        height: auto;
    }

    .footer {
        font-size: 1rem;
    }

    .gallery-tattoo {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        flex-direction: column;
    }

    .about-image img, .about-text {
        width: 80%;
    }

    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;
    }
}
