/* === BTS SECTION (bts.html) === */
.work-container {
    min-height: 100vh;
    padding-top: 150px;
    padding-left: 5%;
    padding-right: 5%;
    background: var(--color-dark);
}

.work-container {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-accent) 50%, var(--color-dark) 100%);
}

.work-header {
    text-align: center;
    padding: 1.5rem 5%;
    margin-bottom: 0rem;
}

.work-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 3rem;
    margin-top: 3rem;
    text-align: center; /* Centrar el título */
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 6rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    display: flex;
    flex-direction: column-reverse;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.gallery-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-overlay {
    position: static;
    background: transparent;
    opacity: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    text-align: center;
}

.gallery-title {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-description {
    font-family: var(--font-secondary);
    font-size: 1.0rem;
    opacity: 0.9;
    line-height: 1.4;
    color: var(--color-light);
    font-weight: 300;
}

/* === MORE WORK LINK (bts.html) === */
/* (Puedes reusar .more-work-container si quieres un enlace a Vimeo aquí también) */
.more-work-container {
    text-align: center;
    padding: 3rem 0 1rem;
}

.more-link {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 2.0rem;
    text-transform: uppercase;
    letter-spacing: 5.5px;
    color: var(--color-light);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.more-link:hover {
    color: var(--color-primary);
    letter-spacing: 2.5px;
}

/* === VIDEO MODAL (bts.html) === */
/* (Todos los estilos del modal ya están en style.css / global.css) */
/* (No es necesario repetir .modal, .modal-content, etc. aquí) */


/* === RESPONSIVE STYLES (BTS PAGE) === */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .work-container {
        padding-top: 150px;
    }
    
    /* --- CAMBIO IMPORTANTE --- */
    body#bts-page .work-container {
        padding-top: 150px;
    }
    body#bts-page .work-header {
      margin-top: 0;
      margin-bottom: 2rem;
    }
    /* --- FIN DEL CAMBIO --- */

    .work-title {
       font-size: 3.5rem;
       margin-bottom: 2rem;
       margin-top: 2rem;
    }
    .gallery-title {
        font-size: 0.9rem;
    }
    .gallery-description {
        font-size: 0.7rem;
    }
}