
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html, body {
  max-width: 100%;
}
* p{
  font-size: 18px !important;
}
.font1{
    font-family: 'Fredericka the Great', cursive !important;
}
/* Sticky & base navbar styling */
.nav_sec {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.main-navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 0px !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* On scroll – add class with JS */
.main-navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 0.45rem 0;
}

/* Nav links */
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0;
  margin: 0 0.75rem;
  position: relative;
  color: #333 !important;
}

/* Underline hover animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);; /* Accent color – change if you want */
  transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Home icon size */
.navbar-nav .nav-link img {
  width: 30px;
  margin-right: 6px;
}

/* Center logo (desktop) */
.nav-logo img {
    height: 110px;
    width: auto;
    border-radius: 100px;
    object-fit: cover;
}

/* Mobile logo */
.mobile-logo {
  height: 48px;
  width: auto;
}

/* Alignment tweaks */
.left-nav .nav-item:first-child .nav-link {
  margin-left: 0;
}

.right-nav .nav-item:last-child .nav-link {
  margin-right: 0;
}

/* Mobile styles */
@media (max-width: 991.98px) {
  .main-navbar {
    background: #ffffff;
  }

  .navbar-collapse {
    padding-top: 0.75rem;
  }

  .navbar-nav {
    margin-bottom: 0.5rem;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }

  .nav-logo img{
        height: 85px;
  }
}



/* Banner Section */

.main_sec {
  position: relative;
  overflow: hidden;
}

/* Banner layout */
.banner_text {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 5vw;
  background: url("./Imgs/banner_back.png") center center / cover no-repeat; /* gradient image */
}

/* Text */
.banner-copy h1 {
    font-family: "Poppins", system-ui, sans-serif;
    font-size: 54px;
    line-height: 100px;
    font-weight: 700;
    color: #000000;
}

/* Chef */
.banner-chef {
  position: relative;
}
.chef-img {
  width: 385px;
}

/* Skewers (same image rotated for each corner) */
.skewer {
  position: absolute;
  width: 140px;
  opacity: 0;
}

/* Positions */
.skewer-top-left {
    top: -9px;
    left: -32px;
    transform: rotate(-18deg) !important;
}
.skewer-top-right {
    top: -10px;
    right: -28px;
    transform: rotate(-95deg) !important;
}
.skewer-bottom-left {
    bottom: -10px;
    left: -34px;
    transform: rotate(80deg) !important;
}
.skewer-bottom-right {
    bottom: -16px;
    right: -30px;
    transform: rotate(-187deg) !important;
}

/* ---- INITIAL STATES (before active) ---- */
.banner-copy,
.banner-chef .chef-img,
.skewer {
  opacity: 0;
}

.banner-copy {
    transform: translateX(-60px) !important;
    left: 140px;
    position: relative;
}
.banner-chef .chef-img {
  transform: translateX(80px);
}

/* ---- WHEN SECTION IS ACTIVE ---- */
.main_sec.active .banner-copy {
  animation: textIn 0.7s ease-out forwards;
}

.main_sec.active .banner-chef .chef-img {
  animation: chefIn 0.8s ease-out 0.2s forwards;
}

.main_sec.active .skewer-top-left {
  animation: skewerInTL 0.7s ease-out 0.15s forwards;
}
.main_sec.active .skewer-top-right {
  animation: skewerInTR 0.7s ease-out 0.25s forwards;
}
.main_sec.active .skewer-bottom-left {
  animation: skewerInBL 0.7s ease-out 0.35s forwards;
}
.main_sec.active .skewer-bottom-right {
  animation: skewerInBR 0.7s ease-out 0.45s forwards;
}

/* ---- KEYFRAMES ---- */
@keyframes textIn {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes chefIn {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes skewerInTL {
  from { opacity: 0; transform: translate(-100%, -100%) rotate(-40deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(-40deg); }
}
@keyframes skewerInTR {
  from { opacity: 0; transform: translate(100%, -100%) rotate(40deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(40deg); }
}
@keyframes skewerInBL {
  from { opacity: 0; transform: translate(-100%, 100%) rotate(140deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(140deg); }
}
@keyframes skewerInBR {
  from { opacity: 0; transform: translate(100%, 100%) rotate(-140deg); }
  to   { opacity: 1; transform: translate(0, 0) rotate(-140deg); }
}

/* Responsive */
@media (max-width: 767.98px) {
  .banner_text {
    flex-direction: column-reverse;
    text-align: center;
  }

  .banner-copy {
    margin-top: 20px;
    left: 45px;
  }

  .banner-copy h1 {
    font-size: 22px;
    line-height: 35px;
  }

  .chef-img {
    max-width: 270px;
  }

  .skewer {
    width: 80px;
  }
}



/* About Us Section */

 .about_sec {
    padding: 80px 0;
  }
.about_img_sec img{
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
  .about_tagline {
    display: inline-block;
    font-size: 34px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 900;
  }
  .gradient-text-animate {
  color:  #80f0ff !important;
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;

  -webkit-background-clip: text;
  background-clip: text;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gradient-text-animate {
  text-shadow: 0 4px 0px rgba(0,0,0,0.1);
}


  /* ===== Scroll Animation ===== */
  .js-about-animate {
    opacity: 0;
    transform: translateX(80px); /* start off to the right */
    transition: all 0.7s ease-out;
  }

  /* When in view */
  .js-about-animate.about_in-view {
    opacity: 1;
    transform: translateX(0);
  }

  /* Optional: small screen tweaks */
  @media (max-width: 767.98px) {
    .about_content {
      margin-top: 20px;
      text-align: center;
    }
  }


/* ===== MENU SECTION ===== */
.items_sec {
  padding-bottom: 60px;
}

.menu-sticky {
  position: sticky;
  top: 120px;
  z-index: 9;
}

/* LEFT TABS */
.menu-tabs {
  background: transparent;
}

.tab-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #e6f6fb;
  border-radius: 16px;
  padding: 18px 16px;
  margin-bottom: 16px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 200, 255, 0.08);
  transition: all 0.35s ease;
}

.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 200, 255, 0.18);
}

/* ACTIVE TAB */
.tab-btn.active {
  background: linear-gradient(135deg, #e9fbff, #fffdf5);
  border-color: #bdefff;
  box-shadow: 0 18px 40px rgba(0, 200, 255, 0.25);
  font-size: 20px;
}

/* RIGHT CONTENT */
.menu-content {
  display: none;
  background: linear-gradient(135deg, #f4fdff, #fffefa);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #dff6ff;
  box-shadow: 0 20px 50px rgba(0, 200, 255, 0.18);
  animation: fadeUp 0.45s ease;
}

.menu-content.active {
  display: block;
}

.menu-content h3 {
  font-weight: 700;
  margin-bottom: 22px;
}

/* MENU ITEMS */
.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px dashed #cfeff8;
}

.menu-items li:last-child {
  border-bottom: none;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  
  /* Menu section styles can go here */

.banner_imgitems img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}


.items_main h1 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 800;
}

/* .items_main h4 {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
} */

/* Gradient text for heading */
/* .gradient-text {
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
} */

/* Carousel cards */
.menu-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(128,240,255,0.2);
}

.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(128,240,255,0.17), rgba(255,229,180,0.17));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card > * {
  position: relative;
  z-index: 2;
}

.menu-card h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.menu-card p {
  color: #444;
}

.menu-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* Badge */
.menu-badge {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,229,180,0.9);
  color: #7b4a00;
  font-weight: 600;
}

/* Button */
.menu-btn {
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  color: #000;
}

.menu-btn:hover {
  opacity: 0.9;
  color: #000;
}

/* Carousel controls */
#menuCarousel .carousel-control-prev,
#menuCarousel .carousel-control-next {
  width: 5%;
}

#menuCarousel .carousel-control-prev-icon,
#menuCarousel .carousel-control-next-icon {
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.4));
}

/* Custom indicators */
.custom-indicators {
  position: static;
  margin-top: 20px;
}

.custom-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
  background: #ddd;
}

.custom-indicators .active {
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
}
.menu-card:hover {
  border-color: rgba(128,240,255,0.5);
}


/* Mobile tweaks */
@media (max-width: 767.98px) {
  .items_main h1 {
    font-size: 32px;
  }

  .items_main h4 {
    font-size: 14px;
    margin-bottom: 30px;
  }
}


/* Footer section styles can go here */
.site_footer {
  background: #050910;
  color: #dbe2ea;
  margin-top: 60px;
  font-size: 14px;
  position: relative;
}

.footer_top_border {
  height: 4px;
  background: linear-gradient(90deg, #80f0ff, #ffe5b4);
}

/* Main blocks */
.site_footer .footer_block {
  padding: 30px 0 10px;
}

.footer_logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.footer_text {
  color: #c0cad7;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* Titles */
.footer_title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.footer_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  border-radius: 999px;
}

/* Links list */
.footer_links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.footer_links li {
  margin-bottom: 8px;
  font-size: 16px;
}
.footer_bottom_inner p{
  font-size: 14px !important;
}
.footer_links a {
  text-decoration: none;
  color: #b5c0cf;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer_links a:hover {
  color: #80f0ff;
  transform: translateX(3px);
}

/* Contact */


.footer_contact {
  list-style: none;
  padding: 0;
  margin: 15px 0 12px;
}

.footer_contact li {
  margin-bottom: 6px;
  font-size: 16px;
}

.footer_contact span {
  font-weight: 600;
  color: #e4ebf5;
  margin-right: 4px;
}

.footer_contact a {
  color: #b5c0cf;
  text-decoration: none;
}

.footer_contact a:hover {
  color: #ffe5b4;
}

/* Social */
.footer_social {
  margin-top: 10px;
}

.footer_social span {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 18px;
}

.footer_social_icons {
  display: flex;
  gap: 10px;
}

.footer_social_icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(128, 240, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #dbe2ea;
    font-size: 20px;
    transition: all 0.2s ease;
}

.footer_social_icons a:hover {
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  color: #000;
  border-color: transparent;
}

/* Bottom bar */
.footer_bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
  padding: 12px 0;
  font-size: 12px;
}

.footer_bottom_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer_credits span {
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CONTACT INFO SECTION ===== */
.contact_info_sec {
  padding: 80px 0;
  background: #f9fafc;
}

/* Contact Card */
.contact_info_card {
    height: 100%;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #dff6ff;
}

.contact_info_card h3 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact_desc {
  font-size: 18px;
  color: #555;
  margin-bottom: 28px;
}

/* Info List */
.contact_info_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact_info_list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed #cfeff8;
}

.contact_info_list li:last-child {
  border-bottom: none;
}

.info_icon img{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  /* background: linear-gradient(135deg, #80f0ff, #ffe5b4); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact_info_list small {
  display: block;
  font-size: 13px;
  color: #777;
}

.contact_info_list a,
.contact_info_list span {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

/* CTA Button */
.bn31 {
  background-image:  linear-gradient(135deg, #80f0ff, #ffe5b4); ;
  border-radius: 40px;
  box-sizing: border-box;
  color: #000000;
  display: block;
  height: 50px;
  font-size: 1.4em;
  padding: 4px;
  position: relative;
  text-decoration: none;
  width: 7em;
  z-index: 2;
  font-weight: 700;
  margin-top: 25px;
}

.bn31:hover {
  color: #000000;
}

.bn31 .bn31span {
  align-items: center;
  background: #FFFFFF;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: background 0.5s ease;
  width: 100%;
}

.bn31:hover .bn31span {
  background: transparent;
}

/* Map Card */
.contact_map_card {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.contact_map_card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* Mobile */
@media (max-width: 991px) {
  .contact_info_sec {
    padding: 60px 0;
  }

  .contact_primary_btn {
    font-size: 18px;
  }
}



/* Responsive */
@media (max-width: 767.98px) {
  html, body {
  overflow-x: hidden; /* hides accidental horizontal overflow safely */
}
  .site_footer .footer_block {
    padding: 20px 0 5px;
  }

  .footer_bottom_inner {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* Contact us page styles can go here */

.form_sec {
  padding: 80px 0;
  background: #f9fafc;
}

.form_card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.form_card h2 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 900;
}

.form_subtext {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

/* Gradient Text */
/* .gradient-text {
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
} */

/* Form fields */
.form_group {
  position: relative;
  margin-bottom: 22px;
}

.form_group input,
.form_group select,
.form_group textarea {
  width: 100%;
  padding: 14px 42px 14px 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 20px;
  outline: none;
  background: transparent;
  height: 80px;
}

.form_group textarea {
  resize: none;
}

/* Floating labels */
.form_group label {
  position: absolute;
  top: 50%;
  left: 14px;
  font-size: 20px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: 0.2s ease;
  background: #fff;
  padding: 0 6px;
}

.form_group input:focus + label,
.form_group input:valid + label,
.form_group select:focus + label,
.form_group select:valid + label,
.form_group textarea:focus + label,
.form_group textarea:valid + label {
  top: -6px;
  font-size: 20px;
  color: #009fbf;
}

/* Icons */
.form_group .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.6;
}

/* Button */
.form_btn {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
  background: linear-gradient(135deg, #80f0ff, #ffe5b4);
  color: #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Mobile */
@media (max-width: 575px) {
  .form_card {
    padding: 28px 20px;
  }
}



