:root {
    --primary-blue: #4a5c82; /* From the floral elements */
    --secondary-pink: #ff8cb3; /* The pink feather color */
    --gold: #d4af37;
    --text-grey: #666;
    --bg-light: #f4f6f9;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fffafb;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E"), linear-gradient(135deg, #ffffff 0%, #fcedf3 100%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-grey);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Animations */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 15s infinite ease-in-out alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #d8caba; /* Warm sand/mocha */
    top: -100px;
    left: -100px;
    opacity: 0.6;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #d3d9ce; /* Soft sage/olive */
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
    opacity: 0.6;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #e0d5c8; /* Warm taupe */
    top: 40%;
    left: 50%;
    animation-delay: -10s;
    opacity: 0.6;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 60px) scale(1.1); }
}

/* Container */
.invitation-container {
    width: 100%;
    max-width: 480px;
    padding: 20px;
    margin: 40px 0;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

/* Acrylic Card */
.acrylic-card {
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.85) 0%, rgba(253, 235, 241, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 220px 220px 15px 15px; /* Arch shape */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: entrance 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
}

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

/* Pseudo-element for the frosted white half-background shown in the picture */
.acrylic-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 55%;
    background: linear-gradient(to top right, rgba(255, 255, 255, 0.95) 0%, rgba(255,255,255,0.4) 100%);
    z-index: 0;
    transform: rotate(-15deg);
    transform-origin: bottom left;
}

/* Glass shine animation overlay */
.acrylic-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg) translateX(-100%);
    animation: shine 6s infinite ease-in-out;
    z-index: 10;
    pointer-events: none;
}

@keyframes shine {
    0%, 20% { transform: rotate(30deg) translateX(-100%); }
    80%, 100% { transform: rotate(30deg) translateX(100%); }
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 120px 30px 120px; /* Increased top and bottom padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Top Decoration */
.top-decor {
    margin-bottom: 20px;
}
.doves-img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Bottom Decoration */
.bottom-decor {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none;
}
.bottom-rings-img {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Text Intro */
.text-intro {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 25px;
}

/* Names */
.names-wrapper {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #4a4a4a;
    line-height: 1.1;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
}

.ampersand {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin: 5px 0;
}

/* Date Section */
.date-section {
    margin-bottom: 35px;
    width: 100%;
}

.month {
    font-size: 1rem;
    letter-spacing: 5px;
    font-weight: 600;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.date-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.date-display::before, .date-display::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

.date-display::before { left: 10%; }
.date-display::after { right: 10%; }

.day-name {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-grey);
}

.day-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    color: #4a4a4a;
}

.time-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.time-placeholder {
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-grey);
    border-bottom: 1px solid var(--text-grey);
    padding-bottom: 2px;
}

.year {
    font-size: 1rem;
    letter-spacing: 5px;
    font-weight: 600;
    color: var(--text-grey);
    margin-top: 15px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
    width: 100%;
}

.time-unit {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 10px 5px;
    border-radius: 12px;
    min-width: 65px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    backdrop-filter: blur(5px);
}

.time-unit span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.time-unit label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    color: #888;
}

/* Location Section */
.location-section {
    width: 100%;
    padding-top: 25px;
}

.address-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    line-height: 1.4;
    margin-bottom: 20px;
}
.highlight-gold {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15em;
    letter-spacing: 1px;
}

/* Map embed */
.map-embed-wrapper {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin: 14px 0 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.map-embed-wrapper iframe {
    display: block;
    border-radius: 14px;
}

/* Map pill buttons */
.map-btn-row {
    display: flex;
    gap: 10px;
    width: 100%;
}
.btn-maps-pill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
}
.btn-maps-pill.google,
.btn-maps-pill.yandex {
    background: linear-gradient(135deg, #f4b4c9 0%, #fca5c5 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(252, 165, 197, 0.4);
}
.btn-maps-pill.google:hover,
.btn-maps-pill.yandex:hover {
    box-shadow: 0 6px 20px rgba(252, 165, 197, 0.6);
    background: linear-gradient(135deg, #fca5c5 0%, #ff8cb3 100%);
    transform: translateY(-2px);
}
.map-logo {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
}

.btn-map {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #f4b4c9 0%, #fca5c5 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(252, 165, 197, 0.4);
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 165, 197, 0.6);
    background: linear-gradient(135deg, #fca5c5 0%, #ff8cb3 100%);
}

.btn-map i {
    margin-right: 8px;
}

/* Floral Decor Elements */
.floral {
    position: absolute;
    width: 200px;
    height: 200px;
    object-fit: cover;
    z-index: 1; /* Moved behind card-content */
    pointer-events: none;
    mix-blend-mode: darken;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.18));
    -webkit-mask-image: radial-gradient(circle at bottom left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(circle at bottom left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 75%);
}

.floral-bottom-left {
    bottom: -10px;
    left: -10px;
}

.floral-bottom-right {
    bottom: -10px;
    right: -10px;
    transform: scaleX(-1);
}

.floral-top-left {
    top: 10px;
    left: 10px;
    transform: scaleY(-1);
}

.floral-top-right {
    top: 10px;
    right: 10px;
    transform: scale(-1, -1);
}

/* Responsive */
@media (max-width: 480px) {
    .acrylic-card {
        border-radius: 160px 160px 15px 15px;
    }
    
    .card-content {
        padding: 100px 15px 120px; /* Preserve spacing for top doves and bottom flowers/rings */
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    /* Date Section v2 */
    .date-row-v2 { gap: 8px; }
    .date-side-left, .date-side-right { gap: 8px; }
    .date-center {
        font-size: 3.2rem;
        padding: 0;
    }
    .gold-line { width: 25px; }
    .date-side-left .text, .date-side-right .text {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    /* Countdown */
    .countdown { gap: 10px; }
    .time-unit {
        min-width: 55px;
        padding: 8px;
    }
    .time-unit span { font-size: 1.2rem; }
    .time-unit label { font-size: 0.55rem; }
    
    /* Map Buttons */
    .map-btn-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-maps-pill {
        width: 100%;
        max-width: 260px;
        padding: 14px;
        justify-content: center;
    }
}

/* New Features Styles */
.music-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.music-toggle:hover { transform: scale(1.1); }
.music-toggle.playing { animation: none; color: var(--gold); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); } 70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }

#petals-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 99; overflow: hidden;
}
.petal {
    position: absolute;
    background: linear-gradient(135deg, #ff8cb3, #ffb6c1, #f4b4c9); /* Pink gradient leaf */
    border-radius: 0 50% 50% 50%;
    opacity: 0;
    animation: fallDown 8s linear forwards;
    box-shadow: inset 1px 1px 3px rgba(255,255,255,0.4), 0 2px 4px rgba(0,0,0,0.1);
}
@keyframes fallDown {
    0% { transform: translateY(-5vh) translateX(0) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(110vh) translateX(var(--drift)) rotate(720deg) scale(1.2); opacity: 0; }
}

.dancing-couple {
    position: absolute;
    opacity: 0;
    animation: floatCouple 18s ease-in-out forwards;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    z-index: 1; /* Stay behind the main card but in front of background */
}
@keyframes floatCouple {
    0% { transform: translateY(-10vh) translateX(0) scale(0.7); opacity: 0; }
    10% { opacity: 0.35; }
    30% { transform: translateY(20vh) translateX(30px) scale(0.8); opacity: 0.4; }
    70% { transform: translateY(80vh) translateX(-30px) scale(0.9); opacity: 0.4; }
    90% { opacity: 0.35; }
    100% { transform: translateY(120vh) translateX(0) scale(1); opacity: 0; }
}


.action-buttons {
    display: flex; justify-content: center; gap: 10px; margin-top: 10px; flex-wrap: wrap; width: 100%;
}
.btn-calendar {
    display: inline-block; padding: 14px 28px;
    background: white; color: var(--primary-blue);
    border-radius: 30px; font-weight: 600; font-size: 0.95rem; cursor: pointer;
    border: 1px solid var(--primary-blue); transition: all 0.3s;
}
.btn-calendar:hover { background: var(--primary-blue); color: white; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(74, 92, 130, 0.2); }

.rsvp-form { margin-top: 30px; border-top: 1px dashed rgba(0,0,0,0.1); padding-top: 20px; width: 100%; }
.rsvp-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: #444; margin-bottom: 15px; }
.rsvp-form input { width: 100%; padding: 12px 15px; border-radius: 25px; border: 1px solid rgba(0,0,0,0.1); font-family: 'Montserrat', sans-serif; margin-bottom: 15px; outline: none; background: rgba(255,255,255,0.7); box-sizing: border-box; }
.btn-rsvp { width: 100%; padding: 14px; background: #0088cc; color: white; border: none; border-radius: 25px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3); }
.btn-rsvp:hover { background: #0077b3; transform: translateY(-2px); }

/* Welcome Screen */
.welcome-screen {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #111;
    color: white;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}
.welcome-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}
.welcome-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.5);
}
.welcome-heart {
    font-size: 1.2rem;
    color: white;
}
.welcome-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 2px;
    margin: 10px 0;
}
.unlock-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.7);
    background: transparent;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}
.unlock-btn:hover {
    background: white;
    color: black;
}
.welcome-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px 5px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    margin: 15px 0 20px;
}
.day-name { font-size: 0.7rem; color: #888; font-weight: 600; margin-bottom: 5px; }
.calendar-grid span { font-size: 1.1rem; color: #333; font-weight: 600; display: flex; justify-content: center; align-items: center; height: 35px; }
.calendar-grid .heart-date {
    position: relative;
    color: white;
}
.calendar-grid .heart-date i {
    position: absolute;
    font-size: 2.2rem;
    color: #c41c30; /* Dark red heart */
    z-index: 1;
}
.calendar-grid .heart-date .date-num {
    position: relative;
    z-index: 2;
    color: white;
}
.time-placeholder {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--text-grey);
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: block;
    width: 100%;
}

/* Share Button */
.btn-share {
    width: 100%; padding: 14px; background: #0088cc; color: white; border: none; border-radius: 25px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3); margin-top: 10px;
}
.btn-share:hover { background: #0077b3; transform: translateY(-2px); }

/* Countdown Section Styles */
.countdown-section {
    margin-top: 30px;
    text-align: center;
}
.countdown-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #333;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    color: #c41c30;
}
.countdown .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
}
.countdown .time-unit span {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
}
.countdown .time-unit label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #c41c30;
    letter-spacing: 1px;
    margin-top: 5px;
    text-transform: uppercase;
}
.countdown .colon {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 15px;
}
.countdown-footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}
.rings-icon {
    margin: 20px 0;
}

/* Map Buttons */
.map-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 20px;
}

/* Calendar inside main card */
.calendar-inner {
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

/* Countdown label */
.countdown-label {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: #8a6a3a;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* ===== CALENDAR CARD ===== */
.calendar-card {
    width: 100%;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 28px 24px 24px;
    margin-top: 20px;
}

.calendar-header {
    text-align: center;
    margin-bottom: 18px;
}
.calendar-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #444;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px 2px;
    text-align: center;
}
.cal-day-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: #aaa;
    padding-bottom: 8px;
}
.calendar-grid span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    border-radius: 50%;
}
.calendar-grid .heart-date {
    position: relative;
}
.calendar-grid .heart-date i {
    position: absolute;
    font-size: 2rem;
    color: #c41c30;
}
.calendar-grid .heart-date .date-num {
    position: relative;
    z-index: 2;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Card 2 buttons */
.card2-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}
.btn-map-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border: 1px solid rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.5);
    color: #444;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
}
.btn-map-outline:hover {
    background: rgba(255,255,255,0.9);
    border-color: #aaa;
}
.btn-outline {
    width: 100%;
    padding: 15px;
    border: 1px solid #555;
    background: transparent;
    color: #333;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    text-transform: uppercase;
    box-sizing: border-box;
}
.btn-outline:hover {
    background: #f5f5f5;
    border-color: #000;
    color: #000;
}
/* New Date Layout v2 */
.date-section-v2 {
    margin: 35px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.month-v2 {
    font-size: 1.1rem;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}
.date-row-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}
.date-side-left, .date-side-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.gold-line {
    width: 45px;
    height: 1.5px;
    background: linear-gradient(to right, rgba(212,175,55,0), rgba(212,175,55,1), rgba(212,175,55,0));
}
.date-side-left .text, .date-side-right .text {
    font-size: 0.8rem;
    letter-spacing: 3px;
    color: #777;
    font-weight: 600;
}
.time-underlined {
    border-bottom: 1px dashed rgba(212,175,55,0.6);
    padding-bottom: 4px;
}
.date-center {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: #333;
    line-height: 0.9;
    padding: 0 10px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.06);
}
.year-v2 {
    font-size: 1.2rem;
    letter-spacing: 8px;
    color: #555;
    margin-top: 15px;
}
