* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}

body {
  background-color: #000;
  color: white;
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  margin: 0;/* already done, but required here */
  align-items: center;
  margin-top: 100px;
  scrollbar-width: none; /* match or slightly exceed your header height */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: rgba(0, 0, 0, 0.8); /* semi-transparent black */
  z-index: 1000; /* make sure it's above other content */
  backdrop-filter: blur(8px); /* optional: adds a blur behind */
}
@font-face {
  font-family: "BlippoBlack";
  src: url("fonts/Blippo Black Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  display: none;
}

.menu-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "BlippoBlack", sans-serif;
  font-size: 24px;
  color: orange;
  text-transform: uppercase;
  font-weight: bold;
  font-weight: 900;
}
.toplink {
  text-decoration: none;
  color: inherit;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.halal-badge {
  height: 62px;
  width: 62px;
}

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

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}
#your-menu{
  display: none;
}
.lang-switcher {
  margin-left: 0px;
}

.lang-switcher select {
  padding: 0px 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  background-color: black;
  color: white;
  border: none;
  cursor: pointer;
  appearance: none;
}

.menu-btn {
  background-color: orange;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}

/* First background on the full section */
.hero {
  position: relative;
  height: 90vh;
  background: url("images/bk1.png") no-repeat center center;
  background-size: cover; /* or cover if you prefer */
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Second background on inner container */
.hero-1 {
  position: relative;
  width: 90%;
  max-width: 1000px;
  padding: 40px 20px;
  overflow: hidden; /* ensures animation doesn't spill */
  z-index: 2;
}

.hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/background copy.png") no-repeat center center;
  background-size: cover;
  transform: scale(1); /* initial scale */
  animation: zoomInBg 3s ease-out forwards;
  z-index: -1; /* behind the content */
}

/* Your text and content stays above the background */
.hero-text,
.bbq-badge {
  position: relative;
  z-index: 1;
}

/* Keyframes for zoom */
@keyframes zoomInBg {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-text {
  color: white;
  z-index: 2;
}

.hero-text h1 {
  font-family: "Angkor", cursive;
  font-size: clamp(32px, 8vw, 62px); /* scales from 24px to 48px */
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

.hero-text p {
  font-size: clamp(8px, 1vw, 18px); /* scales from 12px to 18px */
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

.bbq-badge {
  position: absolute;
  right: 20%;
  top: 35%;
  padding: 1px 1px;
  font-family: "BlippoBlack", sans-serif;
  background-color: white;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  border: 5px solid #f1c40f;
}
.bbq-badge img {
  height: 100px;
  width: auto;
}
/********************************************************* section 2 *************************************************************/
.asian-experience {
  background: black url("images/bk2.png") no-repeat center center;
  background-size: cover;
  height: 90vh;
  color: white;
  padding: 4rem 2rem;
  font-family: "Georgia", serif;
}

.experience-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  gap: 3rem;
}

.zoom-img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  transform: scale(1.2);
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}

.zoom-img.animate {
  transform: scale(1);
  opacity: 1;
}

.experience-text {
  max-width: 500px;
}

.experience-text h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.experience-text h2 span {
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
}

.subtitle {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-button {
  background-color: white;
  color: black;
  padding: 0.75rem 1.5rem;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 2px 2px 6px rgba(255, 255, 255, 0.2);
}

.call-now {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.call-now i {
  color: orange;
}
/********************************************************* section 3 *************************************************************/
.family-combos {
  background: black url("images/bk2.png") no-repeat center center;
  background-size: cover;
  height: auto;
  color: white;
  padding: 4rem 10rem;
  text-align: center;
  font-family: "Georgia", serif;
  position: relative;
  overflow: hidden;
}

.combo-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.combo-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}
.combo-cards {
  display: flex;
  flex-wrap: nowrap; /* No wrapping — horizontal scroll only */
  overflow-x: auto;
  padding: 60px 100px 1rem 100px;
  gap: 5rem;
  margin-top: 6%;
}

.combo-cards::-webkit-scrollbar {
  height: 8px;
  display: none; /* Chrome, Safari, Opera */
}
.combo-cards::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.combo-cards::-webkit-scrollbar-track {
  background: transparent;
}
.combo-card {
  background-color: #2b2b2b;
  border-radius: 12px;
  padding: 8rem 1rem 3rem;
  width: 280px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
  flex: 0 0 auto;
  scroll-snap-align: start;

  /* Add zoom effect */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.combo-img-wrapper {
  position: absolute;
  top: -60px;
  left: 20%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background-color: black;
}

.combo-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Initial state before zoom */
.zoom-on-scroll {
  opacity: 0;
  transform: scale(0.9);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Zoom effect on scroll into view */
.zoom-on-scroll.zoomed {
  opacity: 1;
  transform: scale(1);
}

.combo-desc {
  font-size: 0.9rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.4;
}

.combo-price {
  font-size: 1.5rem;
  color: #ff9900;
  font-weight: bold;
}

.see-all-btn-wrapper {
  margin-top: 2rem;
}

.see-all-btn {
  background-color: #ff9900;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 153, 0, 0.5);
}

/********************************************************* section 4 *************************************************************/

.desserts-section {
  background-color: black;
  background: black url("images/bk2.png") no-repeat center center;
  background-size: cover;
  color: white;
  padding: 4rem 2rem;
  font-family: "Georgia", serif;
}

.desserts-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.desserts-menu h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.dessert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dessert-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #666;
  cursor: pointer;
  transition: background-color 0.3s ease;
  background-color: transparent;
}

.dessert-list li:hover .dessert-name {
  color: #ff9900; /* Highlight color */
  transform: translateX(8px); /* Move slightly right */
}
.dessert-list li:hover .dessert-price {
  color: #ff9900; /* Highlight color */
}

.dessert-name {
  transition: transform 0.3s ease, color 0.3s ease;
}

.dessert-name {
  text-align: left;
}

.dessert-price {
  text-align: right;
}

.dessert-image img {
  max-width: 360px;
  width: 100%;
  max-height: 400px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid;
}
/* Hidden state */
.slide-in-left,
.slide-in-right {
  opacity: 0;
  transform: translateX(100px); /* default: right */
  transition: transform 1s ease, opacity 1s ease;
}

.slide-in-left {
  transform: translateX(-100px); /* left side */
}

.animate {
  opacity: 1;
  transform: translateX(0);
}

/********************************************************* section 5 *************************************************************/

.service-promise {
  background: black url("images/bk2.png") no-repeat center center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 4rem 2rem 2rem;
  font-family: "Georgia", serif;
}

.promise-content h2 {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.promise-content p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.7;
}

.promise-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.promise-tags button {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
}

.ordering-button {
  margin-top: 1rem;
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.zoom-on-scroll {
  transform: scale(0.95);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}

/* Animate when visible */
.zoom-on-scroll.zoomed {
  transform: scale(1);
  opacity: 1;
}

/* Footer */
.footer-info {
  background: #1a1a1a;
  color: white;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  font-family: "Georgia", serif;
}

.footer-left h3 {
  font-size: 1.7rem;
  line-height: 1.5;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.halal-footer-badge {
  height: 62px;
  width: auto;
  filter: brightness(1.1);
}

.footer-item a {
  color: inherit;
  text-decoration: none;
  font: inherit;
}

.footer-item a:hover {
  text-decoration: none;
}

.footer-item i {
  font-size: 1.2rem;
  color: orange;
}
#footer-typing-text {
  white-space: normal;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}
#footer-typing-text::after {
  content: "|";
  animation: blink 0.8s infinite;
  margin-left: 5px;
  color: orange;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .family-combos {
    padding: 4rem 4rem;
  }

  .combo-cards {
    padding: 60px 30px;
    gap: 2rem;
  }

  .combo-img-wrapper {
    width: 160px;
    height: 160px;
    top: -50px;
  }

  .combo-card {
    width: 240px;
    padding: 6rem 1rem 2rem;
  }

  .desserts-container {
    flex-direction: column;
    padding: 3rem 2rem;
  }

  .experience-content {
    gap: 2rem;
  }
    .floating-menu-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: orange;
    color: white;
    font-weight: bold;
    padding: 0 1rem;
    height: 56px;
    border-radius: 50px;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.4s ease;
    overflow: hidden;
    white-space: nowrap;
  }

  .floating-menu-btn .menu-icon {
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .floating-menu-btn .menu-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .floating-menu-btn .menu-label {
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.6s ease, max-width 0.6s ease;
  }

  .floating-menu-btn.expand .menu-label {
    opacity: 1;
    max-width: 150px;
  }
}
/***********************************************************************************************/

@media (max-width: 1030px) {
  .floating-menu-btn {
    display: flex;
  }
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1000;
    padding: 10px 20px;
  
  }
  /* Header */
  .menu-toggle {
    display: block;
  }
  #your-menu{
  display: block;
  }
  .menu-btn{
    display: none;
  }
  .menu-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 83px;
    right: 0;
    text-align: center;
    background-color: #111;
    padding: 20px;
    z-index: 999;
  }

  .menu-panel.show {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .lang-switcher {
    margin-top: 10px;
  }

  .lang-switcher select {
    width: 100%;
  }
  /* Hero Section */
  .hero {
    background: url("images/bkmobile.png") no-repeat center center;
    background-size: cover; /* or cover if you prefer */
    padding: 3rem 1rem;
    flex-direction: column;
    height: 90vh;
    margin-top: -50px;
  }

  .hero-1 {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 100%;
    padding: 40px 20px;
    overflow: hidden; /* ensures animation doesn't spill */
    z-index: 2;
  }

  .hero-1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/bk.png") no-repeat center center;
    background-size: cover;
    transform: scale(1); /* initial scale */
    animation: zoomInBg 3s ease-out forwards;
    z-index: -1; /* behind the content */
  }

  /* Your text and content stays above the background */
  .hero-text,
  .bbq-badge {
    position: relative;
    z-index: 1;
  }


  .hero-text {
    color: white;
    z-index: 2;
  }

  .hero-text h1 {
    font-family: "Angkor", cursive;
    font-size: 42px; /* scales from 24px to 48px */
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 12px; /* scales from 12px to 18px */
    max-width: 400px;
    margin: 0 auto;
    color: white;
  }

  .bbq-badge {
    position: absolute;
    right: 15%;
    top: 60%;
    padding: 1px 1px;
    font-family: "BlippoBlack", sans-serif;
    background-color: white;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    border: 5px solid #f1c40f;
  }
  .bbq-badge img {
    height: 100px;
    width: auto;
  }

  /* Asian Experience */
  .asian-experience {
    height: auto;
  }

  .experience-content {
    flex-direction: column;
    text-align: center;
  }

  .zoom-img {
    max-width: 90%;
    margin: 0 auto;
  }

  .experience-text h2 {
    font-size: 2.5rem;
  }

  .experience-text h2 span {
    font-size: 2.4rem;
  }

  .description,
  .subtitle {
    font-size: 0.9rem;
  }

  .cta-group {
    flex-direction: column;
  }

  /* Family Combos */
  .family-combos{
    padding: 10px 10px;
  }
  .combo-cards {
    gap: 1.5rem;

  }

  .combo-card {
    width: 220px;
    padding: 5rem 1rem 2rem;
  }

  .combo-img-wrapper {
    width: 140px;
    height: 140px;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
  }

  .combo-title {
    font-size: 2rem;
  }

  .combo-subtitle {
    font-size: 0.95rem;
  }

  /* Desserts Section */
  .desserts-container {
    padding: 0px;
    flex-direction: column-reverse;
    overflow-x: hidden;
  }
  #desserts-container1{
    flex-direction: column;
    overflow-x: hidden;
  }
  .desserts-section {
    padding: 3rem 1rem;
    text-align: center;
    overflow-x: hidden;
  }

  .dessert-image img {
    max-width: 90%;
  }

  .desserts-menu h2 {
    font-size: 2rem;
  }

  .dessert-list li {
    font-size: 1.1rem;
  }

  /* Service Promise */
  .promise-content h2 {
    font-size: 2rem;
  }

  .promise-content p {
    font-size: 0.95rem;
  }

  .promise-tags button,
  .ordering-button {
    font-size: 0.9rem;
  }
  .promise-tags {
    margin-bottom: 0px;
  }

  /* Footer */
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 20px 30px;
  }

  .footer-right {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-left h3 {
    font-size: 1.5rem;
  }
  
}
@media (max-width: 420px) {
  header {
        max-width:420px;
      }
}


