/* =====================================================
   1. FONTS & VARIABLES
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@300;400;600&display=swap');

:root {
    --burgundy: #630D16;
    --accent-red: #8B0000;
    --cream-beige: #FAF9F6;
    --onyx: #1A1A1A;
    --gold: #D4AF37;
    /* Cinematic Vintage Filter: Warm Brownish-Black Tone */
    /* --vintage-filter: sepia(0.5) contrast(1.1) brightness(0.8) saturate(0.6) grayscale(0.1); */
}

/* =====================================================
   8. NAVIGATION BAR (Desktop & Mobile)
   ===================================================== */
.nav-premium {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 85px; 
    padding: 0 60px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    background: rgba(250, 249, 246, 0.98); 
    backdrop-filter: blur(15px); 
    z-index: 2000; 
    border-bottom: 1.5px solid var(--burgundy);
    box-sizing: border-box;
}

/* Mobile Fixes */
@media (max-width: 768px) {
    .nav-premium {
        padding: 0 20px; /* Reduced side padding for small screens */
        height: 70px; /* Slightly shorter height for better screen space */
    }

    .nav-premium .nav-logo {
        font-size: 1.1rem !important; /* Scale down the logo text */
    }

    /* Target the nav-actions container if you use one */
    .nav-actions {
        display: flex;
        gap: 10px; /* Tighter gap between buttons */
    }

    /* Scale down all buttons in the nav */
    .nav-premium a, 
    .nav-premium button {
        padding: 8px 15px !important; /* Smaller buttons */
        font-size: 0.65rem !important; /* Smaller text */
        letter-spacing: 1px !important;
    }
}
/* =====================================================
   2. GLOBAL STYLES & CUSTOM CURSOR
   ===================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    cursor: none; /* Disables default cursor for gold heart */
}

body { 
    background-color: var(--cream-beige); 
    color: var(--burgundy); 
    font-family: 'Poppins', sans-serif; 
    overflow-x: hidden; 
}

#heart-cursor {
    position: fixed;
    width: 22px; 
    height: 22px;
    background: var(--gold);
    clip-path: path('M12 4.419c-2.826-5.695-11.999-4.064-11.999 3.27 0 7.27 9.903 10.938 11.999 15.311 2.096-4.373 12-8.041 12-15.311 0-7.327-9.17-8.972-12-3.27z');
    pointer-events: none; 
    z-index: 10000;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--gold));
}

/* =====================================================
   3. COMPONENTS & BUTTONS
   ===================================================== */
.btn-premium-large {
    display: inline-block;
    background: var(--burgundy);
    color: var(--gold); 
    padding: 18px 45px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn-premium-large:hover {
    background: var(--onyx);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: white;
}

/* =====================================================
   4. HERO & FALLING ANIMATIONS
   ===================================================== */
.heart-particle {
    position: absolute;
    color: var(--gold);
    pointer-events: none;
    animation: fall linear forwards;
}

.falling-heart {
    position: fixed;
    top: -20px;
    font-size: 1.2rem;
    color: var(--gold);
    user-select: none;
    pointer-events: none;
    z-index: 9999;
    animation: fallAnimation linear forwards;
}

@keyframes fall { 
    to { transform: translateY(100vh) rotate(360deg); opacity: 0; } 
}

@keyframes fallAnimation {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* =====================================================
   5. HORIZONTAL FILM-STRIP & FLIP CARDS
   ===================================================== */
.zigzag-section { 
    background-color: var(--burgundy); 
    padding: 120px 0; 
    display: flex; 
    justify-content: center; 
}

.horizontal-flow { 
    display: flex; 
    justify-content: center; 
    gap: 30px; 
    flex-wrap: wrap; 
    width: 95%; 
    max-width: 1200px; 
}

.flip-card { 
    width: 180px; 
    height: 280px; 
    perspective: 1000px; 
}

.flip-inner { 
    position: relative; 
    width: 100%; 
    height: 100%; 
    transition: transform 0.8s; 
    transform-style: preserve-3d; 
}

.flip-card:hover .flip-inner { transform: rotateY(180deg); }

.flip-front, .flip-back { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    backface-visibility: hidden; 
    background: white; 
    padding: 10px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.4); 
}

.flip-front img { 
    width: 100%; 
    height: 220px; 
    object-fit: cover; 
    filter: var(--vintage-filter); 
}

.flip-back { 
    background-color: var(--onyx); 
    color: white; 
    transform: rotateY(180deg); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 20px; 
}

.flip-back p { 
    font-family: 'Playfair Display'; 
    font-style: italic; 
    font-size: 0.9rem; 
}

/* Gallery Vertical Offsets */
.up { transform: translateY(-40px) rotate(-2deg); }
.down { transform: translateY(40px) rotate(2deg); }
.mid { transform: translateY(0px); }

/* =====================================================
   6. REWARDS GRID & CALENDAR
   ===================================================== */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    justify-content: center;
}

.reward-card {
    min-height: 300px;
    background: var(--burgundy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.card-title, .card-date {
    color: var(--burgundy);
    opacity: 1 !important;
    display: block;
}

/* =====================================================
   7. EDITORIAL SECTIONS & FOOTER
   ===================================================== */
.black-section { 
    background-color: var(--onyx); 
    color: white; 
    padding: 120px 20px; 
    text-align: center; 
}

.premium-footer { 
    background: var(--cream-beige); 
    padding: 80px 20px; 
    text-align: center; 
    border-top: 1px solid rgba(0,0,0,0.05); 
}