/* Fronds & Friends - Styles */
:root {
    --fern: #386641;
    --fern-light: #6A994E;
    --sage: #A7C957;
    --cream: #F5F0E8;
    --honey: #E9C46A;
    --terra: #BC4749;
    --charcoal: #2B2D42;
    --warm-gray: #5C5C5C;
    --light-green: #E8F5E9;
    --white: #ffffff;
}

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

body {
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
}

em {
    font-style: italic;
    color: var(--fern-light);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(56, 102, 65, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-frond {
    font-size: 32px;
}

.brand-main {
    font-family: 'Libre Baskerville', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.brand-amp {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--honey);
    margin: 0 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--honey);
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43,45,66,0.7) 0%, rgba(56,102,65,0.5) 50%, rgba(43,45,66,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 120px 40px 100px;
    text-align: center;
    margin: 0 auto;
    animation: fadeUp 1s ease;
}

.hero-tag {
    display: inline-block;
    background: var(--honey);
    color: var(--charcoal);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 60px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero h1 em {
    color: var(--sage);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

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

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}

.btn-primary {
    background: var(--sage);
    color: var(--charcoal);
}

.btn-primary:hover {
    background: var(--honey);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(167,201,87,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* Intro Quote */
.intro {
    background: var(--cream);
    padding: 60px 0 80px;
}

.intro-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-quote blockquote {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--fern);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-quote cite {
    font-size: 15px;
    color: var(--warm-gray);
    font-style: normal;
    font-weight: 600;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--fern-light);
    margin-bottom: 15px;
}

/* About */
.about {
    padding: 80px 0;
    background: var(--white);
}

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

.about-content h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--warm-gray);
}

.about-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--light-green);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--fern);
}

.badge-icon {
    font-size: 20px;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 85%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: 4px solid var(--white);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: clamp(26px, 4vw, 36px);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--sage);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon {
    font-size: 32px;
}

.service-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--fern);
}

.service-card p {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: clamp(26px, 4vw, 36px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 260px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(43,45,66,0.8), transparent);
    color: var(--white);
}

.gallery-caption h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.gallery-caption span {
    font-size: 13px;
    opacity: 0.85;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--warm-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 25px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s;
}

.detail-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.detail-icon {
    font-size: 26px;
}

.detail-card strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--warm-gray);
    margin-bottom: 4px;
}

.detail-card a,
.detail-card span {
    font-size: 16px;
    color: var(--fern);
    text-decoration: none;
    font-weight: 700;
}

.detail-card a:hover {
    color: var(--terra);
}

.contact-form-wrap {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-form-wrap h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--fern);
}

.contact-form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-wrap input,
.contact-form-wrap select,
.contact-form-wrap textarea {
    padding: 14px 18px;
    border: 2px solid var(--cream);
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    background: var(--cream);
    transition: all 0.3s;
}

.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--white);
}

.contact-form-wrap button {
    align-self: flex-start;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: var(--fern);
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-brand .brand-frond {
    font-size: 28px;
}

.footer-brand .brand-main {
    color: var(--white);
    font-size: 20px;
}

.footer-brand .brand-amp {
    color: var(--honey);
    font-size: 18px;
}

.footer-tagline {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-contact a {
    color: var(--honey);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.divider {
    opacity: 0.4;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 200px);
    }
    .about-img-main {
        width: 100%;
    }
    .about-img-accent {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(56,102,65,0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .nav-toggle {
        display: flex;
    }
    .hero-content {
        padding: 100px 20px 80px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .gallery-item.large {
        grid-row: span 1;
    }
    .about-badges {
        justify-content: center;
    }
    .contact-form-wrap {
        padding: 30px;
    }
    section {
        padding: 60px 0;
    }
}
