/* ============================================
   PAJTÁS NAPOK - Modern Website Styles
   Color Palette from bg.svg:
   - Pink/Magenta: #F472B6
   - Teal/Cyan: #38BDF8
   - Coral/Peach: #FDA4AF
   - Light Purple: #C4B5FD
   ============================================ */

/* CSS Variables */
:root {
    --color-pink: #F472B6;
    --color-teal: #38BDF8;
    --color-coral: #FDA4AF;
    --color-purple: #C4B5FD;
    --color-dark: #1a1625;
    --color-light: #fafafa;
    --color-gray: #9ca3af;

    /* Lighter background variations */
    --bg-primary: #1a1625;
    --bg-secondary: #241f2e;
    --bg-accent: #2d2640;
    --bg-card: rgba(255, 255, 255, 0.05);

    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --section-padding: clamp(80px, 15vh, 160px);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

/* Custom Cursor */
.cursor,
.cursor-follower {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out-expo);
}

body:hover .cursor,
body:hover .cursor-follower {
    opacity: 1;
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                opacity 0.3s var(--ease-out-expo);
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
}

@media (hover: none) {
    .cursor, .cursor-follower {
        display: none;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px clamp(20px, 5vw, 60px);
    mix-blend-mode: difference;
    transition: padding 0.4s var(--ease-out-expo);
}

.nav.scrolled {
    padding: 15px clamp(20px, 5vw, 60px);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-light);
    overflow: hidden;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--color-pink);
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover::before {
    transform: translateY(-100%);
}

.nav-links a span,
.nav-links a {
    display: inline-block;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
    transform: translateY(-100%);
}

.nav-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.nav-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-light);
    transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

.nav-menu-btn.active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-menu-btn.active span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-out-expo), visibility 0.5s;
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-menu-links a {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), color 0.3s;
}

.mobile-menu.active .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-links a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-links a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-links a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-links a:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu-links a:hover {
    color: var(--color-pink);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .nav-menu-btn {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(ellipse 100% 80% at 20% 10%, rgba(244, 114, 182, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 90% 90%, rgba(56, 189, 248, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(196, 181, 253, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 70% 30%, rgba(253, 164, 175, 0.25) 0%, transparent 50%);
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-title-wrapper {
    overflow: hidden;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    font-size: clamp(60px, 15vw, 180px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--color-light) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(100%);
    animation: revealTitle 1.2s var(--ease-out-expo) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.35s; }

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

.hero-subtitle {
    margin-bottom: 50px;
}

.hero-subtitle p {
    font-size: clamp(16px, 2.5vw, 24px);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-location {
    color: var(--color-coral);
    margin-top: 10px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--color-light);
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.8s forwards;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(244, 114, 182, 0.3);
}

.hero-cta svg {
    transition: transform 0.4s var(--ease-out-expo);
}

.hero-cta:hover svg {
    transform: translateY(4px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

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

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Sections Common */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-pink);
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.split-text {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.split-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse 80% 100% at 80% 0%, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about-text {
    max-width: 900px;
}

.large-text {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 300;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.about-card {
    padding: 40px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(56, 189, 248, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.5s var(--ease-out-expo), background 0.5s, border-color 0.5s;
}

.about-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15) 0%, rgba(56, 189, 248, 0.15) 100%);
    border-color: rgba(244, 114, 182, 0.4);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--color-pink);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Events Section */
.events {
    background: var(--bg-primary);
    position: relative;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 10% 50%, rgba(244, 114, 182, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 90% 80%, rgba(196, 181, 253, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Next Season Banner */
.next-season-banner {
    margin-bottom: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2) 0%, rgba(56, 189, 248, 0.2) 50%, rgba(196, 181, 253, 0.2) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.next-season-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-year {
    display: inline-block;
    font-size: clamp(48px, 10vw, 80px);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-teal) 50%, var(--color-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.next-season-banner h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.next-season-banner p {
    font-size: 16px;
    color: var(--color-gray);
    max-width: 500px;
    margin: 0 auto;
}

.events-intro {
    max-width: 600px;
    margin-bottom: 60px;
}

.events-intro p {
    font-size: 18px;
    color: var(--color-gray);
}

.events-timeline {
    position: relative;
    max-width: 900px;
}

.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.event-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.event-item::before {
    content: '';
    position: absolute;
    left: 54px;
    top: 24px;
    width: 13px;
    height: 13px;
    background: var(--color-pink);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.5);
}

.event-date {
    flex-shrink: 0;
    width: 100px;
    text-align: center;
}

.event-date .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 0.1em;
}

.event-date .day {
    display: block;
    font-size: 12px;
    color: var(--color-gray);
    margin-top: 4px;
}

.event-content {
    flex: 1;
    display: flex;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: transform 0.5s var(--ease-out-expo), border-color 0.5s, background 0.5s;
}

.event-content:hover {
    transform: translateX(10px);
    border-color: rgba(56, 189, 248, 0.4);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1) 0%, rgba(196, 181, 253, 0.08) 100%);
}

.event-content.special {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.15), rgba(56, 189, 248, 0.15));
    border-color: rgba(244, 114, 182, 0.3);
}

.event-image-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.event-content:hover .event-image-wrapper img {
    transform: scale(1.1);
}

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

.event-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-info p {
    font-size: 15px;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.event-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(56, 189, 248, 0.15);
    color: var(--color-teal);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
}

.event-tag.past {
    background: rgba(196, 181, 253, 0.15);
    color: var(--color-purple);
}

.special-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-pink);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }

    .event-item::before {
        left: 14px;
    }

    .event-item {
        flex-direction: column;
        gap: 20px;
        padding-left: 50px;
    }

    .event-date {
        width: auto;
        text-align: left;
    }

    .event-content {
        flex-direction: column;
    }

    .event-image-wrapper {
        width: 100%;
        height: 200px;
    }
}

/* Gallery Section */
.gallery {
    padding-bottom: 0;
    overflow: hidden;
    background: var(--bg-accent);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse 70% 100% at 30% 0%, rgba(253, 164, 175, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.gallery-intro {
    font-size: 18px;
    color: var(--color-gray);
    margin-bottom: 60px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

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

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

.gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery-item {
        width: 300px;
        height: 220px;
    }
}

/* Location Section */
.location {
    background: var(--bg-secondary);
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(56, 189, 248, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-card {
    padding: 50px;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.08) 0%, rgba(196, 181, 253, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
}

.location-card h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.location-address {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 14px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-coral);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-pink);
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(244, 114, 182, 0.4);
}

.btn svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover svg {
    transform: translate(3px, -3px);
}

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

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

@media (max-width: 900px) {
    .location-content {
        grid-template-columns: 1fr;
    }

    .location-card {
        padding: 30px;
    }
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(244, 114, 182, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 50px;
    width: auto;
    opacity: 0.8;
}

.footer-info p {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--color-light);
    transition: border-color 0.3s, color 0.3s, transform 0.4s var(--ease-out-expo);
}

.social-link:hover {
    border-color: var(--color-pink);
    color: var(--color-pink);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-gray);
}

/* Magnetic effect class */
.magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 100px;
}

/* Selection */
::selection {
    background: var(--color-pink);
    color: var(--color-dark);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-pink);
    outline-offset: 4px;
}

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

    html {
        scroll-behavior: auto;
    }

    .gallery-track {
        animation: none;
    }
}
