/* ============================================
   GLOBAL STYLES & VARIABLES
   ============================================ */

:root {
    /* Color Palette - Romantic but Modern */
    --rose-gold: #E8B4B8;
    --warm-pink: #F4C2C2;
    --deep-burgundy: #8B4A6B;
    --cream: #FFF8F0;
    --soft-pink: #FFE5E5;
    --dark-text: #3D2C3D;
    --light-text: #FFFFFF;
    
    /* Pride Colors (for subtle accents) */
    --pride-red: #FF0018;
    --pride-orange: #FFA52C;
    --pride-yellow: #FFFF41;
    --pride-green: #008018;
    --pride-blue: #0000F9;
    --pride-purple: #86007D;
    
    /* Typography */
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-pink) 100%);
    overflow-x: hidden;
    line-height: 1.6;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   PASSWORD GATE
   ============================================ */

.password-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--rose-gold) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.password-gate.hidden {
    opacity: 0;
    visibility: hidden;
}

.gate-content {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
}

.gate-hearts {
    margin-bottom: 20px;
}

.gate-hearts .heart {
    font-size: 2rem;
    margin: 0 10px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.gate-hearts .heart:nth-child(2) {
    animation-delay: 1s;
}

.gate-hearts .heart:nth-child(3) {
    animation-delay: 2s;
}

.gate-title {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--deep-burgundy);
    margin-bottom: 10px;
}

.gate-subtitle {
    color: var(--dark-text);
    margin-bottom: 30px;
    font-size: 1rem;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#passwordInput {
    padding: 15px;
    border: 2px solid var(--rose-gold);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

#passwordInput:focus {
    outline: none;
    border-color: var(--deep-burgundy);
}

.gate-button {
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--rose-gold) 100%);
    color: var(--light-text);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gate-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 74, 107, 0.4);
}

.error-message {
    color: #d32f2f;
    margin-top: 10px;
    font-size: 0.9rem;
    min-height: 20px;
}

/* ============================================
   FLOATING DECORATIVE ELEMENTS
   ============================================ */

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    opacity: 0.6;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.floating-element:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Floating animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) translateX(10px) rotate(5deg);
    }
    66% {
        transform: translateY(-15px) translateX(-10px) rotate(-5deg);
    }
}

@keyframes drift {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    25% {
        transform: translateX(50px) translateY(-30px) rotate(90deg);
    }
    50% {
        transform: translateX(100px) translateY(-60px) rotate(180deg);
    }
    75% {
        transform: translateX(50px) translateY(-90px) rotate(270deg);
    }
    100% {
        transform: translateX(0) translateY(-120px) rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Emoji-based floating elements */
.floating-heart {
    font-size: 2rem;
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-yarn {
    font-size: 1.5rem;
    animation: drift 15s linear infinite;
}

.floating-paw {
    font-size: 1.8rem;
    animation: floatSlow 8s ease-in-out infinite;
}

.floating-snowflake {
    font-size: 1.5rem;
    animation: drift 12s linear infinite;
}

.floating-stethoscope {
    font-size: 1.5rem;
    animation: floatSlow 10s ease-in-out infinite;
}

.floating-rainbow {
    font-size: 1.2rem;
    animation: floatSlow 7s ease-in-out infinite;
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    position: relative;
    z-index: 2;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--soft-pink) 50%, var(--warm-pink) 100%);
    padding: var(--section-padding);
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-script);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--deep-burgundy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease-out;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--rose-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--dark-text);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    font-size: 2rem;
    color: var(--rose-gold);
    animation: bounce 2s infinite;
    margin-top: 40px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
    padding: var(--section-padding);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    color: var(--deep-burgundy);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--dark-text);
    margin-bottom: 40px;
    opacity: 0.8;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */

.photo-gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 74, 107, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '❤️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
}

/* ============================================
   SKI TRIP SECTION
   ============================================ */

.ski-trip {
    background: linear-gradient(180deg, var(--soft-pink) 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1.5rem;
    opacity: 0.7;
    animation: snowFall 10s linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 30%; animation-delay: 2s; }
.snowflake:nth-child(3) { left: 50%; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 70%; animation-delay: 6s; }
.snowflake:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes snowFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

.ski-trip .container {
    position: relative;
    z-index: 2;
}

.ski-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--deep-burgundy);
    font-family: var(--font-script);
}

.stat-label {
    font-size: 1rem;
    color: var(--dark-text);
    margin-top: 10px;
}

.ski-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--rose-gold) var(--cream);
    margin: 40px 0;
}

.ski-carousel::-webkit-scrollbar {
    height: 8px;
}

.ski-carousel::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
}

.ski-carousel::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 10px;
}

.ski-carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.ski-carousel-item:hover {
    transform: scale(1.05);
}

.ski-carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.ski-caption {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.8;
    font-style: italic;
}

/* ============================================
   TRIP SECTIONS (General Styles)
   ============================================ */

.trip-section {
    position: relative;
    overflow: hidden;
}

.trip-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--rose-gold) var(--cream);
    margin: 40px 0;
}

.trip-carousel::-webkit-scrollbar {
    height: 8px;
}

.trip-carousel::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
}

.trip-carousel::-webkit-scrollbar-thumb {
    background: var(--rose-gold);
    border-radius: 10px;
}

.trip-carousel-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.trip-carousel-item:hover {
    transform: scale(1.05);
}

.trip-carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trip-caption {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.8;
    font-style: italic;
}

/* Thanksgiving 2025 Section */
.thanksgiving-section {
    background: linear-gradient(135deg, #FFE5CC 0%, #FFD4A3 100%);
}

/* Fun in DC Section */
.dc-section {
    background: linear-gradient(135deg, #E8F4F8 0%, #D4E8F0 100%);
}

/* The One with Texas Section */
.texas-section {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
}

/* Love in Seattle Section */
.seattle-section {
    background: linear-gradient(135deg, #F0F8FF 0%, #E0E8F0 100%);
}

/* The First Visit Section */
.first-visit-section {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--warm-pink) 100%);
}

/* New Years 2026 Section */
.new-years-section {
    background: linear-gradient(135deg, #FFE5F1 0%, #FFD6E8 100%);
}

/* ============================================
   TAARA SECTION
   ============================================ */

.taara-section {
    background: var(--cream);
}

.taara-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.taara-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.taara-item:hover {
    transform: translateY(-5px) rotate(2deg);
}

.taara-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.taara-message {
    text-align: center;
    font-size: 1.5rem;
    color: var(--deep-burgundy);
    font-family: var(--font-script);
    margin-top: 30px;
}

.paw-print {
    font-size: 2rem;
    animation: float 2s ease-in-out infinite;
    display: inline-block;
    margin: 0 10px;
}

.paw-print:nth-child(2) {
    animation-delay: 0.5s;
}

/* ============================================
   DISTANCE SECTION
   ============================================ */

.distance-section {
    background: linear-gradient(135deg, var(--soft-pink) 0%, var(--warm-pink) 100%);
}

.distance-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 60px auto;
    position: relative;
    padding: 40px 20px;
}

.location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.location-dot {
    width: 60px;
    height: 60px;
    background: var(--deep-burgundy);
    border-radius: 50%;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(139, 74, 107, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 74, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(139, 74, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 74, 107, 0);
    }
}

.location-label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 1.1rem;
}

.heart-connection {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
}

.heart-connection::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), transparent);
}

.heart-pulse {
    width: 20px;
    height: 20px;
    background: var(--rose-gold);
    border-radius: 50%;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.heart-pulse:nth-child(2) {
    animation-delay: 0.5s;
}

.heart-pulse:nth-child(3) {
    animation-delay: 1s;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

.distance-message {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-text);
    max-width: 600px;
    margin: 40px auto 0;
    line-height: 1.8;
}

/* ============================================
   COUNTDOWN SECTION
   ============================================ */

.countdown-section {
    background: var(--cream);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--deep-burgundy);
    font-family: var(--font-script);
    animation: heartbeat 2s ease-in-out infinite;
    line-height: 1;
}

.countdown-label {
    font-size: 1rem;
    color: var(--dark-text);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-separator {
    font-size: 3rem;
    color: var(--rose-gold);
    font-weight: 300;
}

.countdown-date {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark-text);
    font-family: var(--font-script);
    margin-top: 20px;
}

/* ============================================
   QUESTION SECTION
   ============================================ */

.question-section {
    background: linear-gradient(135deg, var(--deep-burgundy) 0%, var(--rose-gold) 100%);
    color: var(--light-text);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.question-section .section-title {
    color: var(--light-text);
}

.question-subtitle {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-family: var(--font-script);
    margin: 40px 0;
    color: var(--light-text);
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.yes-button {
    padding: 25px 60px;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.yes-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
}

.yes-button:active {
    transform: scale(1.05);
}

.button-hearts {
    margin-left: 10px;
    animation: float 2s ease-in-out infinite;
}

.no-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    position: relative;
}

.no-button:hover {
    transform: translateX(calc(var(--mouse-x, 0) * 20px)) translateY(calc(var(--mouse-y, 0) * 20px));
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   CELEBRATION
   ============================================ */

.celebration {
    text-align: center;
    margin-top: 60px;
    animation: fadeInUp 1s ease-out;
}

.celebration-title {
    font-family: var(--font-script);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--light-text);
    margin-bottom: 30px;
}

.celebration-message {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--light-text);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--pride-red);
    animation: confettiFall 3s linear forwards;
}

.confetti:nth-child(2n) { background: var(--pride-orange); }
.confetti:nth-child(3n) { background: var(--pride-yellow); }
.confetti:nth-child(4n) { background: var(--pride-green); }
.confetti:nth-child(5n) { background: var(--pride-blue); }
.confetti:nth-child(6n) { background: var(--pride-purple); }

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-text);
    color: var(--light-text);
    text-align: center;
    padding: 40px 20px;
}

.footer-date {
    margin-top: 10px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ============================================
   MUSIC PLAYER
   ============================================ */

.music-player {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.music-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--deep-burgundy);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.1);
}

.music-toggle.playing {
    animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 15px;
    }
    
    .gate-content {
        padding: 30px 20px;
    }
    
    .gate-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .ski-stats {
        gap: 15px;
    }
    
    .stat-card {
        min-width: 120px;
        padding: 20px;
    }
    
    .distance-visual {
        flex-direction: column;
        gap: 40px;
    }
    
    .heart-connection {
        flex-direction: row;
        width: 100%;
    }
    
    .heart-connection::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        background: linear-gradient(180deg, transparent, var(--rose-gold), transparent);
    }
    
    .countdown-container {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
    
    .yes-button {
        padding: 20px 40px;
        font-size: 1.5rem;
    }
    
    .no-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .music-player {
        bottom: 20px;
        right: 20px;
    }
    
    .music-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .ski-carousel-item {
        flex: 0 0 250px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus {
    outline: 3px solid var(--deep-burgundy);
    outline-offset: 2px;
}
