/* ===================================
   International Fashion Week Albania
   Modern, Elegant Fashion Website CSS
   =================================== */

/* ===== Root Variables ===== */
:root {
    --primary-color:     #0D0D0D;
    --surface-color:     #F5F0E8;
    --accent-color:      #C9A84C;
    --text-primary:      #1A1A1A;
    --text-secondary:    #888888;
    --text-light:        #FFFFFF;
    --bg-light:          #F5F0E8;
    --bg-white:          #FFFFFF;
    --bg-dark:           #111111;
    --bg-deeper:         #0D0D0D;
    --bg-gray:           #F0EBE1;
    --border-color:      rgba(255,255,255,0.08);
    --border-gold:       rgba(201,168,76,0.25);
    --border-light:      rgba(26,26,26,0.1);
    --secondary-color:   #C9A84C;
    --font-primary:      'Montserrat', sans-serif;
    --font-secondary:    'Cormorant Garamond', serif;
    --transition:        all 0.4s ease;
    --transition-slow:   all 0.7s ease;
}

/* ===== Utility ===== */
.bg-white { background-color: var(--bg-white); }

/* ===== Editorial Strip ===== */
.editorial-strip {
    background: var(--bg-deeper);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 0.8rem 0;
    overflow: hidden;
}

/* Strip sits flush below the logo */
.hero-strip {
    position: relative;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201,168,76,0.18);
    border-bottom: none;
}

/* Scrolling ticker track — two identical sets for seamless loop */
.editorial-strip-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 22s linear infinite;
}

.editorial-strip-track:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.editorial-strip-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    font-family: var(--font-primary);
    white-space: nowrap;
    font-weight: 400;
}

.editorial-strip-inner .strip-dot {
    color: var(--accent-color);
    opacity: 0.55;
    font-size: 0.4rem;
    flex-shrink: 0;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 76, 0.45);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 168, 76, 0.8);
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.45) #0D0D0D;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.8;
    background-color: var(--bg-deeper);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

h1 { font-size: 4.5rem; letter-spacing: 0.04em; }
h2 { font-size: 3.2rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

/* ===== Containers ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    transition: background-color 0.5s ease, padding 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
    padding: 1.5rem 0;
    box-shadow: none;
}

/* Gradient veil that ensures white nav text is always readable over the hero,
   then fades out when the solid scrolled background takes over */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.navbar.scrolled::before {
    opacity: 0;
}

.navbar.scrolled {
    background-color: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.85rem 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border-gold);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin: 0;
    line-height: 1;
}

.logo span {
    font-size: 0.65rem;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.8;
    line-height: 1;
    display: none;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
    flex: 1;
    justify-content: center;
    margin: 0 1rem;
}

.nav-menu li {
    flex-shrink: 0;
    min-width: 0;
}

.nav-menu li a {
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding: 0.4rem 0;
    white-space: nowrap;
    display: inline-block;
    opacity: 0.8;
    transition: opacity 0.25s ease;
}

.nav-menu li a:hover {
    opacity: 1;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* ===== Apply Now CTA — Navbar ===== */
.nav-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 1.25rem;
    background: var(--accent-color);
    color: #0D0D0D;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--accent-color);
    border-radius: 1px;
    transition: background 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    font-weight: 500;
}

.nav-apply-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

.nav-apply-btn[aria-current="page"] {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* ===== Language Switcher ===== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-shrink: 0;
}

.lang-option {
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.3rem 0.4rem;
    cursor: pointer;
    transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    opacity: 0.7;
    border-radius: 3px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    min-width: 28px;
}

.lang-option:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    opacity: 1;
    background-color: transparent;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
}

/* Hide mobile language switcher on desktop */
.mobile-lang-switcher {
    display: none;
}

/* ===== Hero Slideshow ===== */
.hero-slideshow {
    position: relative;
    height: auto;
    overflow: hidden;
    background-color: #000;
    padding: 0;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: auto;
}

.slide {
    position: relative;
    inset: auto;
    opacity: 1;
}

.slide-image {
    display: none;
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    color: var(--text-light);
    gap: 0;
}

.hero-logo {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: screen;
}

.slide-label {
    font-family: var(--font-primary);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.slide-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 200;
    letter-spacing: 0.18em;
    color: var(--text-light);
    line-height: 1;
    margin: 0;
}

.slide-subtitle {
    font-family: var(--font-primary);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

/* Dot indicators — centered bottom */
.slide-indicators {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    z-index: 100;
}

.slide-indicator {
    width: 28px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: width 0.4s ease, background 0.4s ease;
}

.slide-indicator.active {
    width: 52px;
    background: var(--accent-color);
}

/* Scroll cue — right edge */
.scroll-indicator {
    position: absolute;
    bottom: 2.4rem;
    right: 2.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}

.scroll-line {
    width: 1px;
    height: 52px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { opacity: 0; transform: scaleY(0.5) translateY(-8px); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1)   translateY(0);    transform-origin: top; }
    100% { opacity: 0; transform: scaleY(0.5) translateY(8px);  transform-origin: top; }
}

/* Hero CTA Band — button overrides for dark background */
.hero-cta-band .btn-primary {
    background: var(--accent-color);
    color: #0D0D0D;
    border-color: var(--accent-color);
    font-weight: 500;
}

.hero-cta-band .btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Hero CTA Band — sits flush below the hero slideshow */
.hero-cta-band {
    background: #0a0a0a;
    border-bottom: 1px solid rgba(201,168,76,0.22);
    padding: 2.2rem 1.5rem;
    text-align: center;
}

.hero-cta-band-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
    max-width: 640px;
    margin: 0 auto;
}

.hero-cta-rule {
    width: clamp(60px, 14vw, 120px);
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.5), transparent);
}

.hero-cta-buttons {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta-divider {
    color: rgba(201,168,76,0.4);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
}

/* Hero CTA group (legacy — kept for compatibility) */
.hero-cta-group {
    display: flex;
    gap: 0.85rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Apply Now — solid gold on dark hero */
.hero-slideshow .btn-primary {
    background: var(--accent-color);
    color: #0D0D0D;
    border-color: var(--accent-color);
    font-weight: 500;
}

.hero-slideshow .btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Explore Events — visible ghost on dark hero */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-primary);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 1px;
    transition: border-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
    min-height: 48px;
}

.btn-ghost:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ===== Section Styles ===== */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    min-height: fit-content;
}

.section-label {
    display: block;
    color: var(--accent-color);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    font-weight: 400;
    white-space: nowrap;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 0;
    line-height: 1.15;
    min-height: fit-content;
    font-weight: 200;
    letter-spacing: 0.02em;
}

.title-underline {
    width: 40px;
    height: 1px;
    background: var(--accent-color);
    margin: 2rem auto 0;
}

/* ===== Welcome Section ===== */
.welcome-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: 'IFWA';
    position: absolute;
    top: -5%;
    right: -3%;
    font-size: 22vw;
    font-family: var(--font-secondary);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.18em;
    pointer-events: none;
    line-height: 1;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
}

.welcome-section > .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.welcome-section .section-header {
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-bottom: 1.8rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-section .section-title {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 200;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: var(--text-light);
}

.welcome-section .title-underline {
    margin: 1rem auto 0;
}

.welcome-content {
    display: block;
    max-width: 620px;
    margin: 0 auto 2.2rem;
}

.welcome-text {
    font-size: 0.97rem;
    line-height: 1.85;
    font-family: var(--font-secondary);
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.welcome-section .btn-primary {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-light);
}

.welcome-section .btn-primary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
    border-radius: 0;
    white-space: nowrap;
    min-height: 48px;
    line-height: 1;
}

.btn-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ===== Featured Section ===== */
.featured-section {
    background-color: var(--bg-deeper);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.featured-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
}

.featured-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    color: var(--text-light);
    transform: translateY(0);
    transition: var(--transition-slow);
}

.featured-card:hover .featured-image {
    transform: scale(1.04);
}

.featured-card:hover .featured-content {
    transform: translateY(-6px);
}

.featured-label {
    display: block;
    color: var(--accent-color);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.featured-content h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.featured-content p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    opacity: 0.75;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

.link-arrow {
    color: var(--secondary-color);
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow:hover {
    gap: 1rem;
}

/* ===== Stats Section ===== */
.stats-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 5rem 0;
}

.stats-grid {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.stat-card {
    flex: 1;
    text-align: center;
    padding: 2rem 2rem;
    border-right: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 200;
    color: var(--secondary-color);
    font-family: var(--font-secondary);
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.5;
}

/* ===== Instagram Section ===== */
.instagram-section {
    background-color: var(--bg-deeper);
}

.instagram-section .section-title {
    color: var(--text-light);
}

.instagram-section .btn-primary {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-light);
}

.instagram-section .btn-primary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
}

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

.instagram-card {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.instagram-card::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--text-light);
    opacity: 0.3;
    transition: var(--transition);
    pointer-events: none;
}

.instagram-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0.3;
    transition: var(--transition);
}

.instagram-card:hover::before {
    background-color: rgba(201, 168, 76, 0.6);
    opacity: 1;
}

.instagram-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Touch device support for Instagram cards */
@media (hover: none) and (pointer: coarse) {
    .instagram-card::after {
        opacity: 0.5;
    }

    .instagram-card::before {
        background-color: rgba(0, 0, 0, 0.2);
        opacity: 0.5;
    }
}

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

/* ===== Footer ===== */
.footer {
    background: var(--bg-deeper, #0D0D0D);
    color: var(--text-light);
    padding: 3.5rem 0 0;
    border-top: 1px solid var(--border-gold, rgba(201,168,76,0.25));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.footer-brand-mark {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    color: var(--text-light, #fff);
    line-height: 1;
}

.footer-brand-full {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.footer-tagline {
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.38);
    margin: 0;
}

/* Column headings */
.footer-col h4 {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-color, #C9A84C);
    margin: 0 0 1.2rem;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: rgba(255,255,255,0.9);
}

/* Social */
.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.4rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
    border-color: var(--accent-color, #C9A84C);
    color: var(--accent-color, #C9A84C);
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.35);
    margin: 0 0 1rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-top: 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.6rem 0;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 0.8rem;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.25);
}

.newsletter-form button {
    padding: 0.6rem 0.8rem;
    background: transparent;
    border: none;
    color: rgba(201,168,76,0.6);
    cursor: pointer;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.newsletter-form button:hover {
    color: var(--accent-color, #C9A84C);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.22);
    letter-spacing: 0.03em;
}

.footer-bottom a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color, #C9A84C);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 1px;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--accent-color, #C9A84C); }
.footer-legal-sep {
    color: rgba(201,168,76,0.3);
    font-size: 0.45rem;
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: none;
}

.back-to-top:active {
    transform: none;
}

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

    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid var(--border-gold);
    }

    /* 5 cards = 2+2+1 rows; only the very last card has no bottom border */
    .stat-card:last-child {
        border-bottom: none;
        flex: 0 0 100%;
    }

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

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

/* ===== Extra Large Desktop ===== */
@media (min-width: 1600px) {
    .container {
        padding: 0 2rem;
    }

    .logo span {
        display: inline;
    }

    .nav-menu {
        gap: 0.75rem;
        margin: 0 1.5rem;
    }

    .nav-menu li a {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem;
        letter-spacing: 0.5px;
    }

    .language-switcher {
        gap: 0.4rem;
    }

    .lang-option {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        min-width: 32px;
    }
}

/* ===== Large Desktop ===== */
@media (min-width: 1400px) and (max-width: 1599px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-menu {
        gap: 0.4rem;
        margin: 0 1rem;
    }

    .nav-menu li a {
        font-size: 0.82rem;
        padding: 0.5rem 0.5rem;
        letter-spacing: 0.3px;
    }

    .language-switcher {
        gap: 0.2rem;
    }

    .lang-option {
        font-size: 0.72rem;
        padding: 0.32rem 0.45rem;
    }
}

/* ===== Desktop ===== */
@media (min-width: 1200px) and (max-width: 1399px) {
    .nav-menu {
        gap: 0.3rem;
        margin: 0 0.75rem;
    }

    .nav-menu li a {
        font-size: 0.78rem;
        padding: 0.5rem 0.4rem;
        letter-spacing: 0.2px;
    }

    .language-switcher {
        gap: 0.15rem;
    }

    .lang-option {
        font-size: 0.68rem;
        padding: 0.3rem 0.38rem;
        min-width: 26px;
    }
}

/* ===== Tablet Responsive ===== */
@media (max-width: 1199px) {
    .nav-menu {
        gap: 0.2rem;
        margin: 0 0.5rem;
    }

    .nav-menu li a {
        font-size: 0.72rem;
        padding: 0.5rem 0.3rem;
        letter-spacing: 0.2px;
    }

    .language-switcher {
        gap: 0.1rem;
    }

    .lang-option {
        padding: 0.28rem 0.35rem;
        font-size: 0.65rem;
        min-width: 24px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.15rem;
        margin: 0 0.3rem;
    }

    .nav-menu li a {
        font-size: 0.68rem;
        padding: 0.5rem 0.25rem;
        letter-spacing: 0.1px;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .lang-option {
        padding: 0.25rem 0.3rem;
        font-size: 0.62rem;
        min-width: 22px;
    }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .welcome-section .section-header { max-width: 100%; }
    .stats-grid { flex-wrap: wrap; }
    .stat-card { flex: 1 1 100%; border-right: none; border-bottom: 1px solid var(--border-gold); }
    .stat-card:last-child { border-bottom: none; }

    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
        background-color: rgba(0, 0, 0, 0.98);
    }

    .navbar.scrolled {
        padding: 0.75rem 0;
    }

    .nav-wrapper {
        position: relative;
    }

    .logo {
        z-index: 1100;
        position: relative;
    }

    .logo h1 {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }

    .logo span {
        display: none;
    }

    /* Hide desktop language switcher */
    .language-switcher-desktop {
        display: none;
    }

    /* Apply Now CTA — mobile: between logo and hamburger */
    .nav-apply-btn {
        order: 2;
        margin-left: auto;
        margin-right: 0.65rem;
        padding: 0.38rem 0.9rem;
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        z-index: 1100;
        position: relative;
    }

    /* Hamburger menu button - SIMPLE AND CLEAN */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1100;
        padding: 0.4rem;
        background: transparent;
        border: none;
        cursor: pointer;
        position: relative;
        order: 3;
        margin-left: 0;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--text-light);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

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

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

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

    /* FULL SCREEN MOBILE MENU */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #0D0D0D;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1050;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        max-width: 320px;
        text-align: center;
        list-style: none;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.35s ease, transform 0.35s ease;
        border-bottom: 1px solid rgba(201,168,76,0.1);
    }

    .nav-menu li:first-child {
        border-top: 1px solid rgba(201,168,76,0.1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.08s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.13s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.18s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.23s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.28s; }

    .nav-menu li a {
        display: block;
        width: 100%;
        padding: 1.3rem 1rem;
        font-size: 0.75rem;
        font-weight: 400;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.75);
        text-decoration: none;
        transition: color 0.25s ease;
        opacity: 1;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        color: var(--accent-color);
    }

    .nav-menu li a::after {
        display: none;
    }

    /* Mobile language switcher */
    .mobile-lang-switcher {
        display: block !important;
        margin-top: 2rem;
        border-top: none;
        opacity: 0;
        transform: translateY(16px);
        transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s;
    }

    .nav-menu.active .mobile-lang-switcher {
        opacity: 1;
        transform: translateY(0);
    }

    .language-switcher-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }

    .language-switcher-mobile .lang-option {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .language-switcher-mobile .lang-option:hover {
        border-color: var(--secondary-color);
    }

    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* ── Mobile hero: offset fixed navbar + scale logo wider ── */
    .hero-slideshow {
        padding-top: 68px;
    }

    .slide-content {
        overflow: hidden;
    }

    .hero-logo {
        width: 160%;
        max-width: none;
        margin: 0 -30%;
    }

    .slide-title {
        font-size: clamp(2.2rem, 9vw, 4rem);
        letter-spacing: 0.1em;
    }

    .slide-label {
        font-size: 0.55rem;
        letter-spacing: 0.28em;
    }

    .slide-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.18em;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    /* ── Tablet footer ── */
    .footer { padding: 2rem 0 0; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        padding: 0 0 1.4rem;
        border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .footer-col:first-child .footer-brand { align-items: center; }
    .footer-col:first-child .social-links { justify-content: center; }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        padding: 1.4rem 1rem;
        border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .footer-col:nth-child(2) { border-right: 1px solid rgba(201,168,76,0.08); }

    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
        text-align: center;
        padding: 1.2rem 0 0.5rem;
    }
    .footer-col:nth-child(4) ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.3rem;
        text-align: center;
        padding: 1rem 0;
    }
}

/* ===== Extra Small Mobile (< 480px) ===== */
@media (max-width: 480px) {
    .hero-slideshow { padding-top: 58px; }
    .hero-cta-band { padding: 1.8rem 1rem; }
    .hero-cta-divider { display: none; }
    .hero-cta-buttons { flex-direction: column; gap: 0.8rem; width: 100%; }
    .hero-cta-buttons .btn,
    .hero-cta-buttons .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

    .container {
        padding: 0 0.75rem;
    }

    .navbar {
        padding: 0.6rem 0;
    }

    .logo h1 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .slide-title {
        font-size: clamp(2rem, 11vw, 3.2rem);
        letter-spacing: 0.1em;
    }

    .slide-indicators {
        bottom: 2rem;
    }

    .scroll-indicator {
        display: none;
    }

    section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.2rem; }

    .welcome-text {
        font-size: 1rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 100%;
    }

    .cta-buttons {
        width: 100%;
    }

    .featured-content {
        padding: 1.5rem;
    }

    .featured-content h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* ── Mobile footer ── */
    .footer { padding: 1.6rem 0 0; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    /* Brand: centered, compact — hide tagline to save space */
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        padding: 0 0 1.2rem;
        border-bottom: 1px solid rgba(201,168,76,0.12);
    }
    .footer-col:first-child .footer-brand { align-items: center; margin-bottom: 0.5rem; }
    .footer-col:first-child .footer-brand-mark { font-size: 1.8rem; }
    .footer-col:first-child .footer-tagline { display: none; }
    .footer-col:first-child .social-links { justify-content: center; margin-top: 0.75rem; }

    /* Navigate + Apply: compact side-by-side */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        padding: 1.1rem 0.75rem;
        border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .footer-col:nth-child(2) { border-right: 1px solid rgba(201,168,76,0.08); }

    .footer-col h4 { margin: 0 0 0.75rem; font-size: 0.55rem; }
    .footer-col ul li { margin-bottom: 0.32rem; }
    .footer-col ul li a { font-size: 0.77rem; }

    /* Apply: 2-col mini grid — 6 links become 3×2 */
    .footer-col:nth-child(3) ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.32rem 0.4rem;
    }

    /* Contact: full width, links inline */
    .footer-col:nth-child(4) {
        grid-column: 1 / -1;
        text-align: center;
        padding: 1rem 0 0.3rem;
    }
    .footer-col:nth-child(4) ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem 1.6rem;
    }
    .footer-col:nth-child(4) ul li a { font-size: 0.78rem; }

    .footer-bottom {
        flex-direction: column;
        gap: 0.2rem;
        text-align: center;
        padding: 0.8rem 0;
        font-size: 0.62rem;
    }
}

/* ===== Touch Device Enhancements ===== */
@media (hover: none) and (pointer: coarse) {
    /* Make buttons larger for easier touch */
    .btn {
        min-height: 52px;
        padding: 1.1rem 2rem;
    }

    /* Better touch feedback for navigation */
    .nav-menu li a {
        padding: 0.75rem 0.5rem;
    }

    /* Featured cards - tap to activate */
    .featured-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        pointer-events: auto;
    }

    /* Social links larger hit area */
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* Language switcher better touch targets */
    .lang-option {
        min-width: 36px;
        min-height: 36px;
        padding: 0.5rem 0.6rem;
    }


    /* Back to top button */
    .back-to-top {
        width: 55px;
        height: 55px;
    }
}

/* Active states for better touch feedback */
.btn:active {
    transform: scale(0.98);
}

.nav-menu li a:active {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:active {
    transform: scale(0.95);
}


.instagram-card:active {
    transform: scale(0.98);
}

/* ===== Accessibility Enhancements ===== */
/* Focus states for keyboard navigation */
*:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Better focus for buttons */
.btn:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

/* Navigation focus states */
.nav-menu li a:focus {
    background-color: rgba(212, 175, 55, 0.2);
}

/* Language switcher focus */
.lang-option:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 999;
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.skip-to-main:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
}

/* Improve form input accessibility */
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-color: var(--secondary-color);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-primary: #000000;
        --text-secondary: #333333;
        --border-color: #000000;
    }

    .btn-outline {
        border-width: 3px;
    }

}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .slide {
        transition: none;
    }

    .scroll-line {
        animation: none;
    }
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* ============================================================
   IFWA HOMEPAGE REDESIGN — NEW SECTIONS
   ============================================================ */

/* ---------- Events Section ---------- */
.events-section {
    background: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 5rem 0;
}

.events-section .section-title {
    color: var(--text-light);
}

.event-card {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding: 2.5rem 0;
    align-items: start;
    transition: background 0.2s;
}

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

.event-card.upcoming {
    border-left: 4px solid var(--color-gold, #c9a84c);
    padding-left: 2rem;
    background: rgba(201,168,76,0.07);
    border-radius: 0 4px 4px 0;
}

.event-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/2;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-image video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.event-card:hover .event-image img,
.event-card:hover .event-image video {
    transform: scale(1.03);
}

.event-content {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.event-badge {
    display: inline-block;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    padding: 0.3rem 0.8rem;
    border: 1px solid currentColor;
    border-radius: 2px;
    width: fit-content;
}

.event-badge.upcoming-badge {
    color: var(--color-gold, #c9a84c);
    border-color: var(--color-gold, #c9a84c);
}

.event-badge.past-badge {
    color: #aaa;
    border-color: #ccc;
}

.event-title {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.event-location {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

.event-location i {
    color: var(--color-gold, #c9a84c);
    margin-right: 0.2rem;
}

.event-short-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.event-full-desc {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.event-card.expanded .event-full-desc {
    max-height: 400px;
    opacity: 1;
}

.event-full-desc p {
    font-size: 0.93rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    padding-top: 0.5rem;
}

.event-expand-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-gold, #c9a84c);
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    transition: opacity 0.2s;
}

.event-expand-btn:hover {
    opacity: 0.75;
}

.event-expand-btn i {
    transition: transform 0.3s ease;
}

.event-card.expanded .event-expand-btn i {
    transform: rotate(180deg);
}

.event-card.past { opacity: 0.72; }
.event-card.past .event-image img { filter: grayscale(25%); }

/* ===== Event Photo Carousel ===== */
.event-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #080808;
    aspect-ratio: 4 / 3;
}

.event-carousel .ec-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
    pointer-events: none;
}

.event-carousel .ec-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Prev / Next buttons */
.ec-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: rgba(0, 0, 0, 0.52);
    color: #C9A84C;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    opacity: 0;
    transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.event-carousel:hover .ec-btn,
.event-carousel.ec-touch-active .ec-btn {
    opacity: 1;
}

.ec-btn:hover {
    background: rgba(201, 168, 76, 0.18);
    border-color: rgba(201, 168, 76, 0.7);
}

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

/* Dot indicators */
.ec-dots {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.ec-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.ec-dot.active {
    background: #C9A84C;
    transform: scale(1.4);
}

/* Counter overlay (top-right) */
.ec-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.45);
    padding: 3px 8px;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .event-carousel {
        aspect-ratio: 4 / 3;
    }

    /* Arrows always visible on touch devices */
    .event-carousel .ec-btn {
        opacity: 0.85;
        width: 32px;
        height: 32px;
    }
}

.apply-btn {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border: 1.5px solid var(--color-gold, #c9a84c);
    color: var(--color-gold, #c9a84c);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.apply-btn:hover {
    background: var(--color-gold, #c9a84c);
    color: #fff;
}

.event-cta-btn {
    align-self: flex-start;
    width: fit-content;
    margin-top: 1.2rem;
    padding: 0.7rem 2rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    border-width: 1.5px;
}

/* ---------- Apply Modal ---------- */
.apply-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    overflow-y: auto;
}

.apply-modal.open {
    display: flex;
}

.apply-modal-inner {
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    color: var(--text-light);
    width: 100%;
    max-width: 640px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}

.apply-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.apply-modal-header h2 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
}

.apply-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 0.2rem 0.4rem;
    transition: color 0.2s;
}

.apply-modal-close:hover {
    color: var(--text-light);
}

.apply-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.8rem;
}

.apply-tab-btn {
    background: none;
    border: none;
    padding: 0.7rem 1.2rem;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}

.apply-tab-btn.active,
.apply-tab-btn:hover {
    color: var(--color-gold, #c9a84c);
    border-bottom-color: var(--color-gold, #c9a84c);
}

.apply-tab-panel {
    display: none;
}

.apply-tab-panel.active {
    display: block;
}

.apply-form .form-group {
    margin-bottom: 1.2rem;
}

.apply-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.apply-form label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.4rem;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.9rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.06);
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
    color-scheme: dark;
}

.apply-form select option {
    background-color: #111;
    color: #fff;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: var(--color-gold, #c9a84c);
    background: rgba(255, 255, 255, 0.09);
}

.apply-form button[type="submit"] { width: 100%; }

.apply-success {
    display: none;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-light);
}

.apply-success i {
    font-size: 3rem;
    color: var(--color-gold, #c9a84c);
    margin-bottom: 1rem;
    display: block;
}

.apply-success h3 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
}

.apply-modal-inner .btn-primary {
    background-color: var(--color-gold, #c9a84c);
    color: #fff;
    border-color: var(--color-gold, #c9a84c);
}

.apply-modal-inner .btn-primary:hover {
    background-color: transparent;
    color: var(--color-gold, #c9a84c);
    border-color: var(--color-gold, #c9a84c);
}

/* ---------- Homepage Gallery ---------- */
.homepage-gallery-section {
    background: var(--bg-dark);
    color: var(--text-light);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 5rem 0;
}

.homepage-gallery-section .section-title {
    color: var(--text-light);
}

.homepage-gallery-section .btn-primary {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text-light);
}

.homepage-gallery-section .btn-primary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    border-color: var(--text-light);
}

.homepage-gallery .text-center { margin-top: 2.5rem; }

/* Editorial grid — featured card top-left, bottom row landscape */
.homepage-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 4px;
}

.gallery-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: #1a1a1a;
}

/* Featured: spans 2 cols × 2 rows */
.gallery-card:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
}

/* Right column: 1:1 — square cards = even taller featured card overall */
.gallery-card:nth-child(2),
.gallery-card:nth-child(3) {
    aspect-ratio: 1/1;
}

/* Bottom row: landscape */
.gallery-card:nth-child(4),
.gallery-card:nth-child(5),
.gallery-card:nth-child(6) {
    aspect-ratio: 16/9;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Hover overlay with caption */
.gallery-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem 1.4rem;
    transition: background 0.35s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-card:hover .gallery-hover {
    background: rgba(0, 0, 0, 0.42);
}

.gallery-caption {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: transparent;
    transform: translateY(5px);
    transition: color 0.35s ease, transform 0.35s ease;
}

.gallery-card:hover .gallery-caption {
    color: rgba(255, 255, 255, 0.88);
    transform: translateY(0);
}

/* Video cards */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: rgba(0, 0, 0, 0.38);
    transition: background 0.3s;
    z-index: 2;
}

.gallery-card.video:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.55);
}

.video-play-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.gallery-card.video:hover .video-play-btn {
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.video-play-overlay i {
    font-size: 1rem;
    color: #fff;
    margin-left: 3px;
    transition: color 0.25s ease;
}

.gallery-card.video:hover .video-play-overlay i {
    color: var(--accent-color);
}

.video-label {
    font-family: var(--font-primary);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.25s ease;
}

.gallery-card.video:hover .video-label {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- Sponsors Section ---------- */
.sponsors-section {
    background: var(--bg-dark, #111111);
    border-top: 1px solid var(--border-gold, rgba(201,168,76,0.25));
    border-bottom: 1px solid var(--border-gold, rgba(201,168,76,0.25));
    padding: 5rem 0;
    text-align: center;
}

.sponsors-header {
    margin-bottom: 3.5rem;
}

.sponsors-header .section-label {
    color: var(--accent-color, #C9A84C);
}

.sponsors-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--text-light, #fff);
    margin: 0.4rem 0 0.8rem;
    letter-spacing: 0.02em;
}

.sponsors-subtitle {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.sponsors-real {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid rgba(201,168,76,0.18);
    margin: 0 0 3rem;
}

.sponsor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.6rem 1rem 1.2rem;
    border-right: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    transition: background 0.3s ease;
}

.sponsor-card:hover {
    background: rgba(201,168,76,0.05);
}

.sponsor-img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
    opacity: 0.82;
    transition: opacity 0.3s ease;
}

.sponsor-card:hover .sponsor-img {
    opacity: 1;
}

.sponsor-img-light {
    filter: invert(1);
}

.sponsor-name {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.55);
    text-align: center;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.sponsor-card:hover .sponsor-name {
    color: rgba(201,168,76,0.9);
}

@media (max-width: 992px) {
    .sponsors-real {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 600px) {
    .sponsors-real {
        grid-template-columns: repeat(3, 1fr);
    }
    .sponsor-img {
        height: 64px;
    }
}

.sponsors-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.sponsors-cta-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.04em;
    margin: 0;
}

.sponsors-cta-btn {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--accent-color, #C9A84C);
    padding: 0.75rem 2.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.sponsors-cta-btn:hover {
    background: var(--accent-color, #C9A84C);
    border-color: var(--accent-color, #C9A84C);
    color: #0D0D0D;
}

/* ---------- CEO & Founder Section ---------- */
.ceo-section {
    background: var(--bg-deeper, #0D0D0D);
    border-top: 1px solid var(--border-gold, rgba(201,168,76,0.25));
    padding: 7rem 0;
}

.ceo-section .section-label {
    color: var(--accent-color, #C9A84C);
}

.ceo-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 6rem;
    align-items: center;
}

.ceo-photo-wrap {
    position: relative;
}

.ceo-photo-wrap::before {
    content: '';
    position: absolute;
    top: -1.2rem;
    left: -1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    border: 1px solid rgba(201,168,76,0.35);
    z-index: 0;
}

.ceo-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
    box-shadow: 0 32px 72px rgba(0,0,0,0.55);
}

.ceo-name {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0.4rem 0 0;
    color: var(--text-light, #fff);
    letter-spacing: 0.01em;
}

.ceo-title {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color, #C9A84C);
    margin: 0.5rem 0 0;
}

.ceo-divider {
    width: 36px;
    height: 1px;
    background: rgba(201,168,76,0.5);
    margin: 1.6rem 0;
}

.ceo-bio {
    font-size: 0.93rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.52);
    margin: 0 0 1rem;
}

.ceo-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 2rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.ceo-contact-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.ceo-contact-link:hover {
    color: var(--accent-color, #C9A84C);
}

.ceo-contact-link i {
    width: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(201,168,76,0.55);
    transition: color 0.25s ease;
}

.ceo-contact-link:hover i {
    color: var(--accent-color, #C9A84C);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .event-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card.upcoming {
        padding-left: 1rem;
    }

    .event-image {
        aspect-ratio: 16/9;
    }

    .event-cta-btn {
        align-self: stretch;
        width: 100%;
        text-align: center;
    }

    .apply-modal-inner {
        padding: 1.5rem;
    }

    .apply-form .form-row {
        grid-template-columns: 1fr;
    }

    .homepage-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gallery-card:nth-child(1) {
        grid-column: 1 / span 2;
        grid-row: 1;
        aspect-ratio: 16/9;
    }

    .gallery-card:nth-child(2),
    .gallery-card:nth-child(3) {
        aspect-ratio: 1;
    }

    .gallery-card:nth-child(4),
    .gallery-card:nth-child(5),
    .gallery-card:nth-child(6) {
        aspect-ratio: 1;
    }

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

    .sponsor-slot {
        border-right: 1px solid rgba(201,168,76,0.2);
        border-bottom: 1px solid rgba(201,168,76,0.2);
    }

    .sponsor-slot:nth-child(2),
    .sponsor-slot:nth-child(4) {
        border-right: none;
    }

    .sponsor-slot:nth-child(3),
    .sponsor-slot:nth-child(4) {
        border-bottom: none;
    }

    /* Sponsors — single column on small mobile */
    @media (max-width: 480px) {
        .sponsors-grid {
            grid-template-columns: 1fr;
        }

        .sponsor-slot {
            border-right: none;
            border-bottom: 1px solid rgba(201,168,76,0.2);
        }

        .sponsor-slot:last-child {
            border-bottom: none;
        }
    }

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

    .ceo-photo-wrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .ceo-photo-wrap::before {
        top: -0.8rem;
        left: -0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
    }

    .ceo-photo {
        aspect-ratio: 4/5;
    }
}
