/*
 Theme Name: Astra Child
 Theme URI:  http://yourdomain.com
 Description: Astra child theme for Fieldstock Agricultural Ventures
 Author: Fieldstock
 Template: astra
 Version: 1.0.0
*/
/* ------------------------------
   FIELDSTOCK LANDING PAGE STYLES
   ------------------------------ */

/* Brand colors */
:root {
    --fs-main: #447479;
    --fs-black: #000000;
    --fs-white: #ffffff;
}

/* Core layout wrapper */
.fs-landing {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--fs-black);
}

/* HERO SECTION */
.fs-hero {
    background: var(--fs-main);
    padding: 100px 20px;
    text-align: center;
    color: var(--fs-white);
}

.fs-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fs-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.fs-hero-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

/* ABOUT SECTION */
.fs-about {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.fs-about h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
}

/* SERVICES */
.fs-services {
    background: #f8f8f8;
    padding: 60px 20px;
}

.fs-services h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.fs-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.fs-service-card {
    background: var(--fs-white);
    border: 1px solid #e4e4e4;
    padding: 25px;
    border-radius: 6px;
    transition: 0.3s ease;
}

.fs-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--fs-main);
}

.fs-service-card h3 {
    color: var(--fs-main);
    margin-bottom: 10px;
}

/* CTA / CONTACT SECTION */
.fs-cta {
    padding: 60px 20px;
    text-align: center;
    background: var(--fs-main);
    color: var(--fs-white);
}

.fs-cta h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.fs-cta p strong {
    color: var(--fs-white);
    font-weight: 700;
    font-size: 18px;
}
/* ------------------------------
   REFINEMENTS + RESPONSIVE TUNING
   ------------------------------ */

/* HERO: better spacing + center weight */
.fs-hero {
    padding: 120px 20px 100px;
}

.fs-hero-logo {
    max-width: 200px;
}

/* HEADERS: more modern weight */
.fs-about h2,
.fs-services h2,
.fs-cta h2 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* ABOUT: better text width */
.fs-about p {
    font-size: 18px;
    line-height: 1.65;
    color: #333;
}

/* SERVICE CARDS: depth + spacing */
.fs-service-card {
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fs-service-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* CTA: larger text */
.fs-cta p strong {
    font-size: 20px;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .fs-hero h1 {
        font-size: 32px;
        line-height: 1.25;
    }

    .fs-hero p {
        font-size: 18px;
    }

    .fs-about {
        padding: 50px 20px;
    }

    .fs-services {
        padding: 50px 20px;
    }

    .fs-service-card {
        padding: 25px;
    }

    .fs-cta h2 {
        font-size: 26px;
    }
}
/* Sticky mobile contact bar */
.fs-sticky-contact {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #447479;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    z-index: 9999;
}

.fs-sticky-contact a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .fs-sticky-contact {
        display: block;
    }
}
/* Custom Header */
.fs-header {
    background: var(--fs-white);
    padding: 15px 20px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.fs-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fs-logo img {
    max-height: 50px;
}

.fs-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--fs-black);
    font-weight: 600;
    transition: color 0.3s;
}

.fs-nav a:hover {
    color: var(--fs-main);
}

@media (max-width: 768px) {
    .fs-nav {
        display: none; /* hide for mobile, rely on sticky CTA */
    }
}
/* Custom Footer */
.fs-footer {
    background: var(--fs-main);
    color: var(--fs-white);
    padding: 40px 20px;
    text-align: center;
}

.fs-footer a {
    color: var(--fs-white);
    text-decoration: underline;
}
/* Hamburger Menu */
.fs-hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.fs-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fs-nav-list li {
    margin-left: 20px;
}

.fs-nav-list a {
    text-decoration: none;
    color: var(--fs-black);
    font-weight: 600;
    transition: color 0.3s;
}

.fs-nav-list a:hover {
    color: var(--fs-main);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .fs-hamburger {
        display: block;
    }
    .fs-nav-list {
        display: none;
        flex-direction: column;
        background: var(--fs-white);
        position: absolute;
        top: 60px;
        right: 20px;
        width: 180px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        border-radius: 6px;
    }
    .fs-nav-list li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    .fs-nav-list li:last-child {
        border-bottom: none;
    }
    .fs-nav-list a {
        padding: 12px 15px;
        display: block;
    }
}

