@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --forest-green: #064e3b; /* Dark Green */
    --sage-green: #10b981; /* Medium Green */
    --warm-white: #ffffff;
    --beige: #f3f4f6; /* Light Gray */
    --charcoal: #1A1A1A;
    --white: #ffffff;
    --light-beige: #f9fafb; /* Extra Light Gray */
    --transition: 0.3s ease-in-out;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
}

h2, h3 {
    color: var(--forest-green);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Navigation */
header {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(232, 220, 202, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

nav {
    display: flex;
    align-items: center;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.875rem;
    color: #6b7280;
}

.nav-links a:hover {
    color: var(--forest-green);
}

.nav-links .btn {
    border-radius: 9999px;
    padding: 10px 24px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #064e3b;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    border: 2px solid var(--forest-green);
    color: var(--forest-green);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #f9fafb;
    color: var(--forest-green);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--forest-green);
}

@media(max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        transition: var(--transition);
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-menu-btn {
        display: block;
        margin-left: 20px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1599901860904-17e6ed7083a0?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--charcoal);
    padding-top: 80px; /* Offset for fixed header */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero .btn-outline {
    border-color: var(--forest-green) !important;
    color: var(--forest-green) !important;
}

.hero .btn-outline:hover {
    background-color: var(--forest-green) !important;
    color: var(--white) !important;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media(max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-btns { flex-direction: column; }
}

/* Layout & Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.bg-beige {
    background-color: var(--light-beige);
}

.bg-white {
    background-color: var(--white);
}

.bg-warm-white {
    background-color: var(--warm-white);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media(max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(232, 220, 202, 0.3);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--charcoal);
    margin-bottom: 25px;
    flex-grow: 1;
}

.card .btn {
    align-self: flex-start;
}

/* Page Headers (for inner pages) */
.page-header {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&q=80&w=2000') center/cover;
    padding: 200px 0 100px;
    text-align: center;
    color: var(--charcoal);
    border-bottom: 1px solid rgba(232, 220, 202, 0.5);
}

.page-header h1 {
    color: var(--charcoal);
    font-size: 4rem;
    font-weight: 800;
}

.page-header p {
    color: #4b5563;
}

/* About / Philosophy / Features */
.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    color: var(--forest-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact & Forms */
.contact-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--warm-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--forest-green);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    margin: 40px 0 20px;
}

.legal-content p, .legal-content ul {
    margin-bottom: 20px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
}

/* Footer */
footer {
    background-color: var(--white);
    color: var(--charcoal);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(232, 220, 202, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--forest-green);
    margin-bottom: 25px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.footer-logo {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--forest-green);
}

.footer-col p {
    color: #6b7280;
    margin-bottom: 10px;
    font-size: 0.875rem;
}

.footer-col .btn-outline {
    border-color: var(--forest-green) !important;
    color: var(--forest-green) !important;
}

.footer-col .btn-outline:hover {
    background-color: var(--forest-green) !important;
    color: var(--white) !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(232, 220, 202, 0.5);
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media(max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
