/* ========================================
   Peak and Chill '26 - Complete Stylesheet
   Design System: Royal Blue, Elegant Minimalism
   With WebGL Milky Way Background Sections
   ======================================== */

   :root {
    --bg: #f5f5f5;
    --bg-alt: #ebebeb;
    --royal-blue: #002366;
    --accent-blue: #2a52be;
    --light-blue: #4a6fa5;
    --text: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --success: #16a34a;
    --danger: #dc2626;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   WebGL Canvas
   ======================================== */

#glCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   Dark Sections (WebGL Background)
   ======================================== */

.section-dark {
    background: transparent !important;
    color: var(--white);
    position: relative;
}

.section-dark .section-title {
    color: var(--white);
    mix-blend-mode: normal;
}

.section-dark .section-number {
    opacity: 0.6;
    color: var(--white);
}

.section-dark .section-intro,
.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.section-dark .label {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .value {
    color: var(--white);
}

.section-dark .detail-item {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Dark Section - Timeline Cards */
.section-dark .timeline-day {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-dark .day-events {
    color: var(--white);
}

.section-dark .event {
    border-color: rgba(255, 255, 255, 0.1);
}

.section-dark .event-time .time {
    color: rgba(255, 255, 255, 0.95);
}

.section-dark .event-time .time-label {
    color: rgba(255, 255, 255, 0.5);
}

.section-dark .event-details h4 {
    color: var(--white);
}

.section-dark .event-details p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .event-highlight {
    background: rgba(255, 255, 255, 0.05);
}

.section-dark .event-activities {
    background: rgba(255, 255, 255, 0.03);
}

.section-dark .event-checkout {
    background: rgba(255, 255, 255, 0.03);
}

.section-dark .activity-option {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-dark .activity-option:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-dark .event-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-dark .event-tag.tag-info {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Dark Section - Info Cards */
.section-dark .info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-dark .info-card h3 {
    color: var(--white);
}

.section-dark .info-card > p {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .info-card .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.section-dark .info-card .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* Dark Section - FAQ */
.section-dark .faq-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.section-dark .faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-dark .faq-question {
    color: var(--white);
}

.section-dark .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.section-dark .faq-icon {
    color: rgba(255, 255, 255, 0.5);
}

.section-dark .faq-answer p {
    color: rgba(255, 255, 255, 0.75);
}

/* Dark Section - Hosts */
.section-dark .host-description {
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--text);
}

.section-dark .host-description p {
    color: var(--text);
}

.section-dark .corner-square {
    background: rgba(255, 255, 255, 0.9);
}

.section-dark .host-role-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
}

/* ========================================
   Typography
   ======================================== */

.main-title,
.section-title,
.card-title,
.ticket-name,
.ski-pass-title,
.modal-title {
    font-family: 'Playfair Display', Georgia, serif;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(245, 245, 245, 0.98), rgba(245, 245, 245, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    opacity: 0.9;
}

.navbar.scrolled {
    background: rgba(245, 245, 245, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--royal-blue);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
    transition: var(--transition);
    font-weight: 500;
}

.nav-link:hover {
    opacity: 1;
    color: var(--royal-blue);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    opacity: 0.3;
    transition: var(--transition);
    font-weight: 500;
}

.lang-btn:hover {
    opacity: 0.7;
}

.lang-btn.active {
    opacity: 1;
    font-weight: 600;
}

.divider {
    opacity: 0.2;
    font-size: 0.8rem;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
}

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 2rem 4rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 1rem;
    opacity: 0.7;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ========================================
   Blob System
   ======================================== */

.blob-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(60px);
    opacity: 0.8;
    transition: transform 0.3s ease-out;
    animation: blobFloat 25s ease-in-out infinite;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
    }
    75% {
        transform: translate(15px, 20px) rotate(270deg);
        border-radius: 70% 30% 60% 40% / 40% 70% 50% 60%;
    }
}

/* Hero Blobs */
.blob-1 {
    width: 45vw;
    height: 45vw;
    max-width: 700px;
    max-height: 700px;
    background: var(--royal-blue);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.blob-2 {
    width: 35vw;
    height: 35vw;
    max-width: 500px;
    max-height: 500px;
    background: var(--accent-blue);
    border-radius: 50%;
    bottom: -5%;
    right: 15%;
    opacity: 0.4;
    animation-delay: 5s;
}

.blob-3 {
    width: 25vw;
    height: 25vw;
    max-width: 400px;
    max-height: 400px;
    background: #d1d1d1;
    border-radius: 40% 60% 30% 70%;
    top: 20%;
    right: 5%;
    opacity: 0.3;
    animation-delay: 2s;
}

/* Section Blobs */
.blob-6 {
    width: 35vw;
    height: 35vw;
    max-width: 500px;
    background: var(--royal-blue);
    border-radius: 40% 60% 70% 30%;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    animation-delay: 4s;
}

.blob-7 {
    width: 25vw;
    height: 25vw;
    max-width: 350px;
    background: #c5c5c5;
    border-radius: 50%;
    bottom: 10%;
    right: 10%;
    opacity: 0.25;
    animation-delay: 8s;
}

.blob-10 {
    width: 40vw;
    height: 40vw;
    max-width: 580px;
    background: var(--royal-blue);
    border-radius: 40% 60% 60% 40%;
    top: 10%;
    left: -10%;
    opacity: 0.25;
    animation-delay: 2s;
}

.blob-11 {
    width: 25vw;
    height: 25vw;
    max-width: 380px;
    background: var(--accent-blue);
    border-radius: 50%;
    bottom: 5%;
    right: 15%;
    opacity: 0.2;
    animation-delay: 9s;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}
.hero::before {
    content: "";        /* Zwingend erforderlich, damit das Element existiert */
    position: absolute; /* Nimmt es aus dem normalen Fluss */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Hier dein Bild einfügen */
    background-image: url('./cantate-images/montain-berg-bahn.png'); 
    background-size: cover;  /* Sorgt dafür, dass das Bild alles ausfüllt, ohne sich zu verzerren */
    background-position: center; /* Zentriert das Bild */
    
    /* DIE WICHTIGSTEN PUNKTE: */
    opacity: 0.1;       /* 20% Sichtbarkeit (0.0 = unsichtbar, 1.0 = voll sichtbar) */
    z-index: 0;         /* Schiebt das Bild in den Hintergrund */
    
    /* Optional: Ein leichter Weichzeichner sieht bei transparenten Hintergründen oft gut aus */
    /* filter: blur(5px); */ 
  }

.main-title {
    font-size: clamp(4rem, 12vw, 11rem);
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 3rem;
    color: var(--text);
    mix-blend-mode: multiply;
}

.details-grid {
    max-width: 550px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.details-grid-small {
    max-width: 400px;
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.detail-item:hover {
    padding-left: 0.5rem;
}

.label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
    font-weight: 500;
}

.value {
    font-size: 1rem;
    font-weight: 400;
}

[data-en], [data-fr] {
    transition: opacity 0.3s ease;
}

.hero-footer {
    position: absolute;
    bottom: 2.5rem;
    left: 4rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
    z-index: 10;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    width: 24px;
    height: 40px;
    border: 2px solid var(--text);
    border-radius: 12px;
    opacity: 0.3;
    z-index: 10;
    transition: var(--transition);
}

.scroll-indicator:hover {
    opacity: 0.6;
}

.scroll-indicator span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ========================================
   Section Base Styles
   ======================================== */

.section {
    min-height: 100vh;
    padding: 8rem 4rem;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even):not(.section-dark) {
    background-color: var(--bg-alt);
}

.section-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
}

.section-number {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.4;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--text);
    mix-blend-mode: multiply;
}

.section-subtitle {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: 0.8;
    max-width: 550px;
}

/* ========================================
   Experience Section
   ======================================== */

.expect-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.expect-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 35, 102, 0.15);
}

.carousel-images {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
}

.carousel-images img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-images img.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    color: var(--text);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* ========================================
   Schedule Timeline
   ======================================== */

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-day {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.timeline-day:hover {
    box-shadow: 0 20px 60px rgba(0, 35, 102, 0.1);
}

.day-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
}

.day-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.3;
    line-height: 1;
}

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

.day-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.day-date {
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 1px;
}

.day-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
    text-align: right;
    font-style: italic;
}

.day-events {
    padding: 1.5rem 2rem 2rem;
}

.event {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.event:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event:first-child {
    padding-top: 0;
}

.event:hover {
    transform: translateX(5px);
}

.event-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.event-time .time {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--royal-blue);
    line-height: 1;
}

.event-time .time-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.event-content {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.event-icon {
    font-size: 1.75rem;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.event-details {
    flex: 1;
}

.event-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.event-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.event-tag {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.75rem;
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 2px;
    font-weight: 600;
}

.event-tag.tag-info {
    background: rgba(0, 35, 102, 0.1);
    color: var(--royal-blue);
}

.event-highlight {
    background: rgba(0, 35, 102, 0.03);
    margin: 0 -2rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    border-radius: 4px;
    border-bottom: none !important;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.event-activities {
    background: rgba(0, 35, 102, 0.02);
    margin: 0 -2rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    border-radius: 4px;
}

.activity-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.activity-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.activity-option:hover {
    background: var(--white);
    border-color: var(--royal-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 35, 102, 0.1);
}

.activity-icon {
    font-size: 1.1rem;
}

.event-checkout {
    background: rgba(0, 35, 102, 0.02);
    margin: 0 -2rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    border-radius: 4px;
    border-bottom: none !important;
}

/* ========================================
   Gallery Section
   ======================================== */

.section-gallery {
    background: var(--bg);
}

.upload-zone {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-container {
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--royal-blue) var(--bg);
    border-radius: 4px;
    /* GPU layer for smooth scrolling */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.gallery-container::-webkit-scrollbar {
    width: 6px;
}

.gallery-container::-webkit-scrollbar-track {
    background: var(--bg);
}

.gallery-container::-webkit-scrollbar-thumb {
    background: var(--royal-blue);
    border-radius: 3px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-alt);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(0.98);
    opacity: 0.9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.empty-gallery-state {
    text-align: center;
    padding: 5rem 2rem;
    display: none;
}

.empty-gallery-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.empty-gallery-state h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.empty-gallery-state p {
    opacity: 0.6;
}

.scroll-indicator-gallery {
    position: sticky;
    bottom: 0;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to top, var(--bg) 70%, transparent);
    opacity: 0;
    transition: var(--transition);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.scroll-indicator-gallery.show {
    opacity: 0.4;
}

/* ========================================
   Info Section
   ======================================== */

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

.info-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 35, 102, 0.1);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.info-card > p {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.info-card .detail-item {
    padding: 1rem 0;
    margin-bottom: 1rem;
}

.info-card .btn {
    margin-top: auto;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    font-family: inherit;
    font-size: 0.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 0.65rem 2rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 35, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

/* ========================================
   Tickets Section
   ======================================== */

.section-tickets {
    background: var(--bg-alt);
}

.ticket-card {
    background: var(--royal-blue);
    color: var(--white);
    border-radius: 4px;
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 35, 102, 0.3);
}

.ticket-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-blue);
    color: var(--white);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
}

.ticket-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ticket-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ticket-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.ticket-price .currency {
    font-size: 1rem;
    opacity: 0.7;
}

.ticket-price .amount {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.ticket-price .period {
    font-size: 0.85rem;
    opacity: 0.6;
}

.ticket-features {
    list-style: none;
    margin-bottom: 2rem;
}

.ticket-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ticket-features li::before {
    content: '✓';
    color: rgba(255, 255, 255, 0.6);
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-card .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.ticket-card .btn-primary {
    background: var(--white);
    color: var(--royal-blue);
}

.ticket-card .btn-primary:hover {
    background: var(--bg);
}

.ticket-card .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.ticket-card .btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.ticket-note {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: 1rem;
}

.payment-info {
    text-align: center;
}

.payment-method {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 4px;
}

.twint-logo {
    height: 24px;
    width: auto;
}

.payment-method span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-list {
    max-width: 800px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 35, 102, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.5);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    opacity: 0.4;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    line-height: 1.8;
    opacity: 0.7;
}

/* ========================================
   Hosts Section
   ======================================== */

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.host-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.host-card:hover {
    transform: translateY(-8px);
}

.host-card-inner {

    position: relative;
    padding: 2rem;
    padding-top: 3rem;
    border: 2px solid var(--text);
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.corner-square {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--bg);
    border: 2px solid var(--text);
}

.corner-square.top-left { top: -6px; left: -6px; }
.corner-square.top-right { top: -6px; right: -6px; }
.corner-square.bottom-left { bottom: -6px; left: -6px; }
.corner-square.bottom-right { bottom: -6px; right: -6px; }

.host-role-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    border: 2px solid var(--text);
    padding: 0.4rem 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 5;
}

.host-photo-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-photo-blob {
    position: relative;
    width: 85%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.host-photo-blob::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: transparent;
    border: 2.5px solid var(--text);
    border-radius: 60% 40% 45% 55% / 50% 55% 45% 50%;
    animation: blobMorph 8s ease-in-out infinite;
}

@keyframes blobMorph {
    0%, 100% { border-radius: 60% 40% 45% 55% / 50% 55% 45% 50%; }
    25% { border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%; }
    50% { border-radius: 50% 50% 40% 60% / 45% 60% 40% 55%; }
    75% { border-radius: 55% 45% 55% 45% / 60% 40% 55% 45%; }
}

.host-photo-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 55% 45% 50% 50% / 50% 50% 50% 50%;
    position: relative;
    z-index: 1;
}

.cursor-decoration {
    position: absolute;
    bottom: 10%;
    left: 5%;
    color: #ff6b35;
    transform: rotate(-10deg);
    z-index: 10;
    filter: drop-shadow(1px 1px 0 var(--text));
}

.host-name-tag {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    background: #f5f5f5;
    color: #002366;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 25px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 2px 2px 0 var(--text);
    transition: var(--transition);
}

.host-card:hover .host-name-tag {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 3px 3px 0 var(--text);
}

.host-description {
    background: var(--bg);
    border: 2px solid var(--text);
    border-top: none;
    padding: 1.25rem 1.5rem;
    margin-top: -2px;
}

.host-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--royal-blue);
    color: var(--white);
    padding: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    font-size: 0.8rem;
    opacity: 0.4;
}

.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.7rem;
}

/* ========================================
   Modals
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--bg);
    padding: 3rem;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    opacity: 0.4;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    opacity: 1;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.checklist li:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

.checklist li::before {
    content: '○';
    font-size: 1.2rem;
    color: var(--royal-blue);
    transition: var(--transition);
}

.checklist li.checked {
    opacity: 0.6;
}

.checklist li.checked::before {
    content: '●';
}

.guest-form {
    margin-top: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--royal-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(0, 35, 102, 0.1);
}

.guest-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Ski Pass in Modal */
.ticket-modal-content {
    max-width: 550px;
    padding: 0;
    background: transparent;
    overflow: visible;
}

.ticket-modal-content .modal-close {
    position: absolute;
    right: -15px;
    top: -15px;
    background: var(--white);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 1;
    z-index: 10;
}

.ski-pass {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.ski-pass-header {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
}

.ski-pass-header::after {
    content: '⛷️';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

.ski-pass-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

.ski-pass-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.ski-pass-dates {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.ski-pass-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 2rem;
}

.ski-pass-qr {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.qr-placeholder {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    color: var(--royal-blue);
}

.qr-placeholder svg {
    width: 100%;
    height: 100%;
}

.ski-pass-info .detail-item {
    padding: 0.75rem 0;
}

.ski-pass-info .value {
    font-weight: 600;
}

.status-paid {
    color: var(--success) !important;
}

.ski-pass-footer {
    padding: 1.5rem 2rem;
    background: var(--bg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.ski-pass-footer .btn {
    width: 100%;
    margin-bottom: 1rem;
}

.ski-pass-note {
    font-size: 0.75rem;
    opacity: 0.5;
    font-style: italic;
}

/* ========================================
   Image Modal / Lightbox
   ======================================== */

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    flex-direction: column;
}

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

.image-modal-header {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.image-modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    opacity: 0.7;
    transition: var(--transition);
}

.image-modal-close:hover {
    opacity: 1;
}

.image-modal-download {
    padding: 0.75rem 1.5rem;
}

.image-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-btn.prev { left: 2rem; }
.modal-nav-btn.next { right: 2rem; }

.modal-large-image {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.15s ease;
}

.image-modal-info {
    text-align: center;
    color: white;
    margin-top: 2rem;
}

.image-modal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.image-modal-info p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.image-dots-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.image-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.image-dot.active {
    background-color: var(--white);
    transform: scale(1.3);
}

/* ========================================
   Notifications
   ======================================== */

.notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: var(--success);
    color: white;
}

.notification-error {
    background: var(--danger);
    color: white;
}

.notification-info {
    background: var(--royal-blue);
    color: white;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hosts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hosts-grid .host-card:last-child {
        grid-column: 1 / -1;
        max-width: 350px;
        justify-self: center;
    }
}

@media (max-width: 968px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .lang-switcher {
        margin-right: 1rem;
    }

    .section {
        padding: 5rem 2rem;
    }

    .hero {
        padding: 0 2rem;
    }

    .expect-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .day-header {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }

    .day-title {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 0.5rem;
    }

    .activity-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .mobile-menu {
        padding: 2rem 1.5rem;
        top: 70px;
    }

    .hero {
        padding: 0 1.5rem;
    }

    .main-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .section-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-footer {
        left: 1.5rem;
    }

    .scroll-indicator {
        right: 1.5rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .modal-nav-btn {
        display: none;
    }

    .footer {
        padding: 3rem 1.5rem;
    }

    .ticket-card {
        padding: 2.5rem 2rem;
    }

    .ticket-price .amount {
        font-size: 3rem;
    }

    .ski-pass-body {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ski-pass-qr {
        justify-content: center;
    }

    .day-header {
        padding: 1.5rem;
    }

    .day-number {
        font-size: 2rem;
    }

    .day-name {
        font-size: 1.25rem;
    }

    .day-events {
        padding: 1rem 1.5rem 1.5rem;
    }

    .event {
        grid-template-columns: 70px 1fr;
        gap: 1rem;
    }

    .event-time .time {
        font-size: 1.2rem;
    }

    .event-icon {
        font-size: 1.5rem;
        width: 32px;
    }

    .event-details h4 {
        font-size: 1.1rem;
    }

    .event-highlight,
    .event-activities,
    .event-checkout {
        margin: 0 -1.5rem;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .activity-options {
        grid-template-columns: 1fr;
    }

    .hosts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 350px;
    }

    .hosts-grid .host-card:last-child {
        max-width: none;
    }

    .notification {
        left: 1rem;
        right: 1rem;
        transform: translateY(-200px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .gallery-grid {
        gap: 2px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev { left: 0.5rem; }
    .carousel-btn.next { right: 0.5rem; }

    .event {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .event-time {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .event-content {
        padding-left: 0;
    }

    .hosts-grid {
        max-width: 300px;
    }
    .section-gallery {
        padding: 3rem 1.0rem;
    }
        
    
}

/* ========================================
   Animations
   ======================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Gallery: Password Gate & Multi-Select
   Append this at the END of styles.css
   ======================================== */

/* --- Password Gate --- */
.gallery-gate {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.gate-card {
    background: rgba(0, 35, 102, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.gate-icon {
    color: rgba(0, 0, 0, 0.25);
    margin-bottom: 1.5rem;
}

.gate-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gate-desc {
    font-size: 0.9rem;
    opacity: 0.5;
    margin-bottom: 2rem;
}

.gate-input-wrap {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.gate-input-wrap:focus-within {
    border-color: var(--royal-blue);
}

.gate-input {
    flex: 1;
    background: var(--white);
    border: none;
    padding: 1rem 1.2rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    outline: none;
    color: var(--text);
}

.gate-input::placeholder {
    color: rgba(0, 0, 0, 0.15);
    letter-spacing: 4px;
}

.gate-submit {
    background: var(--royal-blue);
    border: none;
    padding: 1rem 1.4rem;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.gate-submit:hover {
    background: var(--accent-blue);
}

.gate-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gate-error.visible {
    opacity: 1;
    animation: gateShake 0.4s ease;
}

@keyframes gateShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

/* --- Gallery Toolbar --- */
.gallery-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.toolbar-left,
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.toolbar-left .upload-zone {
    margin-bottom: 0;
}

.toolbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: var(--white);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toolbar-btn:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
}

.toolbar-btn.active {
    background: var(--royal-blue);
    color: var(--white);
    border-color: var(--royal-blue);
}

.toolbar-btn-download {
    background: var(--royal-blue);
    color: var(--white);
    border-color: var(--royal-blue);
}

.toolbar-btn-download:hover:not(:disabled) {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.toolbar-btn-download:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.selection-count {
    font-size: 0.75rem;
    opacity: 0.5;
    letter-spacing: 0.5px;
    padding: 0 0.25rem;
}

/* --- Select Mode on Grid --- */
.gallery-grid.select-mode .gallery-item {
    cursor: pointer;
    position: relative;
}

.gallery-grid.select-mode .gallery-item::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: all 0.2s;
}

.gallery-grid.select-mode .gallery-item.selected::after {
    background: var(--royal-blue);
    border-color: var(--white);
}

.gallery-grid.select-mode .gallery-item.selected::before {
    content: '';
    position: absolute;
    top: 13px;
    left: 14px;
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 3;
}

.gallery-grid.select-mode .gallery-item.selected img {
    opacity: 0.6;
}

.gallery-grid.select-mode .gallery-item.selected {
    outline: 3px solid var(--royal-blue);
    outline-offset: -3px;
}

/* ========================================
   Gallery Performance & Shimmer
   ======================================== */

/* Each item gets its own GPU layer */
.gallery-item {
    contain: layout style paint;
    will-change: transform;
}

/* Placeholder shimmer while loading */
.gallery-item:not(.loaded) {
    background: linear-gradient(110deg,
        var(--bg-alt) 30%,
        color-mix(in srgb, var(--bg-alt) 60%, var(--bg)) 50%,
        var(--bg-alt) 70%
    );
    background-size: 200% 100%;
    animation: shimmer 1.4s ease-in-out infinite;
}

.gallery-item.loaded {
    animation: none;
    background: var(--bg-alt);
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Smooth fade-in when image loads */
.gallery-item img {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item.loaded img {
    opacity: 1;
}

/* Hover: no layout shift, just subtle zoom */
.gallery-item:hover {
    transform: none;
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

/* ========================================
   Mobile Gallery — Full Device Width
   ======================================== */
@media (max-width: 768px) {
    /* Strip horizontal padding so grid bleeds edge-to-edge */
    .section-gallery {
        padding-left: 0;
        padding-right: 0;
    }

    /* Re-add padding to text/gate/toolbar elements only */
    .section-gallery .section-header,
    .section-gallery .section-subtitle,
    .section-gallery .gallery-gate,
    .section-gallery #galleryAuthenticated > .gallery-toolbar {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .gallery-toolbar {
        gap: 0.5rem;
    }

    /* Remove inner scroll — let the page scroll naturally */
    .gallery-container {
        max-height: none;
        overflow-y: visible;
        overflow-x: visible;
        border-radius: 0;
    }

    /* Hide the inner scroll indicator — not needed without inner scroll */
    .scroll-indicator-gallery {
        display: none;
    }

    /* 3-column Instagram-style grid, tight gap */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .gate-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
    }
}

/* ============================================
   iOS Photos-Style Lightbox Track
   ============================================ */

.pv-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    height: 100%;
    scroll-behavior: auto;
}

.pv-track::-webkit-scrollbar {
    display: none;
}

.pv-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-sizing: border-box;
}

.pv-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}

.image-modal-content .modal-nav-btn {
    z-index: 10;
}

@media (max-width: 768px) {
    .pv-image {
        max-height: 65vh;
        border-radius: 8px;
    }

    .image-modal-content .modal-nav-btn {
        display: none;
    }
}