*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Segoe UI",sans-serif;
}

html{scroll-behavior:smooth;}

body{
  background:#f3e0c7;
  color:#333;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* TOP BAR */
.topbar{
  background:#3a2a1a;
  color:#fff;
  padding:8px 20px;
  display:flex;
  justify-content:space-between;
  font-size:14px;
}

.topbar a{
  color:#ffcc00;
  margin-left:10px;
  text-decoration:none;
  font-weight:bold;
}

.topbar a:hover{opacity:0.8;}

/* HEADER */
header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
  background:#4b321f;
  color:white;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{width:40px;}

.logo span{
  font-size:22px;
  font-weight:bold;
  color:#ffcc00;
}

nav ul{
  list-style:none;
  display:flex;
}

nav ul li{margin-left:20px;}

nav ul li a{
  color:white;
  text-decoration:none;
  font-weight:bold;
}

nav ul li a:hover{color:#ffcc00;}

.burger{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* HERO */
.hero{
  background:url("../Images/cafe/burger.jpg") no-repeat center/cover;
  height:80vh;
  display:flex;
  align-items:center;
  color:white;
}

.hero .container{margin-left:0;}

.hero-content h1{
  font-size:46px;
  font-weight:900;
  color:#ffcc00;
  text-transform:uppercase;
}

.hero-content p{
  margin-top:15px;
  font-size:18px;
  max-width:600px;
}

/* ABOUT */
.about{padding:80px 0;}

.about-flex{
  display:flex;
  align-items:center;
  gap:60px;
}

.about-text{flex:1;}

.about-text h2{
  color:#ffcc00;
  margin-bottom:20px;
  font-size: 35px;
}

.about-text p{
  margin-bottom:15px;
  line-height:1.7;
}

.about-circle{
  flex:1;
  display:flex;
  justify-content:center;
}

.about-circle div{
  width:350px;
  height:350px;
  border-radius:50%;
  background-image:url("../Images/cafe/burger1.jpg");
  background-size:cover;
  background-position:center;
  border:6px solid #ffcc00;
}

/* MENU */
.menu{
  padding:80px 0;
  text-align:center;
}

.menu h2{
  color:#ffcc00;
  margin-bottom:40px;
  font-size: 50px;
}

.menu-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.menu-card{
  background:white;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 4px 8px rgba(0,0,0,0.2);
  transition:0.3s;
}

.menu-card:hover{
  transform:translateY(-5px);
}

.menu-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.menu-card h3{
  color:#ffcc00;
  margin:10px 0;
}

.menu-card p{
  padding:0 10px 15px;
  font-size:14px;
}

/* CONTACT */
.contact{
  background:#e5c9a5;
  padding:80px 0;
  text-align:center;
}

.contact-box{
  background:white;
  max-width:500px;
  margin:auto;
  padding:30px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.contact-box h2{
  color:#ffcc00;
  margin-bottom:15px;
}

.contact-box a{
  display:block;
  margin:12px 0;
  color:#4b321f;
  text-decoration:none;
  font-weight:bold;
  font-size:16px;
}

.contact-box a:hover{color:#ffcc00;}

/* CONTACT FLEX LAYOUT */
.contact-flex{
  display:flex;
  gap:50px;
  align-items:stretch;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* OTHER FOODS SECTION */
.other-foods{
  flex:1.2;   /* smaller side */
  display: flex;
  flex-direction: column;
}

.other-foods h3{
  color:#4b321f;
  margin-bottom:10px;
  text-align:center;
  font-size:25px;
}

/* SMALLER MINI CARDS */
.food-mini-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.food-mini-card{
  background:white;
  padding:8px 10px;   /* reduced padding */
  border-radius:6px;
  text-align:center;
  font-size:15px;     /* smaller text */
  font-weight: 30px;
  font-weight:600;
  box-shadow:0 2px 5px rgba(0,0,0,0.12);
  transition:0.3s;
}

.food-mini-card:hover{
  background:#ffcc00;
  transform:translateY(-3px);
  cursor:pointer;
}

/* BIGGER CONTACT BOX */
.contact-box{
  flex:1.5;      /* make it larger */
  background:white;
  padding:50px;  /* increase size */
  border-radius:12px;
  box-shadow:0 6px 15px rgba(0,0,0,0.25);
}

.contact-box h2{
  font-size:26px;
  margin-bottom:20px;
}

.contact-box a{
  font-size:18px;
  margin:15px 0;
}

/* BUTTONS */
.buttons{
  text-align:center;
  margin:50px 0;
}

.buttons a{
  background:#ffcc00;
  color:black;
  padding:12px 25px;
  margin:10px;
  border-radius:5px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s ease;
  display:inline-block;
}
.buttons a:hover{
  background:#e6b800;              /* slightly darker gold */
  transform:translateY(-4px);      /* lift effect */
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

/* FOOTER */
footer{
  background:#3a2a1a;
  color:white;
  text-align:center;
  padding:20px;
}

/* FLOATING BUTTONS (PERFECT CIRCLE) */
.float-btn{
  position:fixed;
  right:20px;
  width:55px;
  height:55px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:white;
  font-size:22px;
  z-index:999;
  text-decoration:none;
}

.whatsapp{
  bottom:90px;
  background:#25d366;
}

.email{
  bottom:20px;
  background:#ffcc00;
  color:black;
}

/* MOBILE */
@media(max-width:900px){
  .menu-grid{grid-template-columns:repeat(2,1fr);}
  .about-flex{flex-direction:column;text-align:center;}
}

@media(max-width:768px){
  nav ul{
    display:none;
    flex-direction:column;
    align-items: center;
    text-align: center;
    background:#4b321f;
    position:absolute;
    top:60px;
    right:0;
    width:100px;
    padding: 20px 0;
  }

  nav ul li{
  width:100%;
}

nav ul li a{
  display:block;
  width:100%;
  padding:12px 0;
  text-align:center;
}

  nav ul.show{display:flex;}
  .burger{display:block;}
  .menu-grid{grid-template-columns:1fr;}
  .hero-content h1{font-size:28px;}

  /* Make Other Foods long on mobile */
.food-mini-grid{
  grid-template-columns:1fr;  /* single column */
}

.food-mini-card{
  width:100%;
  padding:15px;
  font-size:14px;
}

/* STACK BUTTONS NICELY ON MOBILE */
.buttons{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:15px;
}

.buttons a{
  width:90%;
  text-align:center;
  padding:14px;
}
}