/* --- CSS VARIABLES: The "Brain" of your design --- */
:root {
    --primary-color: #2d4739;    /* Forest Green */
    --secondary-color: #c5a059;  /* Golden Wheat */
    --accent-color: #f4f1ea;     /* Off-white/Cream */
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --text-muted: #555555;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --container-width: 1100px;
}

/* --- UPDATED HERO SECTION --- */
.hero {
    position: relative;
    height: 450px; /* Fixed height for the hero area */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--primary-color); /* Green background to act as a frame for the sign */
}

.hero img {
    /* Changed from cover to contain to ensure the image covers the area without being cropped */
    object-fit: cover; 
    object-position: center; /* Centers the image within the container */
    max-width: 80%; /* Set a maximum width for the image */
    height: auto; /* Maintain aspect ratio */
    z-index: 1; /* Place image behind text */
    /* Remove the brightness filter so the sign looks natural, 
       unless you want it darker to help text readability */
}

/* --- RESET & BASE STYLES --- */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--heading-font);
    margin-top: 0;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; color: var(--primary-color); }

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* --- LAYOUT --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* --- HEADER & LOGO --- */
header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 1rem;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.site-logo {
    max-height: 100px; /* This controls the logo size! */
    width: auto;
    margin-bottom: 1rem;
}

header h1 {
    margin: 0;
    letter-spacing: 1px;
}

/* --- NAVIGATION --- */
nav {
    background-color: var(--text-light);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--secondary-color);
    background-color: var(--accent-color);
}

/* --- CONTENT GRID (For alternating Text/Image sections) --- */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-grid.reverse {
    direction: rtl;
}

.feature-grid > div {
    direction: ltr;
}

.img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.img-wrapper img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.img-wrapper img:hover {
    transform: scale(1.03);
}

/* --- GALLERY GRID --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-color);
    color: var(--accent-color);
    text-align: center;
    padding: 3rem 1rem;
    margin-top: 4rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    header h1 { font-size: 2.2rem; }
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-grid.reverse { direction: ltr; }
    nav ul li a { padding: 0.8rem 1rem; font-size: 0.8rem; }
    .hero-text h2 { font-size: 2rem; }
}

