/* --- 1. FONTS & VARIABLES --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --color-green: #4b5e40;
    --color-beige: #f4f2ec;
    --color-dark: #2c2c2c;
    --color-light: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-beige);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. NAVIGATION (Light Overlay Banner) --- */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    /* This creates the light banner behind your logo */
    background-color: rgba(244, 242, 236, 0.95); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.nav-logo img {
    height: 60px; /* Sized perfectly to fit the banner */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-dark); /* Changed to dark to read on light banner */
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.6;
}

.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

/* --- 3. HERO SECTION --- */
.hero {
    position: relative;
    min-height: 85vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px; /* Pushes text down so nav bar doesn't cover it */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: var(--color-light);
    padding: 20px;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero-text p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* --- 4. DEALS GRID --- */
.deals-section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.deals-section h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.deal-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.deal-image-link {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.4s ease;
}

.deal-image-link:hover {
    transform: scale(1.03);
}

.deal-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.deal-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.deal-card p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.outline-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--color-dark);
    border-radius: 40px;
    color: var(--color-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    align-self: center;
    margin-top: auto;
}

.outline-btn:hover {
    background-color: var(--color-dark);
    color: var(--color-beige);
}

/* --- 5. FOOTER --- */
footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 40px 5%;
    text-align: center;
}

footer a { color: var(--color-beige); text-decoration: none; margin: 0 10px;}
footer a:hover { text-decoration: underline; }
.footer-links { margin-top: 15px; }

/* --- 6. MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .top-nav { flex-direction: column; gap: 15px; }
    .hero-text h1 { font-size: 3rem; }
}