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

body{
  background:#fff8f3;
  color:#333;
}

/* HEADER */
header{
  position:sticky;
  top:0;
  background:#b30000;
  color:#fff;
  padding:15px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:10000;
}

.logo{
  font-size:22px;
  font-weight:bold;
}

.logo a{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
}

.logo img{
  height:55px;
  width:auto;
  display:block;
}

.logo span{
  color:#fff;
  font-size:22px;
  font-weight:bold;
}

/* NAV */
nav{
  display:flex;
  gap:20px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

nav a:hover{
  text-decoration:underline;
}

/* HAMBURGER */
.menu-toggle{
  display:none;
  font-size:32px;
  cursor:pointer;
  color:#fff;
  padding:6px 10px;
  border:2px solid #fff;
  border-radius:6px;
  line-height:1;
  transition:0.3s;
}

.menu-toggle:hover{
  background:#fff;
  color:#b30000;
}

/* ===================== HERO SLIDER FIX ===================== */

.hero{
  position:relative;
  height:80vh;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  z-index:1;
}

.slides{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}

/* SLIDES */
.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

/* REMOVE DARK OVERLAY COMPLETELY */
.slide::before{
  display:none;
}

/* ACTIVE SLIDE */
.slide.active{
  opacity:1;
}

/* HERO TEXT ON TOP */
.hero-content{
  position:relative;
  z-index:2;
  padding:20px;
  text-align:center;
}

.hero-content h1{
  font-size:52px;
  margin-bottom:10px;
  text-shadow:0 3px 10px rgba(0,0,0,0.6);
}

.hero-content p{
  font-size:22px;
  text-shadow:0 3px 10px rgba(0,0,0,0.6);
}

/* SECTIONS */
section{
  padding:60px 20px;
  max-width:1100px;
  margin:auto;
}

.title{
  text-align:center;
  font-size:28px;
  margin-bottom:30px;
  color:#b30000;
}

/* FEATURES */
.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.box{
  background:#fff;
  padding:25px;
  border-radius:12px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  transition:all 0.3s ease;
  cursor:pointer;
}

.box:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

/* MENU */
.menu{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}

.item{
  height:180px;
  background-size:cover;
  background-position:center;
  border-radius:12px;
  position:relative;
  overflow:hidden;
  transition:all 0.4s ease;
  cursor:pointer;
}

.item:hover{
  transform:scale(1.05);
}

.item .overlay{
  position:absolute;
  bottom:0;
  width:100%;
  background:rgba(0,0,0,0.6);
  color:#fff;
  text-align:center;
  padding:10px;
  font-weight:bold;
  transition:all 0.3s ease;
}

.item:hover .overlay{
  background:rgba(179,0,0,0.85);
}

.menu-heading{
    font-size:32px;
    font-weight:700;
    color:#5c2d0c;
    margin:60px 0 25px;
    text-align:center;
    position:relative;
}

.menu-heading::after{
    content:"";
    display:block;
    width:80px;
    height:3px;
    background:#d4a017;
    margin:10px auto 0;
}

/* ================= CONTACT PAGE ================= */

.contact-page{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:30px;
}

/* LEFT SIDE */

.contact-info{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2{
    color:#b30000;
    margin-bottom:25px;
}

.info-box{
    margin-bottom:25px;
}

.info-box h3{
    color:#b30000;
    margin-bottom:8px;
}

.info-box a{
    color:#333;
    text-decoration:none;
}

.info-box a:hover{
    color:#b30000;
}

/* RIGHT SIDE */

.contact-form{
    background:#fff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2{
    color:#b30000;
    margin-bottom:25px;
}

.form-group{
    margin-bottom:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:none;
    border-color:#b30000;
}

.contact-btn{
    width:100%;
    background:#b30000;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.contact-btn:hover{
    background:#8f0000;
}

/* MAP */

.map-section{
    margin-top:50px;
}

.map-section h2{
    text-align:center;
    color:#b30000;
    margin-bottom:20px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* MOBILE ORDER:
   Form → Details → Map
*/

@media(max-width:768px){

    .contact-wrapper{
        display:flex;
        flex-direction:column;
    }

    .contact-form{
        order:1;
    }

    .contact-info{
        order:2;
    }

    .map-section{
        order:3;
    }

    .map-section iframe{
        height:350px;
    }
}

.success-msg{
    background:#d4edda;
    color:#155724;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
}

.error-msg{
    background:#f8d7da;
    color:#721c24;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
}

/* ================= MENU PAGE ================= */

.menu-hero{
    height:250px;
    background:linear-gradient(rgba(179,0,0,0.7),rgba(179,0,0,0.7)),
    url('images/slider1.jpeg') center/cover;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
    padding:20px;
}

.menu-hero h1{
    font-size:42px;
    margin-bottom:10px;
    font-weight:bold;
}

.menu-hero p{
    font-size:18px;
    opacity:0.95;
}

/* ================= INTRO SECTION ================= */

.menu-intro{
    max-width:900px;
    margin:50px auto 20px auto;
    padding:0 20px;
    text-align:center;
}

.menu-intro h2{
    font-size:28px;
    color:#b30000;
    margin-bottom:15px;
    font-weight:bold;
}

.menu-intro p{
    font-size:16px;
    line-height:1.7;
    color:#444;
    margin-bottom:15px;
}

/* ================= MENU GRID ================= */

.menu-page{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
}

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

/* ================= MENU CARD ================= */

.menu-card{
    height:200px;
    border-radius:15px;
    background-size:cover;
    background-position:center;
    position:relative;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

/* HOVER EFFECT */
.menu-card:hover{
    transform:scale(1.05);
}

/* DARK OVERLAY FOR READABILITY */
.menu-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.25);
}

/* ================= TEXT OVERLAY ================= */

.menu-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,0.6);
    color:#fff;
    text-align:center;
    padding:12px;
    font-weight:bold;
    font-size:16px;
}

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

@media(max-width:768px){

    .menu-hero h1{
        font-size:28px;
    }

    .menu-hero p{
        font-size:15px;
    }

    .menu-card{
        height:180px;
    }

    .menu-intro h2{
        font-size:22px;
    }

    .menu-intro p{
        font-size:14px;
    }
}

/* ================= WHY US PAGE ================= */

.why-intro{
    max-width:900px;
    margin:60px auto;
    padding:0 20px;
    text-align:center;
}

.why-intro h2{
    color:#b30000;
    font-size:32px;
    margin-bottom:20px;
}

.why-intro p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
    font-size:16px;
}

/* FEATURES */

.why-features{
    max-width:1200px;
    margin:0 auto 70px;
    padding:0 20px;
}

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

.why-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
}

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

.why-icon{
    font-size:42px;
    margin-bottom:15px;
}

.why-card h3{
    color:#b30000;
    margin-bottom:12px;
}

.why-card p{
    color:#555;
    line-height:1.7;
}

/* PROMISE */

.our-promise{
    max-width:1000px;
    margin:0 auto 70px;
    padding:0 20px;
}

.promise-box{
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.promise-box h2{
    color:#b30000;
    margin-bottom:20px;
    text-align:center;
}

.promise-box p{
    margin-bottom:20px;
    line-height:1.8;
    color:#555;
}

.promise-box ul{
    padding-left:20px;
}

.promise-box li{
    margin-bottom:12px;
    color:#444;
}

/* CTA */

.why-cta{
    background:#b30000;
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.why-cta h2{
    margin-bottom:15px;
    font-size:32px;
}

.why-cta p{
    margin-bottom:25px;
    font-size:18px;
}

.cta-btn{
    display:inline-block;
    background:#fff;
    color:#b30000;
    padding:14px 30px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
}

/* MOBILE */

@media(max-width:768px){

    .why-intro h2,
    .why-cta h2{
        font-size:26px;
    }

    .promise-box{
        padding:25px;
    }
}

/* ADDRESS */
.address{
  background:#b30000;
  color:#fff;
  text-align:center;
  padding:40px;
  border-radius:12px;
}


.allergens-page{
  max-width:1200px;
  margin:60px auto;
  padding:0 20px;
}

.allergens-page h1{
  text-align:center;
  color:#b30000;
  margin-bottom:20px;
}

.allergen-note{
  text-align:center;
  margin-bottom:30px;
  line-height:1.6;
}

.table-wrapper{
  overflow-x:auto;
}

.allergens-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.allergens-table th{
  background:#b30000;
  color:#fff;
  padding:15px;
}

.allergens-table td{
  padding:12px;
  text-align:center;
  border:1px solid #ddd;
}

.allergens-table tr:nth-child(even){
  background:#f9f9f9;
}

.allergens-table tr:hover{
  background:#fff3f3;
}

.allergen-warning{
    margin-top:40px;
    background:#fff3f3;
    border-left:5px solid #b30000;
    padding:25px;
    border-radius:10px;
}

.allergen-warning h3{
    color:#b30000;
    margin-bottom:15px;
}

.allergen-warning p{
    color:#555;
    line-height:1.7;
    margin-bottom:10px;
}

@media(max-width:768px){

    .allergen-warning{
        padding:20px;
    }
}

/* FOOTER */
footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
}

footer a,
footer a:visited {
  color:#fff;
  text-decoration:none;
}

footer a:hover,
footer a:focus {
  text-decoration:underline;
}

/* ================= WHATSAPP BUTTON ================= */
.whatsapp-btn{
  position:fixed;
  bottom:20px;
  left:20px;
  width:60px;
  height:60px;
  background:#D3D3D3;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  z-index:9999;
  transition:0.3s;
}

.whatsapp-btn img{
  width:44px;
  height:44px;
}

.whatsapp-btn:hover{
  transform:scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-btn{
  animation:pulse 2s infinite;
}

/* ================= TOP BUTTON ================= */
.top-btn{
  position:fixed;
  bottom:20px;
  right:20px;
  width:50px;
  height:50px;
  background:#b30000;
  color:#fff;
  border:none;
  border-radius:50%;
  font-size:20px;
  cursor:pointer;
  display:none;
  box-shadow:0 5px 15px rgba(0,0,0,0.3);
  z-index:9999;
  transition:0.3s;
}

.top-btn:hover{
  transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:768px){

.menu-toggle{
  display:block;
}

nav{
  display:none;
  position:absolute;
  top:65px;
  right:0;
  background:#b30000;
  flex-direction:column;
  width:220px;
  padding:10px;
  border-left:2px solid #fff;
}

nav a{
  padding:12px;
  border-bottom:1px solid rgba(255,255,255,0.2);
}

nav.active{
  display:flex;
}

.hero-content h1{
  font-size:32px;
}

.hero-content p{
  font-size:18px;
}
}