/* ==========================================================
   VAT FARMS
   Premium Agriculture Theme
========================================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    background:#ffffff;
    line-height:1.7;
}

/* ===============================
   CONTAINER
================================*/

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===============================
   HEADER
================================*/

header{
    position:sticky;
    top:0;
    z-index:9999;

    background:#23412A;

    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

/* ===============================
   MENU
================================*/

nav ul{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
}

nav li{
    position:relative;
}

nav a{
    display:block;
    padding:22px 18px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

nav a:hover{
    background:#315d40;
}

nav ul ul{

    display:none;

    position:absolute;

    left:0;

    top:100%;

    min-width:240px;

    background:#23412A;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

nav ul ul li{

    width:100%;

}

nav li:hover>ul{

    display:block;

}

/* ===============================
   HERO
================================*/

.hero{

    position:relative;

    height:90vh;

    background:url("../images/hero.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;

}

/* Dark overlay */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.45);

}

/* Hero content */

.hero-content{

    position:relative;

    z-index:10;

    max-width:650px;

    color:white;

}

.tagline{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(8px);

    border-radius:30px;

    letter-spacing:2px;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero p{

    font-size:22px;

    margin-bottom:35px;

}

/* ===============================
   BUTTONS
================================*/

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:#D4A32C;

    color:#111;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    font-weight:bold;

    transition:.3s;

}

.btn-primary:hover{

    background:#bc8f23;

}

.btn-secondary{

    border:2px solid white;

    color:white;

    text-decoration:none;

    padding:16px 34px;

    border-radius:50px;

    transition:.3s;

}

.btn-secondary:hover{

    background:white;

    color:#23412A;

}

/* ===============================
   CARDS
================================*/

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

    padding:80px 0;

}

.card{

    background:white;

    border-radius:18px;

    padding:35px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.card h2{

    margin-bottom:15px;

    color:#23412A;

}

/* ===============================
   FOOTER
================================*/

footer{

    background:#23412A;

    color:white;

    padding:60px 0;

    margin-top:50px;

}

/* ===============================
   MOBILE
================================*/

@media(max-width:768px){

.hero{

    height:75vh;

}

.hero h1{

    font-size:40px;

}

.hero p{

    font-size:18px;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary,
.btn-secondary{

    text-align:center;

}

nav ul{

    flex-wrap:wrap;

}

}


/* ===============================
   FARM VIDEO
================================*/

.farm-video{

    padding:80px 0;

    background:#f8f8f5;

    text-align:center;

}

.farm-video h2{

    color:#23412A;

    font-size:42px;

    margin-bottom:15px;

}

.farm-video p{

    max-width:700px;

    margin:0 auto 40px;

    font-size:18px;

    color:#666;

}

.video-wrapper{

    position:relative;

    width:100%;

    max-width:900px;

    margin:auto;

    aspect-ratio:16/9;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.video-wrapper iframe{

    width:100%;

    height:100%;

    border:none;

}