/* Global */
/* Body text uses Garamond */
body {
    font-family: "EB Garamond", "Garamond", serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Headings use Nunito */
h1, h2, h3, h4, h5, h6,
nav a,
.btn-primary,
.btn-secondary {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 120px;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero */
.hero {
    background: #e8f3e8;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.btn-primary {
    background: #4a7c59;
    color: #fff;
}

.btn-secondary {
    background: #2e5c3f;
    color: #fff;
}

/* Features */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ddd;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #4a7c59;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0; /* keeps header compact */
    position: relative;
    z-index: 10;
}

.logo img {
    height: 250px; /* visually large */
    width: auto;
    margin-top: -20px; /* pulls logo upward */
    margin-bottom: -20px; /* lets it overlap downward */
}

/* Navigation stays vertically centred */
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .logo img {
        height: 80px;
        margin-top: -10px;
        margin-bottom: -10px;
    }
}
