/*
 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: 
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
        url('/wp-content/themes/astra-child/assets/field.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 100px 20px;
    text-align: center;
    color: var(--fs-white);
}

.fs-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
	color: var(--fs-white); 
}

.fs-hero p {
    font-size: 20px;
    opacity: 0.95;
	color: var(--fs-main); 
}


.fs-hero img.fs-hero-logo {
    max-width: 360px !important;
    width: auto;
    height: auto;
    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-main);
    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);
}

/* 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;
    }
}
/* ================================
   FIELDSTOCK — ABOUT PAGE STYLING
   ================================ */

.fs-about-hero {
    text-align: center;
    padding: 80px 20px;
    background: var(--fs-main);
    color: var(--fs-white);
}

.fs-about-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.fs-about-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Main About Section */
.fs-about-main {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fs-about-main h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--fs-main);
}

.fs-about-main p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

/* Mission Section */
.fs-about-mission {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.fs-about-mission h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--fs-main);
}

.fs-about-mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #444;
}

/* Differences Section */
.fs-about-diff {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.fs-about-diff h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: var(--fs-main);
    margin-bottom: 25px;
}

.fs-about-diff ul {
    list-style: none;
    padding: 0;
}

.fs-about-diff ul li {
    font-size: 18px;
    padding: 12px;
    margin-bottom: 8px;
    background: #f2f2f2;
    border-left: 5px solid var(--fs-main);
}

/* CTA Section */
.fs-about-cta {
    text-align: center;
    padding: 70px 20px;
    background: var(--fs-main);
    color: var(--fs-white);
}

.fs-about-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.fs-about-cto {
    text-align: center;
    padding: 70px 20px;
    background: var(--fs-white);
    color: var(--fs-white);
}

.fs-about-cto h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.fs-about-btn {
    display: inline-block;
    background: var(--fs-main);
    color: var(--fs-white);
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

.fs-about-btn:hover {
    background: #2f5c5f;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .fs-about-hero h1 {
        font-size: 32px;
    }

    .fs-about-main h2,
    .fs-about-mission h2,
    .fs-about-diff h2,
    .fs-about-cta h2 {
        font-size: 26px;
    }

    .fs-about-btn {
        width: 90%;
    }
}
/* ================================
   FIELDSTOCK — SERVICES PAGE STYLES
   ================================ */

.fs-services-hero {
    text-align: center;
    padding: 60px 20px;
    background: var(--fs-white);
    color: var(--fs-black);
}

.fs-services-hero h1 {
    font-size: 36px;
    color: var(--fs-main);
    margin-bottom: 8px;
}

.fs-services-hero p {
    color: #444;
    font-size: 16px;
}

/* Grid */
.fs-services-grid-wrap {
    padding: 50px 20px;
    background: #f8f8f8;
}

.fs-services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Card */
.fs-service-card {
    background: var(--fs-white);
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 6px 16px rgba(67,116,121,0.06);
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .22s ease, box-shadow .22s ease;
}

.fs-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(67,116,121,0.09);
    border-left-color: var(--fs-main);
}

.fs-service-icon {
    color: var(--fs-main);
    margin-bottom: 14px;
}

.fs-service-card h3 {
    margin: 0 0 10px;
    color: var(--fs-black);
    font-size: 20px;
}

.fs-service-card p {
    color: #444;
    margin: 0 0 16px;
    line-height: 1.55;
    flex: 1 1 auto;
}

.fs-service-btn {
    background: transparent;
    color: var(--fs-main);
    border: 2px solid var(--fs-main);
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.fs-service-btn:hover {
    background: var(--fs-main);
    color: #fff;
}

/* MODAL */
.fs-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
    z-index: 99999;
}

.fs-modal.fs-modal-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.fs-modal-inner {
    background: var(--fs-white);
    color: var(--fs-black);
    max-width: 720px;
    width: 100%;
    padding: 28px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 18px 50px rgba(0,0,0,0.25);
    outline: none;
}

.fs-modal-close {
    position: absolute;
    right: 14px;
    top: 12px;
    background: transparent;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #777;
}

.fs-modal h2 {
    margin-top: 0;
    color: var(--fs-main);
    font-size: 24px;
}

.fs-modal p {
    color: #333;
    line-height: 1.6;
}

.fs-modal-cta {
    display: inline-block;
    margin-top: 14px;
    background: var(--fs-main);
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .fs-service-card {
        padding: 18px;
    }
    .fs-services-hero h1 {
        font-size: 28px;
    }
    .fs-modal-inner {
        padding: 18px;
    }
}
/* ===========================
   FIELDSTOCK CONTACT PAGE
   =========================== */

.fs-contact-hero {
    text-align: center;
    padding: 70px 20px;
    background: var(--fs-white);
}

.fs-contact-hero h1 {
    font-size: 36px;
    color: var(--fs-main);
}

.fs-contact-hero p {
    color: #555;
}

/* Contact Grid */
.fs-contact-grid-wrap {
    padding: 50px 20px;
    background: #f8f8f8;
}

.fs-contact-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.fs-contact-box {
    background: var(--fs-white);
    padding: 26px;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(67,116,121,0.06);
    border-left: 4px solid transparent;
    transition: .2s ease;
}

.fs-contact-box:hover {
    border-left-color: var(--fs-main);
    transform: translateY(-6px);
}

.fs-contact-box h3 {
    margin-top: 0;
    color: var(--fs-black);
}

.fs-contact-btn {
    margin-top: 12px;
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    border: 2px solid var(--fs-main);
    color: var(--fs-main);
    font-weight: 700;
    transition: .2s;
}

.fs-contact-btn:hover {
    background: var(--fs-main);
    color: #fff;
}

/* Contact Form */
.fs-contact-form-section {
    max-width: 760px;
    margin: 60px auto;
    padding: 0 20px;
}

.fs-contact-form-section h2 {
    color: var(--fs-main);
    text-align: center;
    margin-bottom: 30px;
}

.fs-form-group {
    margin-bottom: 18px;
}

.fs-form-group input,
.fs-form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    outline: none;
    transition: .2s;
}

.fs-form-group input:focus,
.fs-form-group textarea:focus {
    border-color: var(--fs-main);
}

.fs-contact-submit {
    background: var(--fs-main);
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    transition: .2s;
}

.fs-contact-submit:hover {
    opacity: 0.85;
}

#fs-contact-response {
    margin-top: 20px;
    font-size: 15px;
}

