/* ===== CSS Custom Properties ===== */
:root {
    /* Aurora Colors */
    --aurora-green: #00ff88;
    --aurora-cyan: #00d4ff;
    --aurora-purple: #8b5cf6;
    --aurora-pink: #ff6b9d;

    /* Nordic Blues */
    --nordic-deep: #1e3a5f;
    --nordic-bright: #2563eb;

    /* Warm Accents */
    --warm-orange: #f59e0b;
    --warm-red: #ef4444;

    /* Base Colors */
    --dark-base: #0f172a;
    --dark-surface: #1e293b;
    --dark-card: #334155;

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;

    /* Country Colors */
    --iceland-color: #3b82f6;
    --norway-color: #ef4444;
    --sweden-color: #eab308;
    --denmark-color: #dc2626;
    --finland-color: #06b6d4;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: var(--dark-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Aurora Background */
.aurora {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        var(--dark-base) 0%,
        var(--nordic-deep) 100%
    );
    z-index: 0;
}

.aurora::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    height: 60%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(0, 212, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 20%, rgba(255, 107, 157, 0.2) 0%, transparent 50%);
    animation: auroraMove 15s ease-in-out infinite;
    filter: blur(40px);
}

.aurora::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -30%;
    right: -30%;
    height: 50%;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(0, 255, 136, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 30% 60%, rgba(139, 92, 246, 0.2) 0%, transparent 40%);
    animation: auroraMove 20s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes auroraMove {
    0%, 100% {
        transform: translateX(0) translateY(0) scale(1);
    }
    25% {
        transform: translateX(5%) translateY(-5%) scale(1.05);
    }
    50% {
        transform: translateX(-5%) translateY(5%) scale(0.95);
    }
    75% {
        transform: translateX(3%) translateY(-3%) scale(1.02);
    }
}

/* Stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 160px 120px, white, transparent),
        radial-gradient(2px 2px at 200px 50px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 250px 160px, white, transparent),
        radial-gradient(2px 2px at 300px 90px, rgba(255,255,255,0.5), transparent);
    background-repeat: repeat;
    background-size: 350px 200px;
    animation: twinkle 5s ease-in-out infinite;
    z-index: 1;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    animation: slideIn 1s ease-out forwards;
    opacity: 0;
}

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

.title-line.accent {
    background: linear-gradient(90deg, var(--aurora-green), var(--aurora-cyan), var(--aurora-purple), var(--aurora-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideIn 1s ease-out forwards, gradientShift 5s linear infinite;
    background-size: 200% auto;
}

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

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

.hero-tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

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

.hero-flags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 2.5rem;
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

.flag-bounce {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

.flag-bounce:nth-child(1) { animation-delay: 0s; }
.flag-bounce:nth-child(2) { animation-delay: 0.1s; }
.flag-bounce:nth-child(3) { animation-delay: 0.2s; }
.flag-bounce:nth-child(4) { animation-delay: 0.3s; }
.flag-bounce:nth-child(5) { animation-delay: 0.4s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    z-index: 2;
    animation: fadeIn 1s ease-out 1.2s forwards;
    opacity: 0;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ===== Section Titles ===== */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(90deg, var(--aurora-cyan), var(--aurora-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Why September Section ===== */
.why-september {
    padding: 5rem 2rem;
    background: var(--dark-surface);
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.perk-card {
    background: var(--dark-card);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.perk-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.perk-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--aurora-cyan);
}

.perk-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Fun Facts Ticker ===== */
.ticker-wrapper {
    background: linear-gradient(90deg, var(--aurora-purple), var(--aurora-cyan), var(--aurora-green));
    padding: 1rem 0;
    overflow: hidden;
}

.ticker {
    display: flex;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 3rem;
    font-weight: 600;
    color: var(--dark-base);
    font-size: 1.1rem;
}

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

/* ===== Country Sections ===== */
.country-section {
    position: relative;
    padding: 5rem 2rem;
    min-height: 100vh;
    overflow: hidden;
}

.country-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Iceland */
.iceland .country-bg {
    background: linear-gradient(180deg, var(--dark-base) 0%, #1a365d 50%, var(--dark-surface) 100%);
}

/* Norway */
.norway .country-bg {
    background: linear-gradient(180deg, var(--dark-surface) 0%, #1e3a5f 50%, var(--dark-base) 100%);
}

/* Sweden */
.sweden .country-bg {
    background: linear-gradient(180deg, var(--dark-base) 0%, #1e293b 50%, var(--dark-surface) 100%);
}

/* Denmark */
.denmark .country-bg {
    background: linear-gradient(180deg, var(--dark-surface) 0%, #2d1f3d 50%, var(--dark-base) 100%);
}

/* Finland */
.finland .country-bg {
    background: linear-gradient(180deg, var(--dark-base) 0%, #1a2f1a 50%, var(--dark-surface) 100%);
}

.country-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.country-header {
    text-align: center;
    margin-bottom: 3rem;
}

.country-flag {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.country-name {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.country-tagline {
    font-size: 1.5rem;
    color: var(--aurora-cyan);
    font-style: italic;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Attraction Cards */
.attractions-card,
.info-card,
.fika-card,
.hygge-card,
.ruska-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.attractions-card:hover,
.info-card:hover,
.fika-card:hover,
.hygge-card:hover,
.ruska-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.attractions-card h3,
.info-card h3,
.fika-card h3,
.hygge-card h3,
.ruska-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--aurora-green);
}

.attraction-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.attraction-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.attraction-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.attraction-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.attraction-list p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* September Perks Card */
.september-card .temp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.temp-badge .temp {
    font-size: 2.5rem;
    font-weight: 900;
}

.temp-badge .temp-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.perk-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.perk-list li {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Special Cards */
.fika-card,
.hygge-card,
.ruska-card {
    text-align: center;
}

.fika-card p,
.hygge-card p,
.ruska-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.fika-icons,
.hygge-icons,
.ruska-colors {
    font-size: 2rem;
    letter-spacing: 0.5rem;
}

/* ===== Iceland Geyser Animation ===== */
.geyser-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.geyser {
    position: relative;
    width: 100px;
    height: 200px;
    cursor: pointer;
}

.geyser-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: linear-gradient(180deg, #8b7355, #6b5344);
    border-radius: 50%;
}

.geyser-water {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(100,200,255,0.7));
    border-radius: 50% 50% 0 0;
    transition: height 0.3s ease-out;
}

.geyser:hover .geyser-water {
    height: 150px;
    animation: geyserBurst 0.5s ease-out;
}

.geyser-splash {
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    opacity: 0;
    background: radial-gradient(ellipse, rgba(255,255,255,0.8), transparent);
    border-radius: 50%;
}

.geyser:hover .geyser-splash {
    animation: splashBurst 0.5s ease-out 0.2s forwards;
}

@keyframes geyserBurst {
    0% { height: 0; width: 20px; }
    50% { width: 30px; }
    100% { height: 150px; width: 20px; }
}

@keyframes splashBurst {
    0% { opacity: 0; transform: translateX(-50%) scale(0.5); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.5); }
    100% { opacity: 0; transform: translateX(-50%) scale(2) translateY(-20px); }
}

.geyser-hint {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
}

/* ===== Norway Fjord Parallax ===== */
.fjord-parallax {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    pointer-events: none;
    z-index: 1;
}

.fjord-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.fjord-back {
    height: 200px;
    background: linear-gradient(180deg, transparent, #1e3a5f);
    clip-path: polygon(0 60%, 15% 40%, 30% 55%, 50% 30%, 70% 50%, 85% 35%, 100% 55%, 100% 100%, 0 100%);
}

.fjord-mid {
    height: 150px;
    background: linear-gradient(180deg, transparent, #2d4a6f);
    clip-path: polygon(0 50%, 20% 35%, 40% 55%, 60% 25%, 80% 45%, 100% 30%, 100% 100%, 0 100%);
}

.fjord-front {
    height: 100px;
    background: linear-gradient(180deg, transparent, #3d5a7f);
    clip-path: polygon(0 40%, 25% 60%, 50% 35%, 75% 55%, 100% 40%, 100% 100%, 0 100%);
}

.fjord-water {
    height: 60px;
    background: linear-gradient(180deg, rgba(0, 100, 150, 0.5), rgba(0, 50, 100, 0.8));
}

/* ===== Sweden Floating Islands ===== */
.floating-islands {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.island {
    position: absolute;
    background: linear-gradient(180deg, #2d5a3d, #1a3d2a);
    border-radius: 50% 50% 40% 40%;
}

.island-1 {
    width: 80px;
    height: 40px;
    top: 0;
    left: 0;
    animation: float 4s ease-in-out infinite;
}

.island-2 {
    width: 60px;
    height: 30px;
    top: 60px;
    left: 80px;
    animation: float 5s ease-in-out infinite 0.5s;
}

.island-3 {
    width: 100px;
    height: 50px;
    top: 120px;
    left: 20px;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== Denmark Ferris Wheel ===== */
.tivoli-ride {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.ferris-wheel {
    position: relative;
    width: 120px;
    height: 120px;
    border: 4px solid var(--aurora-purple);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.wheel-spoke {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--aurora-purple);
    transform-origin: left center;
}

.wheel-spoke:nth-child(1) { transform: rotate(0deg); }
.wheel-spoke:nth-child(2) { transform: rotate(45deg); }
.wheel-spoke:nth-child(3) { transform: rotate(90deg); }
.wheel-spoke:nth-child(4) { transform: rotate(135deg); }

.wheel-cabin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--warm-orange);
    border-radius: 4px;
    animation: spin 20s linear infinite reverse;
}

.cabin-1 { top: -8px; left: 50%; transform: translateX(-50%); }
.cabin-2 { top: 15%; right: 5%; }
.cabin-3 { top: 50%; right: -8px; transform: translateY(-50%); }
.cabin-4 { bottom: 15%; right: 5%; }
.cabin-5 { bottom: -8px; left: 50%; transform: translateX(-50%); }
.cabin-6 { bottom: 15%; left: 5%; }
.cabin-7 { top: 50%; left: -8px; transform: translateY(-50%); }
.cabin-8 { top: 15%; left: 5%; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Finland Falling Leaves ===== */
.falling-leaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.leaf {
    position: absolute;
    font-size: 1.5rem;
    animation: fall linear infinite;
    opacity: 0.8;
}

@keyframes fall {
    0% {
        transform: translateY(-10%) rotate(0deg) translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(720deg) translateX(100px);
        opacity: 0.3;
    }
}

/* ===== Weather Section ===== */
.weather-section {
    padding: 5rem 2rem;
    background: var(--dark-surface);
}

.weather-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.weather-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 1rem;
    min-width: 140px;
    transition: transform 0.3s;
}

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

.weather-flag {
    font-size: 2.5rem;
}

.weather-country {
    font-weight: 600;
    color: var(--text-secondary);
}

.thermometer {
    width: 20px;
    height: 80px;
    background: var(--dark-base);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin: 0.5rem 0;
}

.thermo-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--temp);
    background: linear-gradient(180deg, var(--warm-orange), var(--warm-red));
    border-radius: 0 0 10px 10px;
    transition: height 1s ease-out;
}

.weather-temp {
    font-weight: 700;
    color: var(--aurora-cyan);
}

/* ===== Packing Section ===== */
.packing-section {
    padding: 5rem 2rem;
    background: var(--dark-base);
}

.packing-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.packing-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--dark-card);
    border-radius: 2rem;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s;
    cursor: default;
}

.packing-item:hover {
    transform: scale(1.05);
    background: var(--nordic-deep);
}

.packing-icon {
    font-size: 1.5rem;
}

/* ===== Footer ===== */
.footer {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--dark-surface), var(--dark-base));
    text-align: center;
}

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

.viking-ship {
    font-size: 4rem;
    animation: sail 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes sail {
    0%, 100% { transform: translateX(0) rotate(-5deg); }
    50% { transform: translateX(20px) rotate(5deg); }
}

.footer-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 1rem 0;
    background: linear-gradient(90deg, var(--aurora-green), var(--aurora-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.credits {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--dark-card);
    border-radius: 1rem;
    display: inline-block;
}

.special-thanks {
    font-size: 1.1rem;
    color: var(--aurora-pink);
}

.special-thanks strong {
    color: var(--text-primary);
}

.sources {
    margin-top: 2rem;
}

.sources h4 {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.source-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.source-links a {
    color: var(--aurora-cyan);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--aurora-cyan);
    border-radius: 2rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.source-links a:hover {
    background: var(--aurora-cyan);
    color: var(--dark-base);
}

.footer-note {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== Scroll Animations ===== */
.country-section,
.perk-card,
.weather-card,
.packing-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.country-section.visible,
.perk-card.visible,
.weather-card.visible,
.packing-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-flags {
        font-size: 2rem;
        gap: 0.5rem;
    }

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

    .floating-islands,
    .tivoli-ride,
    .fjord-parallax {
        display: none;
    }

    .ticker-item {
        padding: 0 1.5rem;
        font-size: 0.9rem;
    }

    .geyser-container {
        padding: 1rem;
    }
}

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

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

    .perk-card,
    .attractions-card,
    .info-card {
        padding: 1.5rem;
    }
}
