*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#111;
    color:#fff;
}

header{
    position:fixed;
    width:100%;
    top:0;
    background:#000;
    padding:15px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:1000;
}

.logo img{
    height:55px;
}

nav a{
    color:#fff;
    margin-left:25px;
    text-decoration:none;
    font-weight:500;
}

nav a:hover{
    color:#2ecc71;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* 🌿 Add Your Organic Green Images Here */
.hero-slide:nth-child(1) {
    background-image: url("images/organic1.jpeg");
}

.hero-slide:nth-child(2) {
    background-image: url("images/organic2.jpeg");
}

.hero-slide:nth-child(3) {
    background-image: url("images/organic3.jpeg");
}

.hero-slide:nth-child(4) {
    background-image: url("images/organic4.jpeg");
}
.hero-slide.active {
    opacity: 1;
}

/* Dark Overlay for Text Visibility */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    color: #2ecc71;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

.btn {
    background: #2ecc71;
    color: black;
    padding: 14px 40px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#1b1b1b;
    padding:20px;
    border-radius:12px;
    text-align:center;
    text-decoration:none;
    color:#fff;
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(46,204,113,0.4);
}

.product-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:8px;
}

.price{
    margin-top:10px;
    color:#2ecc71;
    font-weight:600;
}

/* ===============================
   PRODUCT DETAIL PAGE STYLING
================================ */

.product-detail{
    padding:60px 8%;
    background:#000;
    color:#fff;
}

.product-container{
    display:flex;
    gap:50px;
    align-items:flex-start;
    flex-wrap:wrap;
}

.product-image{
    flex:1;
    min-width:300px;
}

.product-image img{
    width:100%;
    max-width:450px;
    border-radius:12px;
}

.product-info{
    flex:1;
    min-width:300px;
}

.product-info h1{
    font-size:36px;
    margin-bottom:15px;
}

.product-info .price{
    font-size:26px;
    margin-bottom:20px;
}

.product-info h3{
    margin-top:25px;
    margin-bottom:10px;
    color:#2ecc71;
}

.product-info ul{
    padding-left:20px;
    line-height:1.8;
}


/* =========================
   SECTION SPACING FIX
========================= */

section {
    padding: 100px 0;
}

/* =========================
   VIDEO SECTION
========================= */

.video-section {
    background: linear-gradient(to right, #000000, #0f2f1f);
    text-align: center;
    color: white;
}

.video-section h2 {
    font-size: 40px;
    color: #2ecc71;
    margin-bottom: 40px;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 255, 100, 0.3);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.video-section p {
    margin-top: 30px;
    font-size: 18px;
    opacity: 0.8;
}

/* =========================
   CONTACT SECTION FIXED
========================= */

.contact-section {
    background: #000;
    padding: 100px 0;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    color: white;
}

.contact-info h2 {
    color: #2ecc71;
    font-size: 40px;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.map iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-top: 20px;
    border: none;
}

/* FORM SIDE */

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 6px;
    border: none;
    background: #1a1a1a;
    color: white;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    padding: 14px;
    background: #2ecc71;
    color: black;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: white;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }
}


footer{
    background:#000;
    text-align:center;
    padding:25px;
}
