/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFF9F6; /* Soft warm cream */
    color: #4A3E3D; /* Deep muted rose/brown for readable text */
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Overrides */
h1, h2, h3, .cursive-text, .pre-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Replace with your own high-res background image link or local path */
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=2070') no-repeat center center/cover;
    color: #fff;
    padding: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(94, 73, 73, 0.25); /* Subtle warm overlay to preserve text contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 2s ease-in-out;
}

.pre-title {
    font-size: 1.2rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
}

.names {
    font-size: 4.5rem;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}

.date-display {
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.1em;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    display: inline-block;
    padding: 10px 30px;
    margin-bottom: 25px;
}

.location {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    font-weight: 300;
}

.scroll-btn {
    display: block;
    margin-top: 40px;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Details Section */
.details-section {
    padding: 100px 20px;
    text-align: center;
    background-color: #FAF0EC; /* Soft Blush/Nude */
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.decor-line {
    width: 60px;
    height: 1px;
    background-color: #C6A49A; /* Dusty Rose/Gold tint */
    margin: 0 auto 30px auto;
}

.details-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #6E534D;
}

.celebration-text {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: #5A4A47;
}

.details-grid {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.detail-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: #FFF9F6;
    border: 1px solid #EFE0DB;
    box-shadow: 0 4px 15px rgba(110, 83, 77, 0.03);
}

.detail-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #8C6A61;
    letter-spacing: 0.05em;
}

.detail-card p {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

/* Footer Section */
.footer-accent {
    padding: 80px 20px;
    background-color: #FFF9F6;
    text-align: center;
}

.cursive-text {
    font-size: 2.5rem;
    font-style: italic;
    color: #8C6A61;
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A3908C;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .names {
        font-size: 3.2rem;
    }
    .date-display {
        font-size: 1.6rem;
    }
    .details-section {
        padding: 60px 20px;
    }
    .details-grid {
        flex-direction: column;
    }
}