/* =========================================
   Mooney Agrifarm Careers Website
   Global Styles Part 1
========================================= */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');



/* =========================================
   Root Variables
========================================= */

:root {

    --primary-green: #1f6b3a;

    --dark-green: #123c24;

    --light-green: #eaf5ed;

    --gold: #d8a534;

    --dark: #162018;

    --text: #47534a;

    --white: #ffffff;

    --light-bg: #f7faf7;

    --border: rgba(0,0,0,0.08);

    --shadow:
    0 20px 50px rgba(0,0,0,0.08);

    --radius: 18px;

}



/* =========================================
   Reset
========================================= */


* {

    margin:0;

    padding:0;

    box-sizing:border-box;

}



html {

    scroll-behavior:smooth;

}



body {

    font-family:
    'Inter',
    Arial,
    sans-serif;

    color:var(--text);

    background:var(--white);

    line-height:1.7;

}



img {

    max-width:100%;

    display:block;

}



a {

    text-decoration:none;

    color:inherit;

}



ul {

    list-style:none;

}




/* =========================================
   Container
========================================= */


.container {

    width:90%;

    max-width:1200px;

    margin:auto;

}





/* =========================================
   Navbar
========================================= */


.navbar {

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:

    rgba(255,255,255,0.85);

    backdrop-filter:

    blur(15px);

    border-bottom:

    1px solid var(--border);

}



.navbar .container {

    height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}



.logo {

    display:flex;

    align-items:center;

    gap:14px;

}



.logo-icon {

    width:52px;

    height:52px;

    border-radius:50%;

    background:

    var(--primary-green);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:25px;

}



.logo-text h2 {

    color:var(--dark-green);

    font-size:20px;

    line-height:1.2;

}



.logo-text span {

    font-size:13px;

    color:var(--gold);

    font-weight:600;

}



.nav-links {

    display:flex;

    align-items:center;

    gap:35px;

}



.nav-links a {

    font-weight:600;

    color:var(--dark);

    transition:.3s;

}



.nav-links a:hover {

    color:var(--primary-green);

}



.apply-btn {

    background:

    var(--primary-green);

    color:white !important;

    padding:12px 28px;

    border-radius:50px;

}



.apply-btn:hover {

    background:

    var(--dark-green);

}



.menu-btn {

    display:none;

    border:none;

    background:none;

    font-size:30px;

    cursor:pointer;

}





/* =========================================
   Hero Section
========================================= */


.hero {

    min-height:100vh;

    position:relative;

    display:flex;

    align-items:center;

    background:

    linear-gradient(
    rgba(12,35,20,.65),
    rgba(12,35,20,.65)
    ),

    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

}



.hero-content {

    position:relative;

    color:white;

    padding-top:100px;

}



.hero-tag {

    display:inline-block;

    background:

    rgba(255,255,255,.15);

    border:

    1px solid rgba(255,255,255,.3);

    padding:10px 22px;

    border-radius:50px;

    margin-bottom:25px;

    font-weight:600;

}



.hero h1 {

    font-size:

    clamp(45px,6vw,75px);

    line-height:1.1;

    max-width:900px;

    margin-bottom:25px;

}



.hero h1 span {

    color:

    #e6c05a;

}



.hero p {

    max-width:700px;

    font-size:20px;

    color:

    rgba(255,255,255,.9);

    margin-bottom:40px;

}



.hero-buttons {

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}




.primary-btn {

    display:inline-block;

    background:

    var(--gold);

    color:white;

    padding:15px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}



.primary-btn:hover {

    transform:translateY(-3px);

    background:#bd8d1f;

}



.secondary-btn {

    display:inline-block;

    border:

    2px solid white;

    color:white;

    padding:13px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

}



.secondary-btn:hover {

    background:white;

    color:var(--dark-green);

}




/* Hero Stats */


.hero-stats {

    display:flex;

    gap:20px;

    margin-top:70px;

    flex-wrap:wrap;

}



.hero-stats div {

    background:

    rgba(255,255,255,.12);

    backdrop-filter:

    blur(10px);

    padding:25px 35px;

    border-radius:15px;

}



.hero-stats h2 {

    font-size:32px;

    color:white;

}



.hero-stats span {

    color:

    rgba(255,255,255,.8);

}

/* =========================================
   Global Styles Part 2
   Sections, Cards & Layout
========================================= */


/* Section Spacing */

section{

    padding:110px 0;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-title span,

.section-tag{

    display:inline-block;

    background:var(--light-green);

    color:var(--primary-green);

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    margin-bottom:18px;

    font-size:14px;

    letter-spacing:.5px;

    text-transform:uppercase;

}

.section-title h2{

    font-size:clamp(34px,4vw,52px);

    color:var(--dark-green);

    margin-bottom:20px;

    line-height:1.2;

}

.section-title p{

    font-size:18px;

    color:var(--text);

}



/* =========================================
   About Section
========================================= */

.about{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about h2{

    font-size:46px;

    color:var(--dark-green);

    line-height:1.2;

}

.about p{

    margin-bottom:24px;

    font-size:17px;

}



/* =========================================
   Benefits Section
========================================= */

.benefits{

    background:var(--light-bg);

}

.benefit-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

}

.benefit-card{

    background:white;

    padding:40px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.35s;

    border:1px solid var(--border);

}

.benefit-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.benefit-card .number{

    width:60px;

    height:60px;

    background:var(--primary-green);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:20px;

    font-weight:700;

    margin-bottom:25px;

}

.benefit-card h3{

    color:var(--dark-green);

    margin-bottom:18px;

    font-size:24px;

}

.benefit-card p{

    color:var(--text);

}



/* =========================================
   Roles Section
========================================= */

.roles{

    background:white;

}

.roles-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.role-card{

    background:white;

    border-radius:20px;

    padding:35px;

    border:1px solid var(--border);

    box-shadow:var(--shadow);

    transition:.35s;

}

.role-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.role-number{

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--gold);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    margin-bottom:20px;

}

.role-card h3{

    font-size:25px;

    color:var(--dark-green);

    margin-bottom:18px;

}

.role-card h4{

    margin:24px 0 12px;

    color:var(--primary-green);

}

.role-card p{

    margin-bottom:18px;

}

.role-card ul{

    list-style:disc;

    padding-left:20px;

}

.role-card li{

    margin-bottom:10px;

}



/* =========================================
   Employment Section
========================================= */

.employment{

    background:var(--light-bg);

}

.employment-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.employment h2{

    font-size:42px;

    color:var(--dark-green);

    margin:18px 0;

}

.employment-cards{

    display:grid;

    gap:30px;

}

.employment-card{

    background:white;

    padding:35px;

    border-radius:20px;

    box-shadow:var(--shadow);

}

.badge{

    display:inline-block;

    background:var(--primary-green);

    color:white;

    padding:8px 18px;

    border-radius:40px;

    font-size:14px;

    margin-bottom:18px;

    font-weight:700;

}

.badge.full{

    background:var(--gold);

}

.employment-card h3{

    margin-bottom:18px;

    color:var(--dark-green);

    font-size:28px;

}

.employment-card ul{

    list-style:disc;

    padding-left:22px;

}

.employment-card li{

    margin-bottom:12px;

}



/* =========================================
   Expectations
========================================= */

.expectations{

    background:white;

}

.expectation-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.expectation-grid article{

    background:var(--light-bg);

    padding:35px;

    border-radius:18px;

    transition:.3s;

}

.expectation-grid article:hover{

    transform:translateY(-6px);

}

.expectation-grid h3{

    color:var(--dark-green);

    margin-bottom:15px;

    font-size:23px;

}



/* =========================================
   Requirements
========================================= */

.requirements{

    background:linear-gradient(180deg,#ffffff,#eef7ef);

}

.requirements-grid{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:50px;

    align-items:center;

}

.requirements h2{

    font-size:42px;

    color:var(--dark-green);

    margin:20px 0;

}

.requirements-list{

    margin-top:35px;

    list-style:none;

}

.requirements-list li{

    background:white;

    margin-bottom:15px;

    padding:16px 22px;

    border-radius:14px;

    box-shadow:var(--shadow);

    border-left:5px solid var(--primary-green);

}

.requirements-card{

    background:var(--primary-green);

    color:white;

    padding:40px;

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.requirements-card h3{

    font-size:30px;

    margin-bottom:18px;

}

.requirements-card p{

    color:rgba(255,255,255,.9);

}

/* =========================================
   Global Styles Part 3
   Timeline • FAQ • Footer • Responsive
=========================================*/


/* ===============================
   Hiring Process
================================ */

.process{

    background:#ffffff;

}

.process-timeline{

    max-width:900px;

    margin:70px auto 0;

    position:relative;

    padding-left:40px;

}

.process-timeline::before{

    content:"";

    position:absolute;

    left:18px;

    top:0;

    bottom:0;

    width:4px;

    background:var(--primary-green);

    border-radius:10px;

}

.process-step{

    display:flex;

    gap:30px;

    margin-bottom:45px;

    position:relative;

}

.step-number{

    width:42px;

    height:42px;

    background:var(--gold);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    flex-shrink:0;

    margin-left:-22px;

    box-shadow:0 6px 20px rgba(0,0,0,.15);

}

.process-step h3{

    color:var(--dark-green);

    margin-bottom:10px;

}



/* ===============================
   Standards
================================ */

.standards{

    background:var(--light-bg);

}

.standards-grid{

    display:grid;

    grid-template-columns:1fr 1.4fr;

    gap:60px;

}

.standards-intro h2{

    font-size:42px;

    color:var(--dark-green);

    margin:18px 0;

}

.standards-list{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

}

.standards-list article{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.standards-list h3{

    color:var(--primary-green);

    margin-bottom:12px;

}



/* ===============================
   Privacy
================================ */

.privacy{

    background:#fff;

}

.privacy-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.privacy h2{

    font-size:42px;

    color:var(--dark-green);

}

.privacy-content p{

    margin-bottom:22px;

}



/* ===============================
   Safety
================================ */

.safety{

    background:linear-gradient(135deg,var(--primary-green),var(--dark-green));

    color:white;

}

.safety-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:22px;

    padding:50px;

}

.safety-box h2{

    font-size:42px;

    margin:15px 0 25px;

}

.safety-box ul{

    margin-top:35px;

}

.safety-box li{

    margin-bottom:16px;

    font-size:17px;

}



/* ===============================
   FAQ
================================ */

.faq{

    background:#fff;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq details{

    background:var(--light-bg);

    margin-bottom:18px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.faq summary{

    padding:22px 28px;

    cursor:pointer;

    font-weight:700;

    color:var(--dark-green);

    list-style:none;

}

.faq summary::-webkit-details-marker{

    display:none;

}

.faq details p{

    padding:0 28px 24px;

}



/* ===============================
   CTA
================================ */

.final-cta{

    position:relative;

    padding:140px 0;

    background:url("images/farm.jpg");

    background-size:cover;

    background-position:center;

    text-align:center;

    color:white;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(15,40,22,.72);

}

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content span{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:20px;

}

.cta-content h2{

    font-size:54px;

    margin-bottom:25px;

}

.cta-content p{

    max-width:700px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.9);

}



/* ===============================
   Footer
================================ */

.footer{

    background:#12231a;

    color:#d8e4da;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:45px;

    padding:80px 0;

}

.footer h3{

    color:#fff;

    margin-bottom:20px;

}

.footer a{

    display:block;

    margin-bottom:12px;

    transition:.3s;

}

.footer a:hover{

    color:var(--gold);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:25px;

}



/* ===============================
   Responsive
================================ */

@media(max-width:992px){

.about-grid,

.employment-grid,

.requirements-grid,

.privacy-grid,

.standards-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

.hero h1{

font-size:55px;

}

}



@media(max-width:768px){

.menu-btn{

display:block;

color:var(--dark-green);

}

.nav-links{

position:absolute;

top:85px;

left:0;

width:100%;

background:white;

display:none;

flex-direction:column;

padding:30px;

box-shadow:0 10px 30px rgba(0,0,0,.1);

}

.nav-links.active{

display:flex;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.roles-grid,

.benefit-grid,

.expectation-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.cta-content h2{

font-size:40px;

}

}



@media(max-width:500px){

.hero h1{

font-size:42px;

}

.section-title h2,

.about h2,

.requirements h2,

.privacy h2,

.standards-intro h2,

.safety-box h2{

font-size:34px;

}

.primary-btn,

.secondary-btn,

.apply-btn{

width:100%;

text-align:center;

}

.hero-buttons{

flex-direction:column;

}

.hero-stats{

flex-direction:column;

}

}