:root {
    --bg-color: #FDFBF7;       /* Cream/Off-white */
    --text-color: #6D635B;     /* Warm Taupe */
    --accent-green: #7A8B6E;   /* Muted Earth Green */
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Lato', sans-serif;
}

body {
    margin: 0;
    font-family: var(--serif-font);
    background-color: var(--bg-color);
    color: var(--text-color);
    text-align: center;
    line-height: 1.6;
}

/* Navigation */
.top-bar {
    padding: 1.5rem;
    background: #fff;
    border-bottom: 1px solid #EAEAEA;
    position: sticky;
    top: 0;
    z-index: 100;
}

.monogram {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.nav-links {
    padding: 0;
    margin: 0;
}

.nav-links li {
    display: inline-block;
    margin: 0 15px;
}

.nav-links a {
    font-family: var(--sans-font);
    text-decoration: none;
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Hero Image */
.hero-wrapper {
    width: 100%;
    line-height: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Title Section */
.title-section {
    padding: 3rem 1rem;
}

.floral-graphic {
    max-width: 300px; /* Adjust size of your flower image here */
    width: 80%;
    margin-bottom: 1rem;
}

.names {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

.date-loc {
    font-family: var(--sans-font);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-top: 1rem;
    color: #8C8C8C;
}

/* Details Grid */
.content-block {
    padding: 4rem 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    min-width: 250px;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.highlight {
    font-weight: bold;
    color: var(--accent-green);
}

/* Buttons */
.clean-list { list-style: none; padding: 0; }
.clean-list a { color: var(--text-color); }

.btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--text-color);
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--sans-font);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin: 5px;
    transition: all 0.3s;
}

.btn:hover {
    background-color: var(--text-color);
    color: #fff;
}

.rsvp-container {
    padding: 2rem;
    border: 1px dashed #CCC;
    max-width: 600px;
    margin: 0 auto;
}