/* Fork in the Road VA - Main Stylesheet */

/* ===========================
   Global Styles
   =========================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: #FFFEF8;
}

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

/* ===========================
   Navigation
   =========================== */

nav {
    background: #FFFEF8;
    border-bottom: 3px solid #7FA068;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2A5434;
    text-decoration: none;
}

.tagline {
    font-size: 0.9rem;
    color: #3B6F47;
    font-style: italic;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #2A5434;
    text-decoration: none;
    font-weight: 500;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #3B6F47;
    border-bottom-color: #D4A574;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #2A5434;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #3B6F47;
}

/* ===========================
   Typography
   =========================== */

h2 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: #2A5434;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-family: Georgia, serif;
    font-size: 1.6rem;
    color: #2A5434;
    margin-bottom: 1rem;
}

/* ===========================
   Buttons
   =========================== */

.btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #D4A574;
    color: #2A5434;
    border-color: #D4A574;
}

.btn-primary:hover {
    background: #2A5434;
    color: white;
    border-color: #2A5434;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2A5434;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #2A5434;
}

/* ===========================
   Page Headers
   =========================== */

.page-header {
    background: linear-gradient(135deg, #2A5434 0%, #3B6F47 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-family: Georgia, serif;
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #FAF5ED;
}

/* ===========================
   Hero Section (Homepage)
   =========================== */

.hero {
    background: linear-gradient(135deg, #2A5434 0%, #3B6F47 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #FAF5ED;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Sections
   =========================== */

section {
    padding: 80px 20px;
}

/* ===========================
   Cards & Grids
   =========================== */

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    font-family: Georgia, serif;
    color: #3B6F47;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.7;
}

/* ===========================
   Footer
   =========================== */

footer {
    background: #2A5434;
    color: #FAF5ED;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    color: #D4A574;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.footer-section a {
    color: #FAF5ED;
    text-decoration: none;
}

.footer-section a:hover {
    color: #D4A574;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FAF5ED;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #D4A574;
    color: #2A5434;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3B6F47;
    color: #FAF5ED;
}

/* ===========================
   Background Utilities
   =========================== */

.bg-cream {
    background: #FAF5ED;
}

.bg-white {
    background: white;
}

/* ===========================
   Mobile Responsive
   =========================== */

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #FFFEF8;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid #E8E8E8;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Mobile Menu Overlay
   =========================== */

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.menu-overlay.active {
    display: block;
}
