/* Root Variables */
:root {
    --gold: #d4af37;
    --light-gold: #f4e5bc;
    --wood-dark: #1a0f08;
    --wood-med: #2d1810;
    --cream: #faf6f0;
    --gold-gradient: linear-gradient(135deg, #d4af37, #f4e5bc, #d4af37);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    background: var(--wood-dark);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at top, #2d1810 0%, #1a0f08 60%);
    pointer-events: none;
    z-index: 1;
}

/* Wood Grain Background Layer */
#bg-svg-layer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    mix-blend-mode: screen;
}

#bg-svg-layer svg {
    width: 100%;
    height: 100%;
}

/* Wood grain paths */
.wood-grain-path {
    fill: none;
    stroke: rgba(212, 175, 55, 0.03);
    stroke-width: 1.5;
    opacity: 0.8;
}

/* Glow paths */
.glow-path {
    fill: none;
    stroke: url(#gold-gradient);
    stroke-width: 1;
    opacity: 0.4;
    filter: url(#glow-filter);
    stroke-linecap: round;
    will-change: stroke-dashoffset;
}

/* Ensure hero and get-involved sections are above the glow paths */
#hero,
.get-involved {
    position: relative;
    z-index: 10;
    background: inherit;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Logo hover effects */
.logo-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.logo-link:hover .logo-rabab {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    transition: all 0.3s ease;
}

.logo-link:hover .logo-foundation {
    color: rgba(255, 255, 255, 1);
    transform: translateX(1px);
    transition: all 0.3s ease;
}

.logo-section {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hero Image Interactive Styles */
.hero-image {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero-image:hover img {
    opacity: 0.5;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.hero-image:hover .image-overlay {
    opacity: 1;
}

.gallery-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.gallery-icon {
    width: 40px;
    height: 40px;
    color: white;
    transition: color 0.3s ease;
}

.zen-mode-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.hero-image:hover .gallery-trigger {
    transform: scale(1.05);
}

.hero-image:hover .gallery-icon {
    color: #d4af37;
}

.hero-image:hover .zen-mode-text {
    color: #d4af37;
}

/* Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), visibility 0.6s;
}

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

.gallery-overlay {
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.8);
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.gallery-modal.active .gallery-content {
    transform: scale(1);
}

.gallery-close {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 30;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-close:hover {
    transform: scale(1.1);
    background: rgba(0, 0, 0, 0.8);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.gallery-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.gallery-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 2.5s cubic-bezier(0.4, 0.0, 0.2, 1), transform 15s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 2;
}

.gallery-image.active {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-image.zoom-in {
    transform: scale(1.15);
}

.gallery-image.zoom-out {
    transform: scale(1.0);
}

.gallery-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-nav {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: bold;
}

.gallery-nav:hover {
    background: rgba(212, 175, 55, 0.8);
    border-color: #d4af37;
    color: #000;
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

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

.gallery-counter {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    min-width: 60px;
}

/* Audio Control Button */
.audio-control {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.1);
}

.audio-control:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.3);
}

.audio-control:active {
    transform: scale(0.95);
}

.audio-icon {
    width: 28px;
    height: 28px;
    position: absolute;
    transition: all 0.3s ease;
}

.audio-icon.sound-off {
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
}

.audio-control.muted .audio-icon.sound-on {
    opacity: 0;
    transform: scale(0.8) rotate(90deg);
}

.audio-control.muted .audio-icon.sound-off {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.sound-wave {
    animation: soundWave 2s infinite ease-in-out;
}

.audio-control.muted .sound-wave {
    animation: none;
}

@keyframes soundWave {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Audio Tooltip */
.audio-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1001;
}

.audio-control:hover .audio-tooltip,
.audio-tooltip.show-on-load {
    opacity: 1;
    transform: translateY(-50%) translateX(5px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.audio-tooltip.fade-out {
    opacity: 0;
    transform: translateY(-50%) translateX(-10px);
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.tooltip-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    padding: 12px 16px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.15);
}

.tooltip-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: rgba(212, 175, 55, 0.6);
}

.tooltip-text {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    letter-spacing: 0.5px;
}

.tooltip-subtext {
    color: rgba(212, 175, 55, 0.7);
    font-size: 0.75rem;
    margin-top: 2px;
    font-weight: 400;
}

.audio-control.muted .tooltip-text::after {
    content: " 🔇";
}

.audio-control:not(.muted) .tooltip-text {
    color: #4ade80;
}

.audio-control:not(.muted) .tooltip-text::after {
    content: " 🔊";
}

.audio-control:not(.muted) .tooltip-content {
    border-color: rgba(74, 222, 128, 0.6);
}

.audio-control:not(.muted) .tooltip-content::before {
    border-right-color: rgba(74, 222, 128, 0.6);
}

/* Fullscreen Control Button */
.fullscreen-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #d4af37;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 10000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.1);
}

.fullscreen-control:hover {
    transform: scale(1.1) rotate(-5deg);
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.3);
}

.fullscreen-control:active {
    transform: scale(0.95);
}

.fullscreen-icon {
    width: 26px;
    height: 26px;
    position: absolute;
    transition: all 0.3s ease;
}

.fullscreen-icon.exit-fullscreen {
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
}

.fullscreen-control.in-fullscreen .fullscreen-icon.enter-fullscreen {
    opacity: 0;
    transform: scale(0.8) rotate(90deg);
}

.fullscreen-control.in-fullscreen .fullscreen-icon.exit-fullscreen {
    opacity: 1;
    transform: scale(1) rotate(0);
}

/* Fullscreen Tooltip */
.fullscreen-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 1001;
}

.fullscreen-control:hover .fullscreen-tooltip,
.fullscreen-tooltip.show-on-load {
    opacity: 1;
    transform: translateY(-50%) translateX(-5px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fullscreen-tooltip.fade-out {
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.fullscreen-control.glow-on-load {
    animation: fullscreenGlow 2.5s ease-in-out infinite;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.2);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.fullscreen-control.glow-fade-out {
    animation: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.1);
    transition: all 1.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes fullscreenGlow {

    0%,
    100% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7),
            0 0 40px rgba(212, 175, 55, 0.4),
            0 0 60px rgba(212, 175, 55, 0.2);
    }

    50% {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8),
            0 0 50px rgba(212, 175, 55, 0.6),
            0 0 80px rgba(212, 175, 55, 0.3);
    }
}

.fullscreen-tooltip .tooltip-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 12px;
    padding: 12px 16px;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(212, 175, 55, 0.15);
}

.fullscreen-tooltip .tooltip-content::before {
    display: none;
}

/* Hide fullscreen button during ZEN mode */
.zen-mode-active .fullscreen-control {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
    .glow-path {
        animation: none !important;
        opacity: 0.1;
        filter: none;
    }

    .sound-wave {
        animation: none;
    }

    .hero-image,
    .gallery-content,
    .gallery-image,
    .gallery-nav {
        transition: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    position: relative;
    z-index: 2;
}

/* Typography */
h1 {
    font-size: clamp(1.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    opacity: 0.9;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: clamp(0.5rem, 2vw, 1rem) 0;
    background: rgba(26, 15, 8, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 6vw, 4rem);
    position: relative;
}

/* Logo Section */
.logo-section {
    flex: 0 0 auto;
    z-index: 1001;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo-rabab {
    font-family: 'Noto Sans Gurmukhi', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.1rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.logo-foundation {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
}

/* Contact CTA Section */
.nav-cta-section {
    flex: 0 0 auto;
    z-index: 1001;
}

.nav-contact-cta {
    display: inline-flex;
    align-items: center;
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1.2rem, 3vw, 1.8rem);
    background: linear-gradient(135deg, var(--wood-med), #4a2818);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--gold);
    border-radius: clamp(20px, 4vw, 25px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: var(--light-gold);
    border-color: var(--light-gold);
}

.nav-contact-cta .cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-contact-cta:hover .cta-glow {
    opacity: 1;
}

.rabab-nav {
    position: relative;
    height: clamp(60px, 12vw, 100px);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rabab-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    height: auto;
}

.rabab-body {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    opacity: 0.3;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: tracePath 3.5s ease-out forwards;
}

.string {
    stroke: var(--gold);
    stroke-width: 1;
    opacity: 0.5;
    transition: var(--transition);
    transform-origin: center;
}

.string.vibrating {
    animation: strum 0.6s ease-out;
}

.string.vibrating-random {
    animation: strumRandom 0.8s ease-out;
}

@keyframes strum {
    0% {
        transform: translateY(0) scaleY(1);
    }

    15% {
        transform: translateY(-2px) scaleY(1.05);
        opacity: 0.9;
    }

    30% {
        transform: translateY(2px) scaleY(0.95);
        opacity: 0.8;
    }

    45% {
        transform: translateY(-1px) scaleY(1.02);
        opacity: 0.7;
    }

    60% {
        transform: translateY(1px) scaleY(0.98);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-0.5px) scaleY(1.01);
        opacity: 0.55;
    }

    100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.5;
    }
}

@keyframes strumRandom {
    0% {
        transform: translateY(0) scaleY(1);
    }

    12% {
        transform: translateY(-3px) scaleY(1.08);
        opacity: 0.95;
    }

    25% {
        transform: translateY(2px) scaleY(0.92);
        opacity: 0.85;
    }

    38% {
        transform: translateY(-1.5px) scaleY(1.04);
        opacity: 0.75;
    }

    50% {
        transform: translateY(1.5px) scaleY(0.96);
        opacity: 0.65;
    }

    63% {
        transform: translateY(-1px) scaleY(1.02);
        opacity: 0.6;
    }

    75% {
        transform: translateY(0.5px) scaleY(0.99);
        opacity: 0.55;
    }

    88% {
        transform: translateY(-0.3px) scaleY(1.01);
        opacity: 0.52;
    }

    100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.5;
    }
}

.nav-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: clamp(1.2rem, 3vw, 2.5rem);
    width: 100%;
    max-width: 900px;
    justify-content: center;
}

.nav-link {
    color: var(--gold);
    text-decoration: none;
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.5rem, 1.5vw, 0.8rem);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.nav-active {
    color: var(--light-gold);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: buttonVibrate 0.6s ease-in-out;
}

.nav-link.nav-active {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
}

@keyframes buttonVibrate {
    0% {
        transform: translateY(-2px) translateX(0);
    }

    10% {
        transform: translateY(-2px) translateX(-1px);
    }

    20% {
        transform: translateY(-2px) translateX(1px);
    }

    30% {
        transform: translateY(-2px) translateX(-0.5px);
    }

    40% {
        transform: translateY(-2px) translateX(0.5px);
    }

    50% {
        transform: translateY(-2px) translateX(-0.3px);
    }

    60% {
        transform: translateY(-2px) translateX(0.3px);
    }

    70% {
        transform: translateY(-2px) translateX(-0.2px);
    }

    80% {
        transform: translateY(-2px) translateX(0.2px);
    }

    90% {
        transform: translateY(-2px) translateX(-0.1px);
    }

    100% {
        transform: translateY(-2px) translateX(0);
    }
}

/* Music Icon Confetti Effects */
.music-icon {
    position: fixed;
    font-size: clamp(12px, 2vw, 16px);
    color: var(--gold);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1001;
    animation: musicPop 1.2s ease-out forwards;
}

@keyframes musicPop {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }

    20% {
        transform: scale(1.2);
        opacity: 0.9;
    }

    50% {
        transform: scale(1);
        opacity: 0.7;
    }

    80% {
        transform: scale(0.8);
        opacity: 0.4;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes musicFloat1 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0.8;
    }

    30% {
        transform: translate(-20px, -30px) scale(1.1);
        opacity: 0.9;
    }

    70% {
        transform: translate(-40px, -60px) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: translate(-60px, -90px) scale(0);
        opacity: 0;
    }
}

@keyframes musicFloat2 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0.8;
    }

    30% {
        transform: translate(20px, -25px) scale(1.1);
        opacity: 0.9;
    }

    70% {
        transform: translate(45px, -55px) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: translate(70px, -85px) scale(0);
        opacity: 0;
    }
}

@keyframes musicFloat3 {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0.8;
    }

    30% {
        transform: translate(-10px, -35px) scale(1.1);
        opacity: 0.9;
    }

    70% {
        transform: translate(-25px, -70px) scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: translate(-40px, -105px) scale(0);
        opacity: 0;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo-section {
        order: 1;
        flex: 1;
    }

    .nav-cta-section {
        order: 2;
        flex: 0 0 auto;
    }

    .rabab-nav {
        order: 3;
        flex: 1 1 100%;
        height: clamp(50px, 8vw, 70px);
        margin-top: 0.5rem;
    }

    .rabab-svg {
        max-width: 1000px;
    }

    .nav-items {
        gap: clamp(0.8rem, 2vw, 1.5rem);
        max-width: 600px;
    }

    .nav-link {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: clamp(0.2rem, 0.8vw, 0.4rem) clamp(0.4rem, 1.2vw, 0.6rem);
    }

    .logo-rabab {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .logo-foundation {
        font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    }

    .nav-contact-cta {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: clamp(0.5rem, 1.2vw, 0.7rem) clamp(1rem, 2.5vw, 1.4rem);
    }
}

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

    .rabab-nav {
        height: clamp(40px, 10vw, 60px);
    }

    .nav-items {
        gap: clamp(0.6rem, 1.5vw, 1rem);
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.65rem;
        padding: 0.3rem 0.5rem;
    }
}

/* Mobile Navigation Premium Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 44px;
    /* Larger touch target */
    height: 44px;
    position: relative;
    z-index: 1002;
    padding: 10px;
    margin-right: -10px;
    /* Align right edge */
    transition: transform 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gold);
    border-radius: 4px;
    position: absolute;
    left: 10px;
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    left: 16px;
    /* Staggered effect */
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 14px;
}

/* Active State for Hamburger */
.navbar.mobile-menu-active .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar.mobile-menu-active .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.navbar.mobile-menu-active .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-container {
        position: relative;
        /* Context for absolute positioning */
        justify-content: space-between;
        /* Space logo and burger apart */
        padding-right: 1rem;
        flex-wrap: nowrap !important;
        gap: 0.5rem;
    }

    .rabab-nav {
        position: absolute;
        inset: 0;
        margin: 0;
        z-index: 1;
        pointer-events: none;
        overflow: visible;
        /* Allow strings/body to spill out if needed */
        display: flex;
        justify-content: center;
        align-items: center;
        /* opacity: 0.6; - Moving opacity to SVG so it doesn't affect active menu items */
    }

    .rabab-svg {
        display: block !important;
        width: 140%;
        /* Make it bigger/wider */
        height: auto;
        /* Maintain aspect ratio - no stretching */
        min-width: 0;
        /* Allow scaling down */
        max-width: none;
        opacity: 0.6;
        position: relative;
        top: auto;
        left: auto;
        flex-shrink: 0;
        /* Prevent shrinking */
        transform: translateY(6px);
        /* Move down slightly */
    }

    /* Keep thicker strokes for visibility at small scale */
    .rabab-svg .rabab-body {
        stroke-width: 8px;
        fill: transparent;
        stroke: var(--gold);
    }

    .rabab-svg .string {
        stroke-width: 4px;
        stroke: var(--gold);
    }

    /* Ensure interactive elements stay on top */
    .logo-section,
    .nav-cta-section,
    .mobile-menu-toggle {
        position: relative;
        z-index: 10;
        flex: 0 0 auto;
    }

    .logo-section {
        order: 1;
    }

    .nav-cta-section {
        order: 2;
        margin-right: 0.5rem;
    }

    .mobile-menu-toggle {
        order: 3;
        z-index: 2000;
    }


    /* Ensure Rabab SVG stays visible when menu is open */
    .navbar.mobile-menu-active .rabab-svg {
        z-index: 1000;
        opacity: 0.8;
        pointer-events: none;
    }

    /* Fullscreen Mobile Menu Overlay */
    .navbar.mobile-menu-active .nav-items {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26, 15, 8, 0.98), rgba(45, 24, 16, 0.98));
        backdrop-filter: blur(25px);
        padding: calc(var(--nav-h, 80px) + 2rem) 2rem 3rem;
        gap: 1rem;
        align-items: center;
        justify-content: flex-start;
        overflow-y: auto;
        z-index: 999;
        /* Animation */
        opacity: 0;
        transform: translateY(-10px);
        animation: menuFadeIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    }

    .nav-items {
        display: none;
    }

    .nav-link {
        font-size: 1.5rem;
        padding: 0.8rem 1.5rem;
        width: 100%;
        max-width: 400px;
        text-align: center;
        border: 1px solid rgba(212, 175, 55, 0.1);
        border-radius: 12px;
        background: rgba(212, 175, 55, 0.03);
        color: var(--gold);
        position: static;
        transform: none;
        transition: all 0.3s ease;
        opacity: 0;
        animation: menuItemSlideUp 0.5s ease forwards;
    }

    /* Staggered animation delays for menu items */
    .nav-link:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-link:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-link:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-link:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-link:nth-child(5) {
        animation-delay: 0.3s;
    }

    .nav-link:nth-child(6) {
        animation-delay: 0.35s;
    }

    .nav-link:active,
    .nav-link:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: var(--gold);
        transform: scale(1.02);
    }

    .nav-link .nav-glow {
        display: none;
    }

    .logo-section {
        position: relative;
        z-index: 1002;
        /* Keep logo above menu overlay */
    }

    /* Adjust CTA for mobile header */
    .nav-cta-section {
        position: relative;
        z-index: 1001;
        margin-right: 0.5rem;
    }

    .nav-contact-cta {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    /* Hide fullscreen button on mobile */
    .fullscreen-control {
        display: none !important;
    }

    /* Move audio control to right on mobile */
    .audio-control {
        left: auto;
        right: 30px;
    }

    /* Fix audio tooltip position on mobile */
    .audio-control .audio-tooltip {
        left: auto;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    .audio-control:hover .audio-tooltip,
    .audio-tooltip.show-on-load {
        transform: translateY(-50%) translateX(-5px);
    }

    /* Flip tooltip arrow on mobile */
    .audio-control .tooltip-content::before {
        left: auto;
        right: -8px;
        border-right-color: transparent !important;
        border-left-color: rgba(212, 175, 55, 0.6);
    }

    .audio-control:not(.muted) .tooltip-content::before {
        border-left-color: rgba(74, 222, 128, 0.6) !important;
    }
}

@keyframes menuFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes menuItemSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero */
.hero {
    min-height: calc(100vh - var(--nav-h, 80px));
    max-width: 100%;
    margin-top: var(--nav-h, 80px);
    margin-right: clamp(1rem, 3vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 2rem);
    margin-left: clamp(1rem, 3vw, 2rem);
    padding: clamp(2rem, 4vw, 3rem);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-brown);
    border-radius: clamp(8px, 2vw, 15px);
    box-sizing: border-box;
}

#hero {
    scroll-margin-top: var(--nav-h, 80px);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.wood-grain {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
    opacity: 0.3;
}

.golden-lines .line {
    position: absolute;
    height: 1px;
    width: 120%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform-origin: center;
}

.line-1 {
    top: 12%;
    left: -15%;
    transform: rotate(-22deg);
    animation: glow1 7.2s infinite both;
}

.line-2 {
    top: 38%;
    left: -8%;
    transform: rotate(31deg);
    animation: glow2 9.1s infinite 1.7s both;
}

.line-3 {
    top: 71%;
    left: -12%;
    transform: rotate(-14deg);
    animation: glow3 8.8s infinite 3.4s both;
}

.line-4 {
    top: 89%;
    left: -9%;
    transform: rotate(26deg);
    animation: glow4 7.6s infinite 5.8s both;
}

.line-5 {
    top: 23%;
    left: -14%;
    transform: rotate(-37deg);
    animation: glow5 8.3s infinite 9.2s both;
}

@keyframes glow1 {

    0%,
    100% {
        opacity: 0.12;
        transform: rotate(-22deg) translateX(-100%);
    }

    45% {
        opacity: 0.85;
        transform: rotate(-22deg) translateX(95%);
    }
}

@keyframes glow2 {

    0%,
    100% {
        opacity: 0;
        transform: rotate(31deg) translateX(-105%);
    }

    52% {
        opacity: 0.76;
        transform: rotate(31deg) translateX(102%);
    }
}

@keyframes glow3 {

    0%,
    100% {
        opacity: 0;
        transform: rotate(-14deg) translateX(-98%);
    }

    48% {
        opacity: 0.82;
        transform: rotate(-14deg) translateX(97%);
    }
}

@keyframes glow4 {

    0%,
    100% {
        opacity: 0;
        transform: rotate(26deg) translateX(-102%);
    }

    44% {
        opacity: 0.79;
        transform: rotate(26deg) translateX(103%);
    }
}

@keyframes glow5 {

    0%,
    100% {
        opacity: 0;
        transform: rotate(-37deg) translateX(-97%);
    }

    49% {
        opacity: 0.88;
        transform: rotate(-37deg) translateX(98%);
    }
}

@keyframes tracePath {
    0% {
        stroke-dashoffset: 2000;
        opacity: 0.1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
}

/* Navbar background blur enhancement */
.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 15, 8, 0.8);
    backdrop-filter: blur(20px);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 8vw, 5rem);
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0;
}

.hero-prefix {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

.hero-title {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(1rem, 3vw, 2rem);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 1;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
    /* needed for absolute-positioned notes */
    display: inline-block;
    /* width hugs text so notes sit at text end */
    color: var(--gold);
    overflow: visible;
    --note-gap: 0.12em;
    /* tweak this to bring notes closer/farther */
    --note-baseline: -0.62em;
    /* raise/lower notes relative to the text baseline */
}

/* Ensure CTA sits on its own line but doesn't stretch full width */
.hero-text .cta-button.primary {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
}

/* Hero subtitle musical notes */
.hero-subtitle .subtitle-note {
    position: absolute;
    top: calc(50% + var(--note-baseline, -0.12em) + var(--note-jitter, 0px));
    left: calc(100% + var(--note-gap, 0.12em));
    right: auto;
    transform: translate(0, 0) scale(var(--scale, 1));
    font-size: 1em;
    color: var(--gold);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
    pointer-events: none;
    white-space: nowrap;
    z-index: 2;
    animation: subtitleNoteFloat var(--subtitle-note-duration, 0.9s) ease-out forwards;
}

@keyframes subtitleNoteFloat {
    0% {
        opacity: 0.95;
        transform: translate(0, -50%) scale(var(--scale, 1)) rotate(0deg);
        filter: brightness(1) saturate(1);
    }

    60% {
        opacity: 0.85;
        filter: brightness(1.1) saturate(1.05);
    }

    100% {
        opacity: 0;
        transform: translate(var(--dx, 40px), calc(var(--dy, -60px) - 50%)) scale(calc(var(--scale, 1) * 0.85)) rotate(var(--rot, 0deg));
        filter: brightness(1) saturate(1);
    }
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.8;
    text-align: center;
    margin: 0 auto clamp(2rem, 4vw, 3rem) auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    max-width: 600px;
}

.image-mask {
    position: relative;
    overflow: hidden;
    border-radius: clamp(10px, 3vw, 20px);
}

.image-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-mask:hover img {
    transform: scale(1.1);
}

/* Hero Image */
.hero-image {
    position: relative;
    overflow: visible;
    border-radius: clamp(10px, 3vw, 20px);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}


/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, var(--wood-med), #4a2818);
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.875rem, 2vw, 1rem);
    text-transform: uppercase;
    border: clamp(1px, 0.3vw, 2px) solid var(--gold);
    border-radius: clamp(25px, 6vw, 50px);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--light-gold);
}

/* Sections */
section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
    z-index: 2;
}

.section-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* About Section */
.about-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-header .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.about-header .section-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    color: #f4e5bc;
    opacity: 0.9;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

.image-accent {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    z-index: -1;
    transition: all 0.3s ease;
}

.image-container:hover .image-accent {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translate(-5px, -5px);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(74, 40, 24, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: clamp(10px, 3vw, 20px);
    overflow: hidden;
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.feature-card:hover .feature-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-card p {
    color: #f4e5bc;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .about-header {
        margin-bottom: 3rem;
    }

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

    .feature-card {
        padding: 1.5rem;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), rgba(212, 175, 55, 0.3));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: clamp(4rem, 8vw, 6rem);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: calc(50% + 50px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: calc(50% + 50px);
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: rgba(20, 15, 10, 0.9);
    border: 4px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-node {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--wood-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    z-index: 3;
}

.timeline-content {
    max-width: clamp(350px, 45vw, 450px);
    background: rgba(74, 40, 24, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: clamp(10px, 3vw, 20px);
    overflow: hidden;
    padding: 2rem;
    margin-top: 3rem;
    transition: var(--transition);
    cursor: pointer;
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-content h3 {
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline-content p {
    color: #f4e5bc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.timeline-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.timeline-content:hover .timeline-image img {
    transform: scale(1.05);
}

.timeline-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-content:hover .timeline-image::after {
    opacity: 1;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        text-align: left !important;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        max-width: calc(100% - 80px);
    }

    .timeline-node {
        left: 30px;
    }

    .timeline-item::before {
        left: 30px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-image {
        height: 150px;
    }
}

/* Programmes */
.programmes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 40vw, 280px), 1fr));
    gap: clamp(2rem, 5vw, 3rem);
}

.programme-card {
    background: rgba(74, 40, 24, 0.3);
    border-radius: clamp(10px, 3vw, 20px);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.programme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.programme-image {
    height: 200px;
    overflow: hidden;
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.programme-card:hover img {
    transform: scale(1.1);
}

.programme-content {
    padding: 2rem;
}

.programme-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
}

.programme-content h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 45vw, 350px), 1fr));
    gap: clamp(2rem, 5vw, 3rem);
}

.blog-card {
    background: rgba(74, 40, 24, 0.3);
    border-radius: clamp(10px, 3vw, 20px);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-content {
    padding: clamp(1.5rem, 3vw, 2rem);
}

.blog-date {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h3 {
    color: var(--light-gold);
    margin-bottom: 1rem;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.3;
}

.blog-content p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
    line-height: 1.6;
}

.blog-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
    position: relative;
}

.blog-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.blog-link:hover {
    color: var(--light-gold);
}

.blog-link:hover::after {
    width: 100%;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(clamp(200px, 35vw, 250px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: clamp(12px, 3vw, 20px);
    height: clamp(200px, 35vw, 250px);
    cursor: pointer;
    transition: var(--transition);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    padding: clamp(0.75rem, 2vw, 1rem);
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: flex-end;
}

.gallery-caption {
    color: white;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    color: var(--gold);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: var(--cream);
    opacity: 0.9;
    line-height: 1.5;
}

.contact-form {
    background: rgba(74, 40, 24, 0.3);
    border-radius: clamp(10px, 3vw, 20px);
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(0.8rem, 2vw, 1rem);
    background: rgba(26, 15, 8, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: clamp(6px, 1.5vw, 8px);
    color: var(--cream);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 246, 240, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(26, 15, 8, 0.8);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .programmes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Get Involved */
.get-involved {
    background: linear-gradient(135deg, var(--wood-dark), var(--wood-med), var(--wood-dark));
}

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

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.golden-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 10s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        opacity: 0;
        transform: translate(0, 0);
    }

    50% {
        opacity: 1;
        transform: translate(50px, -100px);
    }
}

/* Footer */
.footer {
    background: var(--wood-dark);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 3rem 0;
}

.foot {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    color: var(--gold);
    text-decoration: none;
}

/* Gallery Actions */
.gallery-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.gallery-all-btn {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 500;
    color: #d4af37;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.gallery-all-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    color: #f4e5bc;
}

.gallery-all-btn .cta-text {
    display: flex;
    align-items: center;
}

.gallery-all-btn .cta-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Full Gallery Popup */
.full-gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15000;
    overflow-y: auto;
}

.full-gallery-popup.active {
    display: block;
}

.full-gallery-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.full-gallery-content {
    position: relative;
    z-index: 15001;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
}

.full-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d4af37;
}

.full-gallery-header h2 {
    color: #d4af37;
    font-size: 2rem;
    margin: 0;
}

.full-gallery-close {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(212, 175, 55, 0.1);
}

.full-gallery-close:hover {
    color: #f4e5bc;
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.full-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(20, 15, 10, 0.8);
    backdrop-filter: blur(10px);
}

.full-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.full-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.full-gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #f4e5bc;
    padding: 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.full-gallery-item:hover .full-gallery-item-overlay {
    transform: translateY(0);
}

/* Fullscreen Image Viewer */
.fullscreen-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
}

.fullscreen-viewer.active {
    display: block;
}

.fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(5px);
}

.fullscreen-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20001;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(212, 175, 55, 0.1);
    z-index: 20002;
}

.fullscreen-close:hover {
    color: #f4e5bc;
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.fullscreen-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 100px;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 20002;
}

.fullscreen-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.fullscreen-nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #f4e5bc;
    transform: scale(1.1);
}

.fullscreen-nav-btn svg {
    width: 24px;
    height: 24px;
}

.fullscreen-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #f4e5bc;
    z-index: 20002;
}

.fullscreen-counter {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.fullscreen-caption {
    font-size: 1rem;
    color: #f4e5bc;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #d4af37;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #f4e5bc;
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f4e5bc;
    font-size: 1.2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .full-gallery-content {
        padding: 1rem;
    }

    .full-gallery-header h2 {
        font-size: 1.5rem;
    }

    .fullscreen-nav-btn {
        width: 50px;
        height: 50px;
    }

    .fullscreen-nav-btn svg {
        width: 20px;
        height: 20px;
    }

    .fullscreen-image-container {
        padding: 60px 10px 80px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
}

.lightbox-image {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInUp 1s;
}

.hero-images {
    animation: fadeInUp 1s 0.3s backwards;
}

/* Mobile */
/* Mobile */
@media (max-width: 768px) {
    /* Navigation is handled in the earlier media query @ 1088 */

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        /* Reduced gap */
        text-align: center;
        padding-top: 0;
        /* Removed top padding */
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-text {
        order: 2;
        padding: 0 1rem;
        /* Add side padding for text */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text .cta-button {
        margin: 1rem auto 0;
    }

    .hero-images {
        order: 1;
        margin-bottom: 0.5rem;
        /* Reduced margin */
        max-width: 90%;
        /* prevent full edge touching */
        margin-left: auto;
        margin-right: auto;
    }

    /* Auto-breathe animation for hero image on mobile */
    @keyframes pulseHero {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.03);
        }
    }

    @keyframes pulseHeroImg {

        0%,
        100% {
            opacity: 1;
        }

        50% {
            opacity: 0.6;
        }
    }

    @keyframes pulseHeroOverlay {

        0%,
        100% {
            opacity: 0;
        }

        50% {
            opacity: 1;
        }
    }

    .hero-image {
        animation: pulseHero 6s infinite ease-in-out;
    }

    .hero-image img {
        animation: pulseHeroImg 6s infinite ease-in-out;
    }

    .hero-image .image-overlay {
        animation: pulseHeroOverlay 6s infinite ease-in-out;
    }

    .hero-prefix {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    /* Tabs */
    .tab-navigation {
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: none;
    }

    .tab-btn {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 1rem;
        text-align: center;
    }

    .tab-btn.active::after {
        display: none;
    }

    .tab-btn.active {
        background: rgba(212, 175, 55, 0.1);
        border-left: 3px solid #d4af37;
    }

    /* Timeline overrides */
    .timeline-item .timeline-content {
        margin: 0 !important;
        margin-left: 50px !important;
        padding: 1.5rem;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-node {
        left: 20px;
    }

    .timeline-item::before {
        left: 20px;
        transform: translateX(-50%) translateY(-30px);
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* Full Gallery & Modals */
    .full-gallery-content {
        padding: 1rem;
    }

    .full-gallery-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .full-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .gallery-modal .gallery-controls {
        width: 95%;
        gap: 1rem;
        padding: 1rem 1.5rem;
        border-radius: 30px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-info {
        display: none;
        /* Hide counter on very small screens if needed, or keep it */
    }

    /* Zen Mode mobile optimization */
    .gallery-image {
        object-fit: contain !important;
        /* Prevent zoomed-in crop */
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 1rem;
    }

    .gallery-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-all-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Accessibility */
.nav-link:focus,
.cta-button:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}