/* Stroud Slad Farm - Premium Stylesheet */
:root {
    --oatmeal: #F5F1E9;
    --forest-green: #3a5a40;
    --forest-green-hover: #344e41;
    --slate: #1c1c1c;
    --white: #FFFFFF;
    --border: #E5E0D5;
    --cream: #faf8f5;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--oatmeal);
    color: var(--slate);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--forest-green);
    line-height: 1.2;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: opacity 0.3s;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 10%;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 3rem;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
    background-color: var(--white);
    color: var(--forest-green);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 1.5px solid var(--white);
    color: var(--white);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--forest-green);
}

/* Z-Pattern Sections */
.section {
    padding: 120px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.row {
    display: flex;
    align-items: center;
    gap: 100px;
}

.row.reverse {
    flex-direction: row-reverse;
}

.col {
    flex: 1;
}

.text-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.text-content p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #4a4a4a;
}

.image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: block;
}

/* Pillars Section: Ethos */
.pillars {
    background-color: var(--white);
    padding: 120px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.pillar {
    text-align: center;
}

.pillar h3 {
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
}

.pillar p {
    color: #666;
    font-size: 1.05rem;
}

/* Footer style update */
footer {
    padding: 100px 5%;
    background-color: var(--forest-green);
    color: var(--white);
    text-align: center;
}

footer h2 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

footer a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 1;
}

/* Responsive fixes */
@media (max-width: 1100px) {
    .row {
        flex-direction: column !important;
        gap: 60px;
    }

    .text-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .pillars-container {
        grid-template-columns: 1fr;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}