/* /nueva/assets/css/style.css - Chinese Laundry Theme & Styling System */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1f1f1f;
    --bg-header: rgba(10, 10, 10, 0.90);
    --accent: #ffffff;
    --accent-hover: #e5e5e5;
    --accent-red: #e63946;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #222222;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Base Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -0.5rem;
}

/* Layout Containers */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 5rem 0;
}

/* Navigation Header */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    backdrop-filter: blur(5px);
    border-bottom: none;
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #ddd;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.header-social-icon {
    color: #cccccc;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-social-icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-ticket {
    background: var(--accent);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-ticket:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
    background: none;
    border: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(20, 20, 20, 0.4) 0%, rgba(10, 10, 10, 0.9) 100%), url('../images/polaroid-bg.jpg') center/cover no-repeat;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.video-bg-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.77vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: none;
    opacity: 0.55;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    width: 100%;
    padding: 0 20px;
}

.hero-logo {
    max-width: 820px;
    width: 95%;
    margin: 0 auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-secondary {
    border: 2px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-heading);
    padding: 10px 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--accent);
    color: #000;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Gallery / Album Card */
.album-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.album-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.album-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #000;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.08);
}

.album-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 2px;
    border: 1px solid var(--accent);
}

.album-info {
    padding: 1.25rem;
}

.album-title {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.album-meta {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Show / Event Card */
.show-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.show-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.show-flyer {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #000;
    position: relative;
}

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

.show-date-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--accent);
    color: #000;
    font-family: var(--font-heading);
    padding: 6px 12px;
    font-weight: 700;
    text-align: center;
}

.show-details {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.show-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.show-venue {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Photo Masonry & Lightbox */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}

.photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
    background: #111;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.06);
}

.photo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(0,0,0,0.9);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: var(--transition);
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-nav:hover {
    color: var(--accent);
}

.lightbox-caption {
    margin-top: 15px;
    color: #ddd;
    font-size: 1rem;
    text-align: center;
}

/* Lead / Ticket Form */
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 6px;
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background: #0a0a0a;
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 3px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
footer.main-footer {
    background: #050505;
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-logo {
    max-width: 200px;
    margin: 0 auto 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #181818;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid #333;
}

.social-link:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Event List & Cards (Estilo Vicente García) */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.event-card:hover {
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.event-card-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-grow: 1;
}

.event-poster {
    width: 75px;
    height: 95px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid #333;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.event-poster:hover {
    transform: scale(1.06);
    border-color: var(--accent);
}

.event-date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 85px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    text-align: center;
    color: var(--accent);
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.event-date-day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.event-title-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.event-venue-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-boleta {
    background: var(--accent);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.7rem 1.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.btn-boleta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.35);
}

.btn-boleta-disabled {
    background: #222;
    color: #777;
    cursor: default;
    box-shadow: none;
}

.btn-boleta-disabled:hover {
    background: #222;
    color: #777;
    transform: none;
}

/* Modal Pop-up para Afiche 1080x1350 */
.poster-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.poster-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.poster-modal-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.poster-modal-img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.poster-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.2s ease;
}

.poster-modal-close:hover {
    color: var(--accent);
}

/* Responsive Breakdown */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container { height: 75px; }
    .hero-section { margin-top: 0; height: 100vh; min-height: 100vh; }
    .mobile-toggle { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    .nav-menu.active { left: 0; }
    
    .nav-link {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
    .header-social-icons {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 1.5rem;
        width: 180px;
        justify-content: center;
        gap: 1.8rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .event-card {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        padding: 1.2rem;
    }

    .event-card-left {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    .event-poster {
        width: 60px;
        height: 80px;
        flex-shrink: 0;
    }

    .event-date-col {
        min-width: 55px;
        padding: 0 6px;
    }

    .event-date-day {
        font-size: 1.4rem;
    }

    .event-date-month {
        font-size: 0.75rem;
    }

    .btn-boleta {
        width: 100%;
        text-align: center;
        padding: 12px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 92%;
    }
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}
