/* -------------------------
   SUNLIT FARMS
   ------------------------- */

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Nunito',sans-serif;

    background:#FAF7F0;

    color:#44352A;

    line-height:1.7;

}

/* -------------------------
   NAVIGATION
-------------------------- */

nav{

    position:fixed;

    top:0;

    width:100%;

    background:rgba(250,247,240,.95);

    backdrop-filter:blur(12px);

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 8%;

    z-index:999;

    box-shadow:0 3px 10px rgba(0,0,0,.08);

}

.logo{

    font-family:'DM Serif Display',serif;

    font-size:2rem;

    color:#58753C;

}

nav ul{

    display:flex;

    list-style:none;

    gap:30px;

}

nav a{

    text-decoration:none;

    color:#58753C;

    font-weight:700;

    transition:.3s;

}

nav a:hover{

    color:#D9A441;

}

/* -------------------------
 HERO
-------------------------- */

.hero{

    height:100vh;

    background:
    linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

}

.hero-overlay{

    max-width:800px;

    padding:30px;

}

.hero h1{

    font-family:'DM Serif Display',serif;

    font-size:5rem;

    margin-bottom:20px;

}

.hero p{

    font-size:1.5rem;

    margin-bottom:35px;

}

/* -------------------------
 BUTTON
-------------------------- */

.button{

display:inline-block;

padding:16px 34px;

background:#D9A441;

color:#44352A;

font-weight:bold;

border-radius:999px;

text-decoration:none;

transition:.3s;

}

.button:hover{

transform:translateY(-3px);

background:#E7B755;

}

/* -------------------------
 SECTIONS
-------------------------- */

section{

padding:90px 10%;

}

section h2{

font-family:'DM Serif Display',serif;

font-size:2.8rem;

margin-bottom:25px;

color:#58753C;

}

/* -------------------------
 PRODUCT GRID
-------------------------- */

.products{

display:grid;

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

gap:30px;

margin-top:40px;

}

.card{

background:white;

padding:30px;

border-radius:22px;

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

transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.card h3{

font-size:1.5rem;

margin-bottom:18px;

color:#58753C;

}

.card ul{

margin-left:20px;

margin-top:15px;

}

/* -------------------------
 INFO BOX
-------------------------- */

.info-box{

background:white;

padding:30px;

margin-top:25px;

border-left:8px solid #D9A441;

border-radius:15px;

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

}

/* -------------------------
 CONTACT
-------------------------- */

.contact-grid{

display:grid;

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

gap:20px;

margin-top:35px;

}

.contact-grid a{

background:white;

padding:22px;

border-radius:18px;

text-decoration:none;

color:#58753C;

font-weight:bold;

text-align:center;

box-shadow:0 8px 18px rgba(0,0,0,.07);

transition:.3s;

}

.contact-grid a:hover{

background:#D9A441;

color:white;

transform:translateY(-6px);

}

/* -------------------------
 FOOTER
-------------------------- */

footer{

background:#58753C;

color:white;

text-align:center;

padding:70px 20px;

}

footer p{

margin-top:12px;

}

/* -------------------------
 MOBILE
-------------------------- */

@media(max-width:900px){

.hero h1{

font-size:3rem;

}

.hero p{

font-size:1.2rem;

}

nav{

flex-direction:column;

gap:18px;

}

nav ul{

gap:15px;

flex-wrap:wrap;

justify-content:center;

}

section{

padding:70px 8%;

}

}
/* ==========================
   FINAL POLISH
========================== */

html{
scroll-padding-top:100px;
}

/* Pretty text */

p{
font-size:1.1rem;
}

/* Lists */

li{
margin-bottom:8px;
}

/* Card titles */

.card h3{
font-family:'DM Serif Display',serif;
font-size:1.8rem;
}

/* Hover glow */

.card:hover{

box-shadow:
0 20px 45px rgba(0,0,0,.12);

}

/* Section spacing */

section{

max-width:1400px;

margin:auto;

}

/* Nice dividers */

section h2::after{

content:"";

display:block;

width:80px;

height:4px;

background:#D9A441;

margin-top:12px;

border-radius:999px;

}

/* Selection Color */

::selection{

background:#D9A441;

color:white;

}

/* Scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#F7F4ED;

}

::-webkit-scrollbar-thumb{

background:#7A9A52;

border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

background:#5C7740;

}

/* Product cards */

.card{

position:relative;

overflow:hidden;

}

.card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:8px;

background:#D9A441;

}

/* Contact buttons */

.contact-grid a{

font-size:1.05rem;

}

/* Footer */

footer{

font-size:1rem;

line-height:2;

}

/* Hero animation */

.hero h1{

animation:fadeDown 1s ease;

}

.hero p{

animation:fadeUp 1.3s ease;

}

.button{

animation:fadeUp 1.6s ease;

}

/* Animations */

@keyframes fadeDown{

from{

opacity:0;

transform:translateY(-30px);

}

to{

opacity:1;

transform:none;

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:none;

}

}
.coming-soon{
    grid-column:1 / -1;
    max-width:500px;
    margin:0 auto;
}
.tagline{

font-family:'DM Serif Display', serif;

font-style:italic;

font-size:1.6rem;

color:#D9A441;

letter-spacing:1px;

margin-top:15px;

text-align:center;

opacity:.95;

}
