:root {
    --primary: #ED0684;
    --primary-shade: #be066c;
    --accent: #FFCF00;
    --dark: #550D65;
    --darker: #19001f;
    --light: #FFF2D3;
    --white: #FFFFFF;
    /* --light-60: #fefbefa6;
    --light-40: #fefbef79; */

    --small: 0.8rem;
    --extrasmall: 0.64rem;
    --font-primary: "Jost", sans-serif;
    --font-accent: "Bungee", sans-serif;
    --fontsize-default: 20px;

    --shadow-1: 0px 3px 15px 3px rgba(85, 13, 101, 0.21);
}


/* GENERAL */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}
body {
    margin: 0px;
    background-color: var(--white);
    font-family: var(--font-primary);
    font-size: var(--fontsize-default);
}
.container {
  width: 92%;
  margin-inline: auto;
}
.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mt-2 {
  margin-top: 2rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}
.bg-light {
  background-color: var(--light) !important;
}
.txt-light {
  color: var(--light) !important;
}
.txt-darker {
  color: var(--darker) !important;
}
/* Text */
h1, h2, h3, h4, h5 {
    font-family: var(--font-accent);
}
h1 {
  font-size: 1.9rem;
}
.txt-center {
  text-align: center;
}
a {
  color: var(--primary-shade);
}
a:hover {
  color: var(--primary);
}

.highlighted-txt {
  background: linear-gradient(
    to top,
    var(--accent) 50%,
    transparent 50%
  );
  padding: 0 0.2rem;
}

.img-responsive {
    width: 100%;
    height: auto;
}


/* Buttons */
button,
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;

  text-decoration: none;
  text-align: center;
  font-weight: 600;

  background: var(--primary);
  color: var(--light);
  border-radius: 0.8rem;
  box-shadow: var(--shadow-1);
  

  cursor: pointer;
  transition: all 0.3s ease;

  border: none;
}

button:hover,
.btn:hover {
  background-color: var(--primary-shade);
  color: var(--white);
}

button:focus,
.btn:focus {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
button.secondary,
.btn-secondary {
  background: var(--accent);
  color: var(--primary) !important;

}
button.secondary:hover,
.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white) !important;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
a:focus {
  outline: none;
}

/* Optional: custom accessible focus style */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* ===== MENU ===== */
#mobile-brand {
  background-color: var(--primary);
  max-width: 40%;
  padding: 0.4rem 0.8rem;
  box-sizing: border-box;
  border-radius: 0 0 1rem 0;
  box-shadow: var(--shadow-1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 400;
  display: none;
}

#nav-bar {
  display: none;
}

#mobile-btn {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 800;
  display: flex;
  gap: 1rem;
}

#toggle-btn, #book-btn {
  background-color: var(--primary-shade);
  width: 60px;
  height: 60px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  box-shadow: var(--shadow-1);
}

#toggle-btn,
#book-btn {
  color: var(--light);
  border: none;
  cursor: pointer;
}

/* image inside book button */
#book-btn img {
  width: 28px;
  height: auto;
}


#book-btn {
  background-color: var(--accent);
}
/* Mobile Navigation Drawer */
#mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: var(--primary);
  z-index: 700;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  padding: 2rem 1rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}

#mobile-nav.active {
  right: 0;
}
.mobile-nav-logo {
  max-width: 80%;
  height: auto;
  margin-bottom: 3rem;
}
#mobile-nav .menu-ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 600;
}
#mobile-nav .menu-ul a.underline {
  text-decoration: underline;
  color: var(--accent);
}

.menu-ul a {
  color: var(--light);
  text-decoration: none;
}
/* Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 600;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ===== NAVBAR DESKTOP===== */
#nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all .6s ease;
  z-index: 500;
  box-sizing: border-box;
}

#nav-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#nav-links .menu-ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 500;
}
#nav-bar.light {
  background: transparent;
  padding: 0.9rem 0;
  color: var(--light);
}
/* after scroll */
#nav-bar.dark {
  background: var(--primary);
  padding: 0.4rem 0;
  color: var(--light);
  box-shadow: var(--shadow-1);
}
/* By default show light logo */
.logo-light { display: block; }
.logo-dark  { display: none; }
#nav-bar.dark .logo-light { display: none; }
#nav-bar.dark .logo-dark  { display: block; }

ul.menu-ul li a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
}
ul.menu-ul li a:hover {
    text-decoration: underline;
    color: var(--white);
}







/* ===== HERO ===== */
.hero {
  min-height: 74vh;
  padding-top: 0px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-color: black;
  color: var(--light);

  text-align: center;

  position: relative;
  overflow: hidden;
}
.hero-single {
  height: 200px;
}

/* ----- IMAGE LAYERS ----- */
.hero-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  transition: opacity 3s ease-in-out;
  animation: slowZoom 14s infinite alternate;

  z-index: 0;
}
.bg1 { opacity: 1; }
.bg2 { opacity: 0; }

/* ----- OVERLAY ----- */
.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.46);

  z-index: 1;
}

/* ----- CONTENT ON TOP ----- */
.hero > *:not(.hero-bg):not(.hero-overlay) {
  position: relative;
  z-index: 2;
}

/* ----- MOTION ----- */
@keyframes slowZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}


/* ----- INTRO SECTION ----- */
.intro {
  color: var(--darker);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}
.highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.card {
  box-shadow: var(--shadow-1);
  border-radius: 1.2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.img-card img {
  border-radius: 1.2rem 1.2rem 0 0;
}
.body-card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 2rem 2rem 2rem;
}
.body-card h3, footer h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 0 0;
  text-shadow: 1px 1px var(--darker), 2px 2px var(--darker), 3px 3px var(--darker), 4px 4px var(--darker);
}
a.card-link {
  align-self: flex-end;
  color: var(--white);
  margin-top: auto;
  font-weight: 600;
}


/* ===== Reviews ===== */
.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
}
.reviews-slider {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform .6s ease;
}

.review {
  flex: 0 0 100%;
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  box-sizing: border-box;
}

.stars {
  color: #f4b400;
  margin-bottom: .5rem;
}

/* Desktop 2 columns */
@media (min-width: 992px) {
  .review {
    flex: 0 0 50%;
  }

  .reviews-track {
    align-items: stretch;
  }
}

/* Arrows */
.rev-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Arrows styling */
.rev-prev,
.rev-next {
  background: transparent;
  color: var(--darker);
  outline: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .8;
  transition: opacity .2s;
  box-shadow: none;
  margin-bottom: 1rem;
}

.rev-prev:hover,
.rev-next:hover {
  opacity: 1;
  border: none;
}
.rev-prev:focus,
.rev-next:focus {
  outline: 2px solid var(--primary);  /* optional: custom focus for accessibility */
}

.location {
  margin-bottom: 3rem;
}
.location h2 {
  text-align: center;
  font-size: 2.5rem;
}
.location-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

footer {
  background-color: var(--primary);
  color: var(--light);
  font-size: 18px;
}
footer a {
  color: var(--light);
}
footer a:hover {
  color: var(--white);
}
.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0 1rem 0;
  text-align: center;
}
.li-footer {
  list-style: none;
  padding-left: 0;
}
.li-footer a {
  color: var(--light);
}
.footer-bottom p {
  color: var(--darker);
  margin-bottom: 0;
  padding-bottom: 2rem;
}





/* -------------- MENU ---------------- */
.initial {
  margin-top: 7rem;
}
.menu-columns {
  column-count: 1;
  column-gap: 4rem;
}

@media (min-width: 1000px) {
  .menu-columns {
    column-count: 2;
  }
}

.menu-columns h2 {
  margin: 0 0 1rem 0;
  color: var(--primary
  );
}

.menu-columns section:not(:first-child) h2 {
  margin-top: 3rem;
}

/* Never split categories or dishes */
.menu-columns section,
.dish {
  break-inside: avoid;
}

.dish {
  margin-bottom: 1.4rem;
}

.line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

.name {
  font-weight: 700;
}

.price {
  font-weight: 700;
  white-space: nowrap;
}

.desc {
  margin: .2rem 0 0;
  font-size: .9em;
  opacity: .7;
}
.tags {
  display: inline-flex;
  gap: .25rem;
  margin-left: .3rem;
}

.tag {
  font-size: .65em;
  font-weight: 700;
  padding: .1rem .35rem;
  border-radius: .3rem;
  background: var(--accent);
  color: var(--darker);
}

Optional individual colors
.tag.gf { background: #c7e6b0; }
.tag.v  { background: #b0e6d6; }
.tag.df { background: #ffe0a6; }
.tag.p  { background: #ffd1e0; }


.heat::before {
  content: "🌶🌶🌶";
  letter-spacing: -2px;
  opacity: .2;
}

/* Show only amount based on data-heat */
.heat[data-heat="1"]::before {
  content: "🌶";
  opacity: 1;
}

.heat[data-heat="2"]::before {
  content: "🌶🌶";
  opacity: 1;
}

.heat[data-heat="3"]::before {
  content: "🌶🌶🌶";
  opacity: 1;
}





/* --------- CAROUSEL --------- */
.carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    aspect-ratio: 2 / 2; /* ratio for mobile */
    border-radius: 1rem;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover; /* Crops image to fill the space */
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
}

.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

/* Desktop: remove aspect ratio constraint */
@media (min-width: 768px) {
    .carousel {
        aspect-ratio: auto;
    }
    
    .carousel-slide {
        height: auto;
        object-fit: initial;
    }
}




/* --------- Our story --------- */
.intro-half {
  color: var(--darker);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}
.intro-2 {
  color: var(--darker);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}
video {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}
.video-reels {
  display: grid;
  grid-column: 1fr;
  gap: 1rem;
}


/* ===== CONTACT PAGE ===== */
.contact-page {
    padding-top: 100px;
    padding-bottom: 3rem;
}

.contact-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--darker);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Form Section */
.form-logo {
  max-width: 190px;
}
.shadow-title {
  font-size: 1.8rem;
  margin: 1.5rem 0 0 0;
  text-shadow: 1px 1px var(--darker), 2px 2px var(--darker), 3px 3px var(--darker), 4px 4px var(--darker);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--darker);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid rgba(85, 13, 101, 0.2);
    border-radius: 0.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

#form-message {
    display: none;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 500;
}

#form-message.success {
    background: #e6f9ec;
    color: #1a7f37;
}

#form-message.error {
    background: #fdecea;
    color: #b42318;
}


/* Booking Invitation */
.booking-invitation {
    background-color: var(--primary);
    color: var(--light);
    padding: 2rem;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-invitation h2 {
    color: var(--accent);
}

.booking-invitation p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    margin-top: 1rem;
}

/* Desktop: Two columns */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}




/* ----- Breakpoints ----- */
/* Tablets & small laptops */
@media (min-width: 768px)  { .container { width: 82%; } }
@media (min-width: 1200px) { .container { width: 76%; } }
@media (min-width: 1600px) { .container { width: 70%; max-width: 1500px; } }



/* Display utility classes */
.only-desk {
  display: none !important;
}


/* Tablets & desktop → show menu */
@media (min-width: 768px) {
  .only-mobile {
    display: none !important;
  }
  
  .only-desk {
    display: block !important;
  }
  .hero {
  min-height: 64vh;
  padding-top: 60px;
  }
  h1 {
    font-size: 2.6rem;
  }
  .intro {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  }
  .intro-2 {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
  .intro-half {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .video-reels {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
  .highlights {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .location-container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    text-align: left;
  }
  
}