:root {
    --forest-deep: #0f241e;
    --forest-green: #1A3C34;
    --accent-gold: #c5a059;
    --text-light: #F0F2F0;
    --card-bg: #F4F1EA;
    --text-dark: #2c2c2c;
}

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

body {
    background-color: var(--forest-deep);
    color: var(--text-light);
    /* Fontul principal pentru text simplu este acum LATO */
    font-family: 'Lato', sans-serif; 
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* FUNDAL */
.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 50% 30%, #2d4f3c 0%, #1A3C34 40%, #051410 100%);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.1); /* Mai puțin întunecat pentru a fi mai elegant */
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 700px;
    width: 100%;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 80px;
}

/* Tipografie Elegantă */
.intro-text {
    /* Folosim Playfair Italic pentru introducere */
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    color: #aebdb5;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-title {
    /* Titlu mare și elegant */
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600; /* Puțin mai gros */
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    line-height: 1.1;
    letter-spacing: 2px;
}

/* Card Eveniment */
.event-card {
    background-color: var(--card-bg);
    color: var(--text-dark);
    padding: 40px 20px;
    border-radius: 4px; 
    margin-bottom: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    position: relative;
    border-top: 4px solid var(--accent-gold); /* Linie aurie elegantă sus */
}

.date-display {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.day { 
    font-size: 3.5rem; 
    font-weight: 600; 
    color: var(--forest-green);
    line-height: 1;
    display: block;
}

.month { font-size: 1.2rem; text-transform: uppercase; letter-spacing: 3px; display: block; margin-top: 5px; }
.year { font-size: 1.1rem; color: #666; display: block; margin-top: 5px; font-family: 'Lato', sans-serif; }

.venue { font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 5px;}
.city { font-weight: 300; font-size: 1rem; color: #555; }

/* Timer */
#countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 60px;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.3); /* Bordură aurie fină */
    padding: 15px 10px;
    min-width: 75px;
    border-radius: 4px;
}

.time-number { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; 
    color: #094735; 
    display: block; 
    line-height: 1.2; 
}
.time-label { font-family: 'Lato', sans-serif; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: #ccc; margin-top: 5px; }

/* Liste Nume */
.people-section { margin-bottom: 40px; }

.people-section h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.names-list {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* RSVP */
.rsvp-section {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    display: inline-block;
    margin-top: 20px;
    background: rgba(0,0,0,0.2);
}

.rsvp-date {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    color: var(--accent-gold);
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Responsive Mobil */
@media (max-width: 600px) {
    .main-title { font-size: 3rem; }
    .day { font-size: 2.8rem; }
    #countdown { gap: 10px; }
    .time-box { min-width: 60px; padding: 10px 5px; }
    .time-number { font-size: 1.8rem; }
    .intro-text { font-size: 1.5rem; }
}