/* ===========================
   RESET BÁSICO
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #131313;
    font-family: 'SF Pro Text', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/* ===========================
   TIPOGRAFÍAS
=========================== */
@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SF-Pro-Display-Regular.woff2') format('woff2'),
        url('../fonts/SF-Pro-Display-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SF-Pro-Display-Bold.woff2') format('woff2'),
        url('../fonts/SF-Pro-Display-Bold.woff') format('woff');
    font-weight: 700;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SF-Pro-Text-Regular.woff2') format('woff2'),
        url('../fonts/SF-Pro-Text-Regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('../fonts/SF-Pro-Text-Medium.woff2') format('woff2'),
        url('../fonts/SF-Pro-Text-Medium.woff') format('woff');
    font-weight: 500;
}

/* Títulos */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 300;
}

/* Navegación */
.nav-links li a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

/* ===========================
   HEADER
=========================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.logo img {
    max-height: 20px;
}

/* Nav */
nav {
    position: relative;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    font-size: 0.85rem;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #aaa;
}

/* ===========================
   HERO
=========================== */
.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   MENU TOGGLE (MÓVIL)
=========================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   SECCIONES GENERALES
=========================== */
.about,
.colecciones,
.autor,
.prensa,
.contacto {
    padding-left: 4rem;
    padding-right: 4rem;
}

@media (min-width: 1200px) {

    .about,
    .colecciones,
    .autor,
    .prensa,
    .contacto {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}

@media (max-width: 768px) {

    .about,
    .colecciones,
    .autor,
    .prensa,
    .contacto {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ===========================
   ABOUT
=========================== */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
}

.about-text {
    flex: 1;
    color: #fff;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
}

/* ===========================
   COLECCIONES
=========================== */

/* ====== COLECCIONES ====== */
.colecciones {
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coleccion-main {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.coleccion-image {
    flex: 1;
    min-width: 300px;
}

.coleccion-image img {
    width: 100%;
    object-fit: cover;
}

.coleccion-text {
    flex: 1;
    min-width: 300px;
}

.coleccion-text h6 {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0.25rem;
}

.coleccion-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.coleccion-text p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-link {
    display: inline-block;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
    margin-top: 1rem;
    /* margen superior para separar del texto */
}

.btn-link:hover {
    color: #aaa;
}

.coleccion-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.coleccion-gallery img {
    width: 100%;
    object-fit: cover;
}

/* ====== SECCIONES FULLSCREEN ====== */
.full-section {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.full-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);

    /* Capa negra más oscura para mejorar lectura */
    display: flex;
    align-items: center;
}

.full-section .content-left {
    position: relative;
    padding: 2rem 5rem;
    max-width: 800px;
    color: #fff;
}

.full-section .content-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.full-section .content-left p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Botón con margen superior */
.full-section .btn-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #fff;
    text-decoration: underline;
    transition: color 0.3s;
}

.full-section .btn-link:hover {
    color: #aaa;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .full-section .content-left {
        padding: 2rem 3rem;
    }
}

@media (max-width: 768px) {
    .full-section .content-left {
        padding: 2rem 2rem;
    }

    .full-section .content-left h2 {
        font-size: 1.5rem;
    }

    .full-section .content-left p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .full-section .content-left {
        padding: 1rem 1rem;
    }

    .full-section .content-left h2 {
        font-size: 1.2rem;
    }

    .full-section .content-left p {
        font-size: 0.9rem;
    }
}

/* ===========================
   AUTOR
=========================== */
.autor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.autor-text {
    flex: 1;
}

.autor-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.autor-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.autor-image img {
    width: 100%;
    max-width: 400px;
}

/* ===========================
   PRENSA / PORTFOLIO
=========================== */
.prensa {
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.prensa h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

.prensa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.prensa-grid article img {
    width: 100%;
    margin-bottom: 0.75rem;
}

.prensa-grid p {
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.4;
}

/* ===========================
   CONTACTO
=========================== */
.contacto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contacto-image img {
    width: 100%;
    max-width: 500px;
}

.contacto-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contacto-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 16px;
}

.email {
    font-family: 'SF Pro Text', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    color: inherit;
    text-decoration: none;
}

/* ===========================
   FOOTER
=========================== */
/* FOOTER CENTRADO */
.footer-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #aaa;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.footer-socials a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #aaa;
}

.footer-copy {
    font-size: 0.85rem;
    color: #aaa;
}

footer {
    background: #111;
    /* Fondo oscuro */
    padding: 5rem 1.5rem;
    /* MÁS espacio arriba y abajo */
    color: #fff;
    font-family: 'SF Pro Text', sans-serif;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        inset: 0;
        background-color: rgba(19, 19, 19, 0.98);
        z-index: 1000;
        gap: 1.25rem;
        font-size: 1rem;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.35s ease-in-out;
    }

    .nav-links.show {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
        position: fixed;
        top: 12px;
        right: 16px;
    }

    .about,
    .autor,
    .contacto,
    .coleccion-main {
        flex-direction: column;
        text-align: center;
    }

    .about-image img,
    .autor-image img,
    .contacto-image img,
    .coleccion-image img {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ===========================
   FULLSCREEN SECCIONES NUEVAS
=========================== */
.full-section {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.full-section .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* oscurece la imagen para mejor legibilidad */
    display: flex;
    align-items: center;
}

.content-left {
    max-width: 500px;
    padding-left: 5rem;
}

.content-left h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-left p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive para móvil */
@media (max-width: 768px) {
    .content-left {
        padding-left: 2rem;
    }

    .content-left h2 {
        font-size: 2rem;
    }

    .content-left p {
        font-size: 16px;
    }
}

/* Solo afecta a la página de contacto */
.contacto-page .contacto {
    display: flex;
    flex-wrap: wrap;
    /* Para que se adapte en mobile */
    align-items: flex-start;
    justify-content: center;
    padding: 100px 20px;
    /* Espacio grande arriba y abajo */
    gap: 40px;
    /* Espacio entre imagen y texto */
    margin-top: 80px;
}

/* Ajuste de imagen y texto */
.contacto-page .contacto-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    /* opcional */
}

.contacto-page .contacto-text {
    max-width: 500px;
}

/* Footer separado */
.contacto-page footer {
    margin-top: 60px;
}

/* Responsive: apilar imagen y texto en móviles */
@media (max-width: 768px) {
    .contacto-page .contacto {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contacto-page .contacto-text {
        max-width: 100%;
    }

    .contacto-page footer {
        margin-top: 40px;
    }
}

/* Bloque Instagram dentro del contacto */
.contacto-page .contacto-instagram {
    margin-top: 40px;
    text-align: center;
}

.contacto-page .contacto-instagram p {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.contacto-page .instagram-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.2s ease-in-out;
}

.contacto-page .instagram-icon:hover {
    transform: scale(1.2);
}

/* ====== SECCIONES SOBRE MI ====== */
.seccion {
    padding: 60px 10%;
}

.seccion-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.seccion-flex.reverse {
    flex-direction: row-reverse;
}

.seccion-img img {
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.seccion-texto {
    flex: 1;
}

.seccion-texto h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.seccion-texto p {
    font-size: 1rem;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
}

/* Imagen grande con texto debajo */
.seccion-full {
    text-align: center;
}

.seccion-full img {
    width: 100%;
    margin-bottom: 20px;
}

.seccion-full h2 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.seccion-full p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
    .seccion {
        padding: 40px 5%;
    }

    .seccion-flex {
        flex-direction: column;
        text-align: center;
    }

    .seccion-flex.reverse {
        flex-direction: column;
    }

    .seccion-texto h2 {
        font-size: 2rem;
    }

    .seccion-texto p,
    .seccion-full p {
        font-size: 0.95rem;
    }

    .seccion-full h2 {
        font-size: 2rem;
    }
}

/* ====== COLECCIÓN EXPOSED ====== */
.exposed {
    background: #111;
    color: #fff;
    padding: 4rem 2rem;
    font-family: 'Montserrat', sans-serif;
}

/* Intro con imagen grande y texto */
.exposed-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.exposed-img img {
    width: 100%;
    object-fit: cover;
}

.exposed-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.exposed-text span {
    font-size: 2.5rem;
    color: #ccc;
}

.exposed-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Galería horizontal */
.exposed-gallery {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.exposed-gallery img {
    flex: 1 1 48%;
    width: 100%;
    object-fit: cover;
}

/* Texto largo */
.exposed-description {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    line-height: 1.8;
    font-size: 1rem;
    color: #ddd;
}

/* Looks individuales */
.exposed-looks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.exposed-looks img {
    width: 100%;
    margin-bottom: 1rem;
}

.exposed-looks h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exposed-looks p {
    font-size: 0.9rem;
    color: #bbb;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .exposed-intro {
        grid-template-columns: 1fr;
    }

    .exposed-gallery img {
        flex: 1 1 100%;
    }

    .exposed-looks {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .exposed-looks {
        grid-template-columns: 1fr;
    }

    .exposed-text h2 {
        font-size: 1.8rem;
    }

    .exposed-text span {
        font-size: 2rem;
    }
}

/* DETALLE COLECCION */

/* ====== COLECCIÓN EXPOSED ====== */
.exposed {
    background: #111;
    color: #fff;
    padding: 7rem 2rem;
    font-family: 'SF Pro Text', sans-serif;
}

/* Intro con imagen grande y texto */
.exposed-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.exposed-img img {
    width: 100%;
    object-fit: cover;
}

.exposed-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.exposed-text span {
    font-size: 2.5rem;
    color: #ccc;
}

.exposed-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Galería horizontal */
.exposed-gallery {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.exposed-gallery img {
    flex: 1 1 48%;
    width: 100%;
    object-fit: cover;
}

/* Texto largo */
.exposed-description {
    max-width: 900px;
    margin: 0 auto 4rem auto;
    line-height: 1.8;
    font-size: 1rem;
    color: #ddd;
}

/* Looks individuales */
.exposed-looks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.exposed-looks img {
    width: 100%;
    margin-bottom: 1rem;
}

.exposed-looks h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.exposed-looks p {
    font-size: 0.9rem;
    color: #bbb;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .exposed-intro {
        grid-template-columns: 1fr;
    }

    .exposed-gallery img {
        flex: 1 1 100%;
    }

    .exposed-looks {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .exposed-looks {
        grid-template-columns: 1fr;
    }

    .exposed-text h2 {
        font-size: 1.8rem;
    }

    .exposed-text span {
        font-size: 2rem;
    }
}

/* ====== PORTFOLIO Y COLABORACIONES ====== */
.portfolio-section,
.colaboraciones-section {
    padding: 75px 20px;
    text-align: center;
}

.portfolio-section h2,
.colaboraciones-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.portfolio-grid,
.colaboraciones-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-grid article,
.colaboraciones-grid article {
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-grid article:hover,
.colaboraciones-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-grid img,
.colaboraciones-grid img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.portfolio-grid h3,
.colaboraciones-grid h3 {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 10px;
}

.portfolio-grid p,
.colaboraciones-grid p {
    font-size: 0.75rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
}

.btn-link {
    text-decoration: none;
    font-weight: 500;
    color: white;
    border-bottom: 1px solid #000;
}

.btn-link:hover {
    color: grey;
    border-color: grey;
}

/* ====== PORTFOLIO Y COLLABS DETALLE ====== */
.galeria-page {
    padding: 90px 20px;
    text-align: center;
}

.galeria-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.galeria-intro p {
    font-size: 1rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 50px;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-grid img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

a {
    text-decoration: none;
    /* Mantiene subrayado por defecto */
    color: white;
    /* Mantiene el color por defecto del navegador */
}

/* ===========================
   CONTACTO RESPONSIVE AJUSTADO
=========================== */

/* Desktop / Base */
.contacto,
.contacto-page .contacto {
    padding-left: 4rem;
    padding-right: 4rem;
}

/* Tablets */
@media (max-width: 992px) {

    .contacto,
    .contacto-page .contacto {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .contacto-text h2 {
        font-size: 2.2rem;
    }

    .contacto-text p {
        font-size: 0.95rem;
    }

    .email {
        font-size: 1.6rem;
    }
}

/* Móviles */
@media (max-width: 600px) {

    .contacto,
    .contacto-page .contacto {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: center;
    }

    .contacto-text h2 {
        font-size: 1.8rem;
    }

    .contacto-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .email {
        font-size: 1.2rem;
        word-break: break-word;
        /* evita desbordes */
    }
}