*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Georgia, serif;
}

body{
background:#f7f4ee;
}



.navbar{
background:#355e4c;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 50px;
position:relative;
z-index:1000; /* IMPORTANT: keeps navbar above images */
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
}

.logo img{
width:100px;
height:100px;
border-radius:50%;
}


.nav-links{
display:flex;
gap:20px;
list-style:none;
}

.nav-links li{
position:relative;
}


.nav-links a{
color:white;
text-decoration:none;
padding:15px 20px;
display:block;
transition:0.3s ease;
border-radius:5px;
}


.nav-links a:hover{
background:#ff7f50;
color:black;
}


.dropdown{
position:relative;
}

.dropdown-content{
display:none;
position:absolute;
background:white;
min-width:220px;
top:100%;
left:0;
box-shadow:0 5px 15px rgba(0,0,0,.2);
z-index:9999; /* IMPORTANT: stays above hero image */
}

.dropdown-content a{
color:#355e4c;
padding:12px 15px;
}


.dropdown:hover .dropdown-content{
display:block;
}


.dropdown-content a:hover{
background:#355e4c;
color:white;
}


.hero{
position:relative;
z-index:1;
}

.hero img{
width:100%;
height:600px;
object-fit:cover;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
background:rgba(255,255,255,.85);
padding:30px;
z-index:2;
}

.hero-text h1{
font-size:50px;
color:#355e4c;
}


.btn{
display:inline-block;
margin-top:15px;
background:#355e4c;
color:white;
padding:12px 25px;
text-decoration:none;
transition:0.3s;
border-radius:5px;
}

.btn:hover{
background:#ff7f50;
color:black;
}


.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
padding:20px;
}

.card{
background:white;
padding:15px;
border-radius:10px;
text-align:center;
box-shadow:0 0 10px rgba(0,0,0,.1);
transition:0.3s;
}

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

.card img{
width:100%;
height:250px;
object-fit:cover;
}

.card a{
display:inline-block;
margin-top:10px;
background:#355e4c;
color:white;
padding:10px 20px;
text-decoration:none;
border-radius:5px;
transition:0.3s;
}

.card a:hover{
background:#ff7f50;
color:black;
}

/* ================= DROPDOWN FIX (MAIN ISSUE FIX) ================= */
/* This ensures dropdown NEVER goes behind hero images */
header, nav{
position:relative;
z-index:1000;
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
padding:15px 20px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
z-index:9999;
}

/* ================= FOOTER ================= */
footer{
background:#355e4c;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}
.made-with-love-bg{
position:relative;
min-height:500px;
display:flex;
align-items:center;
overflow:hidden;
z-index:1;
}

/* BACKGROUND IMAGE FIX */
.made-with-love-bg::before{
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;

background-image:url("../b5.png");
background-size: contain;
background-repeat: no-repeat;
background-position:center;

 max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  
opacity:0.9;
transform:scale(1.05);
z-index:0;
}

/* TEXT MUST STAY ABOVE IMAGE */
.cleartxt{
position:relative;
z-index:2;
color:black;
}
.welcome{
padding:40px 20px;
text-align:center;
}

.welcome h1{
font-size:30px;
color:#355e4c;
margin-bottom:5px;
}

.welcome p{
font-size:20px;
max-width:800px;
margin:0 auto;
line-height:1.6;
}
/* Banner */
.banner{
    width:60%;
    height:auto;
    display:block;
    margin:20px auto;
}

.flavour {
    display: flex;
    flex-direction: column;  /* stack image on top of text */
    align-items: flex-start; /* keep everything on the left */
    width: 250px;            /* optional: controls card width */
}

.flavour img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}


.description {
    text-align: left;
}
.flavour button{
    background:#355e4c !important;
    color:white !important;
    border:none;
    padding:12px 20px;
    border-radius:5px;
    cursor:pointer;
}

.flavour button:hover{
    background:#2a4a3c !important;
}
/* ================= SHOPIFY-STYLE NAVBAR ================= */

.navbar{
    background:#355e4c;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
}

.logo img{
    width:60px;
    height:60px;
    border-radius:50%;
}

/* NAV LINKS */
.nav-links{
    display:flex;
    list-style:none;
    gap:25px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:16px;
    padding:10px 15px;
    border-radius:20px;
    transition:0.3s;
}

.nav-links a:hover{
    background:#ff7f50;
    color:black;
}

/* DROPDOWN */
.dropdown{
    position:relative;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:white;
    min-width:180px;
    border-radius:8px;
    overflow:hidden;
}

.dropdown-content a{
    color:#355e4c;
    display:block;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* ================= HAMBURGER ================= */

.menu-toggle{
    display:none;
    font-size:28px;
    color:white;
    cursor:pointer;
}

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

@media screen and (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        width:100%;
        background:#355e4c;
        position:absolute;
        top:80px;
        left:0;
        padding:20px;
        gap:10px;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        width:100%;
        text-align:center;
        background:rgba(255,255,255,0.1);
    }

    .dropdown-content{
        position:static;
        background:#2f5243;
    }
}