:root {
    --dusty-blue: #A3B8C8;
    --navy: #2C3E50;
    --cream: #FBFAF8;
    --gold-accent: #C5A059;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--cream);
    font-family: 'Lato', sans-serif;
    color: var(--navy);
    line-height: 1.6;
}

/* Hero Section */
header {
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--dusty-blue);
    background-size: cover;
    background-position: center;
}

/* Admin header override */
body.admin header {
    height: auto;
    min-height: unset;
    padding: 20px 0;
}

.logo-font {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 5rem;
    margin-bottom: 0;
    color: var(--navy);
}

.ampersand {
    font-size: 2.5rem;
    color: var(--dusty-blue);
}

/* Navigation */
nav {
    padding: 20px;
    background: white;
    position: sticky;
    top: 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

nav a {
    text-decoration: none;
    color: var(--navy);
    margin: 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Content Sections */
.container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 400;
}

.divider {
    width: 50px;
    height: 1px;
    background: var(--gold-accent);
    margin: 20px auto;
}

/* RSVP Button */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--dusty-blue);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--navy);
}

/* Moodboard Image Grid */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.photo-grid img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 10px solid white;
}