html{
    scroll-behavior: smooth;
}
body {

   background: #2B2118;
            url("images/hero.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;

}

h1 {

    font-size: 48px;

    color: #8cff66;

}

p {

    font-size: 20px;

}

button{
    background:#6FAE4F;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:40px;
    cursor:pointer;
    font-weight:bold;
    transition:.3s;
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(111,174,79,.4);
}

nav {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 60px; 
    position: sticky;
top: 0;
z-index: 1000;
backdrop-filter: blur(12px);

}

nav h2 {

    color: #8cff66;

}
.FTE{
    color: #bdc9b9;
    font-size: 20px;
    margin-bottom: 15px;
}

.FTA{
    color: #8cff66;
    font-size: 30px;
    margin-bottom: 15px;
}

ul {

    display: flex;

    list-style: none;

    gap: 30px;
    margin: 0;
    padding: 0;

}

a {

    color: white;

    text-decoration: none;

}

.hero {

    margin-top: 120px;

    max-width: 700px;

    margin-left: auto;

    margin-right: auto;

}

.hero h1 {

    font-size: 70px;

}
nav {

    position: fixed;

    top: 0;

    width: 100%;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(10px);
    display:flex;
justify-content:space-between;
align-items:center;

    padding: 20px 60px;

    box-sizing: border-box;

    z-index: 1000;

}

a:hover {

    color: #8cff66
    text-shadow: 0 0 15px #8cff66;
}
.hero {

    animation: fadeIn 3s ease;

}
@keyframes fadeIn {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

#products {
    padding: 100px 60px;
    text-align: center;
}

.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.card {
    background: #3A2D22;
    border-radius: 30px;
    padding: 30px;
    justify-content: center;
    width: 280px;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(140,255,102,0.3);
}
.card img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    border-radius: 10px;

    margin-bottom: 20px;

}
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px;
}

.card {
    background: #3A2D22;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    justify-content: center;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(140,255,102,0.35);
}
.card h3 {
    color: #8cff66;
    margin: 20px 0 10px;
}

.card p {
    padding: 0 20px;
    color: #ddd;
}

.card button {
    margin: 20px;
}
.hero {
    animation: fadeIn 1.5s ease;
}

.card {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cta {
    text-align: center;
    padding: 120px 30px;
}

.cta h2 {
    font-size: 50px;
    color: #8cff66;
}

.cta p {
    max-width: 700px;
    margin: 20px auto;
    color: #ddd;
    font-size: 20px;
}
.logo img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}
.hero{
    position: relative;
    overflow: hidden;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-direction: column;

    text-align: center;

    padding: 40px;
}

.hero-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    z-index: 1;
}

.hero-logo img{
    width: 850px;
}

.hero h1,
.hero p,
.hero button{
    position: relative;
    z-index: 2;
}
.cta{
    text-align:center;
    padding:100px 20px;
}

.cta h2{
    font-size:42px;
    color:#8cff66;
}

.cta p{
    max-width:700px;
    margin:25px auto;
    line-height:1.8;
    color:white;
}

.cta button{
    margin-top:20px;
}
footer{
    background:#070707;
    text-align:center;
    padding:60px 20px;
    margin-top:80px;
    border-top:1px solid rgba(140,255,102,0.2);
}

footer h2{
    color:#8cff66;
    margin-bottom:15px;
}

footer p{
    color:#bbb;
    margin:10px 0;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
}

.secondary-btn{
    background:transparent;
    border:2px solid #6FAE4F;
    color:#F5F1E8;
}

.secondary-btn:hover{
    background:#6FAE4F;
    color:#111;
}
nav{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    background: rgba(35, 25, 15, 0.75);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 1000;
}

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

nav a{
    color: #f5f1e8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover{
    color: #8cff66;
}
.card img{
    transition: transform 0.4s ease;
    overflow: hidden;
    border-radius: 20px;
}

.card:hover img{
    transform:translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}
.categories{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin:60px auto;
}

.categories button{
    background:#5d442d;
    color:#F5F1E8;
    border:none;
    padding:14px 28px;
    border-radius:30px;
    cursor:pointer;
    transition:.3s;
    font-size:16px;
}

.categories button:hover{
    background:#8cff66;
    color:#111;
    transform:translateY(-4px);
}nav a.active{
    color:#8cff66;
    border-bottom:2px solid #8cff66;
    padding-bottom:5px;
}
.about{
    padding:100px 40px;
    background:rgba(255,255,255,0.05);
}

.about-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.about h2{
    font-size:42px;
    color:#8cff66;
    margin-bottom:25px;
}

.about p{
    color:#f5f1e8;
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}
.contact{
    text-align:center;
    padding:100px 20px;
}

.contact h2{
    color:#8cff66;
    font-size:42px;
    margin-bottom:20px;
}

.contact p{
    color:#F5F1E8;
    margin-bottom:30px;
    font-size:18px;
}
/* ===========================
   Testimonials
=========================== */

#testimonials{
    padding:90px 10%;
    text-align:center;
    background:#f8f6f1;
}

#testimonials h2{
    font-size:38px;
    margin-bottom:50px;
    color:#5b402d;
}

.testimonial-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.testimonial-card{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card p{
    font-style:italic;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#6FAE4F;
    font-size:22px;
    margin-bottom:8px;
}

.testimonial-card span{
    color:#777;
    font-weight:bold;
}
/* ========= GALLERY ========= */

#gallery{

    padding:100px 8%;

}

#gallery h2{

    text-align:center;

    margin-bottom:50px;

    font-size:40px;

    color:#6FAE4F;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-auto-rows:250px;

    gap:20px;

}

.gallery-grid img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:20px;

    transition:.4s;

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

}

.gallery-grid img:hover{

    transform:scale(1.03);

}

.big{

    grid-column:span 2;

    grid-row:span 2;

}

.wide{

    grid-column:span 2;

}
