/* Vacher Gardens — public site styles */

:root {
    --vs-green:       #1c4532;
    --vs-green-mid:   #276749;
    --vs-green-light: #d1fae5;
}

/* ── Navbar ───────────────────────────────────────────────── */
.pub-navbar {
    background-color: var(--vs-green);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.75rem 0;
}

.pub-brand {
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.15rem;
}

/* ── Hero (full height) ───────────────────────────────────── */
.pub-hero {
    background: linear-gradient(135deg, var(--vs-green) 0%, var(--vs-green-mid) 100%);
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 4rem 0;
}

.pub-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.pub-hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 540px;
    margin-bottom: 2rem;
}

/* ── Hero (small — inner pages) ──────────────────────────── */
.pub-hero-sm {
    background: linear-gradient(135deg, var(--vs-green) 0%, var(--vs-green-mid) 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 3rem 0;
}

.pub-hero-sm h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pub-hero-sm p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-vs-pub {
    background-color: #ffffff;
    color: var(--vs-green);
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.15s, transform 0.1s;
}

.btn-vs-pub:hover {
    background-color: var(--vs-green-light);
    color: var(--vs-green);
    transform: translateY(-1px);
}

.btn-vs-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: #ffffff;
    padding: 0.65rem 1.75rem;
    border-radius: 6px;
    font-weight: 500;
    background: transparent;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-vs-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.12);
    color: #ffffff;
}

.btn-vs-solid {
    background-color: var(--vs-green);
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.15s;
    text-decoration: none;
    display: inline-block;
}

.btn-vs-solid:hover {
    background-color: var(--vs-green-mid);
    color: #ffffff;
}

/* ── Service cards ────────────────────────────────────────── */
.services-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.75rem 1.5rem;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--vs-green-light);
    color: var(--vs-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card h5 {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

/* ── About teaser ─────────────────────────────────────────── */
.about-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-callout {
    background: linear-gradient(135deg, var(--vs-green) 0%, var(--vs-green-mid) 100%);
    border-radius: 16px;
    color: #ffffff;
    padding: 2.5rem 2rem;
}

.about-callout h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-callout p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
}

/* ── Contact CTA strip ────────────────────────────────────── */
.contact-strip {
    background: linear-gradient(135deg, var(--vs-green) 0%, var(--vs-green-mid) 100%);
    padding: 4.5rem 0;
    color: #ffffff;
}

.contact-strip h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-strip p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* ── Contact page cards ───────────────────────────────────── */
.contact-cards-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
}

.contact-card-icon {
    font-size: 2.5rem;
    color: var(--vs-green);
    margin-bottom: 1rem;
}

.contact-card h5 {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
    color: #6b7280;
    font-size: 0.95rem;
}

.contact-card a {
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--vs-green);
    text-decoration: underline;
}

/* ── About page ───────────────────────────────────────────── */
.about-content-section {
    padding: 5rem 0;
}

.qual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: var(--vs-green-light);
    color: var(--vs-green);
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}

.team-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
}

/* ── Section headings ─────────────────────────────────────── */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--vs-green-mid);
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-heading-sm {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

/* ── Footer ───────────────────────────────────────────────── */
.pub-footer {
    background-color: var(--vs-green);
    color: rgba(255,255,255,0.75);
    padding: 3.5rem 0 2rem;
}

.pub-footer-brand {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.pub-footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.pub-footer-heading {
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.pub-footer p,
.pub-footer address {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.pub-footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.pub-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.pub-footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

.pub-footer-copy {
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .pub-hero-title {
        font-size: 2rem;
    }

    .pub-hero {
        min-height: 400px;
        text-align: center;
    }

    .pub-hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .pub-hero .d-flex {
        justify-content: center;
    }

    .section-heading {
        font-size: 1.6rem;
    }
}
