/* GOOGLE FONTS - Load fonts once for the whole site */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Arial:wght@400;500&display=swap');

/* === GLOBAL VARIABLES === */
:root {
    --color-off-white: #F9F9F7;
    --color-black: #000000;
    --color-warm-gold: #D4AF37;
    --color-sage-green: #7A9D96;
    --color-dark-gray: #4A4A4A;
    --color-navy-blue: #0F3057;
    --color-light-grey: #E8E8E8;
    --color-gray-blue: #88A0A8;
}

/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--color-off-white);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === SITE-WIDE MENU STYLING (MATCHES YOUR IMAGE) === */
header {
    padding: 20px 0;
    text-align: center;
}

.nav-links a {
    /* Menu font as shown in your image - clean Playfair Display */
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--color-dark-gray); /* Matches the muted tone in your image */
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    letter-spacing: 0.5px;
    text-transform: capitalize; /* Optional - matches the case in your image */
}

.nav-links a:hover {
    color: var(--color-sage-green);
    transition: color 0.3s ease;
}

/* === SITE-WIDE TYPOGRAPHY === */
.playfair-text {
    font-family: 'Playfair Display', serif;
}

/* === HERO SECTION === */
.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay-text {
    font-family: 'Playfair Display', serif;
    text-align: center;
    padding: 15px 0;
}

.hero-overlay-text h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

.hero-overlay-text p {
    font-size: 22px;
    color: var(--color-dark-gray);
}

/* === FOOTER === */
footer {
    background: var(--color-navy-blue);
    color: var(--color-off-white);
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer a {
    color: var(--color-warm-gold);
    text-decoration: none;
}