:root {
    /* Color Palette */
    --base-color: #FAFAFA;
    --main-color: #E6DCCA; /* Warm Beige */
    --accent-color: #C5A059; /* Champagne Gold */
    --text-color: #4A4A4A;
    --white: #FFFFFF;
    --coral-pink: #F8C3CD; /* Optional accent */
    
    /* Typography */
    --font-script: 'Great Vibes', cursive;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Zen Old Mincho', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-serif);
    background-color: var(--base-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 400;
}

.script-font {
    font-family: var(--font-script);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    /* Gradient placeholder since image gen failed */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Add a pseudo-element for a placeholder image effect if needed */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Using a high-quality placeholder image covering the screen */
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    opacity: 0.8;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3); /* Light overlay to ensure text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 5rem;
    color: var(--text-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.names {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--text-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: floating 2s infinite ease-in-out;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-family: var(--font-sans);
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background-color: var(--text-color);
}

@keyframes floating {
    0% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
    100% { transform: translate(-50%, 0); }
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 40px;
}

/* Countdown Section */
.countdown-section {
    background-color: var(--white);
}

.date-display {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 40px;
    color: var(--text-color);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span:first-child {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-color);
    line-height: 1;
}

.time-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-top: 5px;
}

/* Greeting Section */
.greeting-section {
    background-color: var(--base-color);
    /* Subtle paper texture effect if image fails */
    background-image: radial-gradient(#E6DCCA 1px, transparent 1px);
    background-size: 20px 20px;
}

.message-box {
    font-size: 1.1rem;
    line-height: 2.2;
}

.message-box p {
    margin-bottom: 30px;
}

/* Info Section */
.info-section {
    background-color: var(--white);
}

.details {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.detail-item h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.map-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Footer */
.footer {
    padding: 50px 0;
    background-color: var(--main-color);
    color: var(--white);
    text-align: center;
}

.footer p {
    font-family: var(--font-sans);
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .time-box span:first-child {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .details {
        flex-direction: column;
        gap: 40px;
    }
}
