*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body{
    background:#fffaf2;
    color:#333;
}

/* HEADER */
.header{
  background:#ffffff;
  padding:14px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);

}
.logo{
    flex:0 0 auto;

}
.logo span{
    color:#ffd36a;
}
.nav a{
    color:#fff;
    text-decoration:none;
    margin-left:10px;
    font-weight:500;
}

/* HERO */
.hero{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    padding:60px 8%;
    background:linear-gradient(to right,#fff5df,#ffe4a3);
}
.hero-text{
    flex:1;
}
.hero-text h1{
    font-size:42px;
    color:#7a4a0e;
}
.hero-text p{
    margin:20px 0;
    font-size:18px;
    line-height:1.6;
}
.btn{
    display:inline-block;
    padding:12px 30px;
    background:#7a4a0e;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}
.hero-img{
    flex:1;
    text-align:center;
}
.hero-img img{
    width:320px;
}

/* BENEFITS */
.benefits{
    padding:60px 8%;
    text-align:center;
}
.benefits h2{
    color:#7a4a0e;
}
.benefit-box{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}
.box{
    background:#fff;
    padding:25px;
    border-radius:8px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.box h3{
    margin:10px 0;
    color:#7a4a0e;
}

/* PRODUCT */
.product{
    padding:60px 8%;
    background:#fff3d4;
    text-align:center;
}
.product img{
    width:230px;
    margin:20px 0;
}
.desc{
    max-width:600px;
    margin:10px auto;
}
.price{
    font-size:26px;
    color:#7a4a0e;
    margin:10px 0;
}
.buy-form{
    margin-top:15px;
}
.buy-form input{
    width:70px;
    padding:8px;
}
.buy-form button{
    padding:10px 25px;
    background:#7a4a0e;
    color:#fff;
    border:none;
    cursor:pointer;
    border-radius:4px;
}

/* TESTIMONIAL */
.testimonial{
    padding:50px 8%;
    text-align:center;
}
.testimonial h2{
    color:#7a4a0e;
}
.testimonial p{
    font-style:italic;
    margin:15px 0;
}

/* CONTACT */
.contact{
    padding:60px 8%;
    background:#fff;
    text-align:center;
}
.contact h2{
    color:#7a4a0e;
}
.contact form{
    max-width:420px;
    margin:auto;
}
.contact input,
.contact textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ccc;
}
.contact button{
    padding:12px;
    width:100%;
    background:#7a4a0e;
    color:#fff;
    border:none;
    cursor:pointer;
}

/* FOOTER */
footer{
    background:#4a2c00;
    color:#fff;
    text-align:center;
    padding:15px;
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero-text h1{
        font-size:32px;
    }
    .header{
        flex-direction:column;
        gap:10px;
    }
}



/* LOGIN / SIGNUP BUTTONS */
.nav-btn{
  background:#ffd36a;
  color:#7a4a0e !important;
  padding:6px 14px;
  border-radius:4px;
  margin-left:10px;
  font-weight:600;
}
.nav-btn.outline{
  background:transparent;
  border:1px solid #ffd36a;
  color:#ffd36a !important;
}

/* POPUP MODAL */
.modal-overlay{
  position:fixed;
  top:0; left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}
.modal{
  background:#fff;
  width:90%;
  max-width:380px;
  padding:30px;
  border-radius:10px;
  text-align:center;
}
.modal h2{
  color:#7a4a0e;
}
.modal p{
  margin:10px 0 20px;
}
.modal a{
  display:block;
  margin:10px 0;
  padding:12px;
  background:#7a4a0e;
  color:#fff;
  text-decoration:none;
  border-radius:5px;
}
.modal a.signup{
  background:#ffd36a;
  color:#7a4a0e;
}
.close-btn{
  position:absolute;
  top:15px;
  right:20px;
  font-size:22px;
  cursor:pointer;
}



/* ===== HEADER NAV HOVER EFFECTS ===== */



.nav a{
  color:#2f2f2f;
  font-weight:500;
margin-left:100px;
gap:22px; 
margin-right:auto;
}

/* underline animation */
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  background:#ffd36a;
  transition:width 0.35s ease;
}

.nav a:hover::after{
  width:100%;
}

/* lift + glow */
.nav a:hover{
  transform:translateY(-2px);
  text-shadow:0 2px 6px rgba(255,211,106,0.6);
}

/* ===== LOGIN / SIGNUP BUTTON HOVER ===== */
/* ===== LOGIN / SIGNUP CTA BUTTONS (PREMIUM) ===== */

.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  margin-left:12px;
  border-radius:25px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.5px;
  text-decoration:none;
  transition:all 0.35s ease;
  background:linear-gradient(135deg,#ffd36a,#ffbf3f);
  color:#5a3300 !important;
  box-shadow:0 6px 15px rgba(255,195,63,0.45);
}

/* hover effect */
.nav-btn:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 25px rgba(255,195,63,0.6);
  background:linear-gradient(135deg,#ffbf3f,#ffd36a);
}

/* SIGNUP button (outlined luxury look) */
.nav-btn.outline{
  background:transparent;
  border:2px solid #ffd36a;
  color:#ffd36a !important;
  box-shadow:none;
}

/* signup hover */
.nav-btn.outline:hover{
  background:linear-gradient(135deg,#ffd36a,#ffbf3f);
  color:#5a3300 !important;
  box-shadow:0 10px 25px rgba(255,195,63,0.6);
  transform:translateY(-3px) scale(1.05);
}



/* ===== LOGO STYLING ===== */

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.logo img{
  height:45px;          /* adjust if needed */
  width:auto;
  transition:all 0.4s ease;
}

/* logo hover effect */
.logo:hover img{
  transform:scale(1.05);
  filter:drop-shadow(0 4px 10px rgba(255,211,106,0.7));
}

/* optional brand text */
.logo span{
  font-size:24px;
  font-weight:700;
  color:#fff;
  letter-spacing:1px;
}

.logo span strong{
  color:#ffd36a;
}

@media(max-width:768px){
  .logo img{
    height:38px;
  }
  .logo span{
    font-size:20px;
  }
}



/* ===== HEADER SHADOW ON SCROLL FEEL ===== */
.header{
  transition:box-shadow 0.4s ease;
}

.header:hover{
  box-shadow:0 8px 20px rgba(0,0,0,0.18);
}



/* ===== HEADER MOBILE RESPONSIVE ===== */

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* hamburger icon */
.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
  color:#2f5d3a;
}

/* MOBILE VIEW */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#fffaf2;
    flex-direction:column;
    align-items:center;
    display:none;
    padding:20px 0;
    box-shadow:0 6px 15px rgba(0,0,0,0.15);
  }

  .nav a{
    margin:10px 0;
    font-size:16px;
  }

  .nav-btn{
    width:80%;
    text-align:center;
    margin:8px 0;
  }

  .nav.show{
    display:flex;
  }

  .logo img{
    height:40px;
  }
}




/* ===== STICKY HEADER (MOBILE ONLY) ===== */

@media(max-width:768px){

  .header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fffaf2;
    transition:box-shadow 0.3s ease;
  }

  /* shadow when scrolling */
  .header.scrolled{
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
  }

}
