/* Fonts */
@font-face {
    font-family: 'GrapeNuts';
    src: url('../fonts/fh-grapenuts.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ClickerScript';
    src: url('../fonts/fh-clicker.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #3c5a2b;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: #6b8f5e;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #3c5a2b;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('../images/fh-hero.jpg') center/cover no-repeat;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(60, 90, 43, 0.45) 0%, rgba(44, 44, 44, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.hero h1 {
    font-family: 'GrapeNuts', cursive;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.92;
    font-weight: 300;
}

/* Section shared */
.section {
    padding: 5rem 2rem;
}

.section-green {
    background: #e5eed9;
}

.section-white {
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'GrapeNuts', cursive;
    font-size: 2.4rem;
    color: #3c5a2b;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Intro */
.intro-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
}

.intro-columns ul li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.6rem;
    font-size: 1.05rem;
    line-height: 1.5;
}

.intro-columns ul li::before {
    content: '\2022';
    color: #6b8f5e;
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.4rem;
}

/* CTA */
.cta {
    text-align: center;
    padding: 4rem 2rem;
}

.cta h2 {
    font-family: 'GrapeNuts', cursive;
    font-size: 2.2rem;
    color: #3c5a2b;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.cta .cursive-quote {
    font-family: 'ClickerScript', cursive;
    font-size: 1.8rem;
    color: #6b8f5e;
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.cta p.description {
    font-size: 1.1rem;
    color: #2c2c2c;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card h3 {
    font-family: 'GrapeNuts', cursive;
    font-size: 1.5rem;
    color: #3c5a2b;
    margin-bottom: 1rem;
    font-weight: 400;
}

.pricing-card .price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5eed9;
    font-size: 0.95rem;
}

.pricing-card .price-row:last-child {
    border-bottom: none;
}

.pricing-card .price-row .duration {
    color: #555;
}

.pricing-card .price-row .price {
    font-weight: 600;
    color: #3c5a2b;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-family: 'GrapeNuts', cursive;
    font-size: 1.4rem;
    color: #3c5a2b;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info a {
    color: #3c5a2b;
    font-weight: 500;
}

.contact-info a:hover {
    color: #6b8f5e;
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-form h3 {
    font-family: 'GrapeNuts', cursive;
    font-size: 1.4rem;
    color: #3c5a2b;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #6b8f5e;
    box-shadow: 0 0 0 3px rgba(107, 143, 94, 0.15);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    padding: 0.8rem 2.4rem;
    background: #3c5a2b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    background: #6b8f5e;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1rem 2rem 1.5rem;
        gap: 0.8rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        display: flex;
    }

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

    .hero .subtitle {
        font-size: 1rem;
    }

    .intro-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta .cursive-quote {
        font-size: 1.4rem;
    }

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

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

    .section {
        padding: 3rem 1.2rem;
    }
}
