/*-----------------------------------*\
  #index.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * COLORS
   */

  --gold-crayola: hsl(38, 61%, 73%);
  --quick-silver: hsla(0, 0%, 65%, 1);
  --davys-grey: hsla(30, 3%, 34%, 1);
  --smoky-black-1: hsla(40, 12%, 5%, 1);
  --smoky-black-2: hsla(30, 8%, 5%, 1);
  --smoky-black-3: hsla(0, 3%, 7%, 1);
  --eerie-black-1: hsla(210, 4%, 9%, 1);
  --eerie-black-2: hsla(210, 4%, 11%, 1);
  --eerie-black-3: hsla(180, 2%, 8%, 1);
  --eerie-black-4: hsla(0, 0%, 13%, 1);
  --white: hsla(0, 0%, 100%, 1);
  --white-alpha-20: hsla(0, 0%, 100%, 0.2);
  --white-alpha-10: hsla(0, 0%, 100%, 0.1);
  --black: hsla(0, 0%, 0%, 1);
  --black-alpha-80: hsla(0, 0%, 0%, 0.8);
  --black-alpha-15: hsla(0, 0%, 0%, 0.15);

  /**
   * GRADIENT COLOR 
   */

  --loading-text-gradient: linear-gradient(90deg, transparent 0% 16.66%, var(--smoky-black-3) 33.33% 50%, transparent 66.66% 75%);
  --gradient-1: linear-gradient(to top, hsla(0, 0%, 0%, 0.9), hsla(0, 0%, 0%, 0.7), transparent);

  /* === POPUP MODAL === */

  /* ---------- Branches Dropdown Menu ---------- */

  /* Desktop dropdown */
  .navbar-item.dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111;
    display: none;
    flex-direction: row;
    min-width: 160px;
    z-index: 999;
    border: 1px solid #333;
  }

  .dropdown-menu li a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
  }

  .dropdown-menu li a:hover {
    background-color: #333;
  }

  .navbar-item.dropdown:hover .dropdown-menu {
    display: flex;
  }

  /* Mobile dropdown toggle */
  @media (max-width: 992px) {
    .dropdown-menu {
      position: static;
      display: none;
      background-color: transparent;
      border: none;
    }

    .navbar-item.dropdown.active .dropdown-menu {
      display: flex;
    }

    .dropdown-menu li a {
      color: white;
      padding-left: 20px;
    }
  }

  /* New code */
  .mobile-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  @media (min-width: 993px) {
    .nav-open-btn {
      display: none;
    }
  }


  /**
   * TYPOGRAPHY
   */

  /* font-family */
  --fontFamily-forum: 'Forum',
  cursive;
  --fontFamily-dm_sans: 'DM Sans',
  sans-serif;

  /* font-size */
  --fontSize-display-1: calc(1.3rem + 6.7vw);
  --fontSize-headline-1: calc(2rem + 2.5vw);
  --fontSize-headline-2: calc(1.3rem + 2.4vw);
  --fontSize-title-1: calc(1.6rem + 1.2vw);
  --fontSize-title-2: 2.2rem;
  --fontSize-title-3: 2.1rem;
  --fontSize-title-4: calc(1.6rem + 1.2vw);
  --fontSize-body-1: 2.4rem;
  --fontSize-body-2: 1.6rem;
  --fontSize-body-3: 1.8rem;
  --fontSize-body-4: 1.6rem;
  --fontSize-label-1: 1.4rem;
  --fontSize-label-2: 1.2rem;

  /* font-weight */
  --weight-regular: 400;
  --weight-bold: 700;

  /* line-height */
  --lineHeight-1: 1em;
  --lineHeight-2: 1.2em;
  --lineHeight-3: 1.5em;
  --lineHeight-4: 1.6em;
  --lineHeight-5: 1.85em;
  --lineHeight-6: 1.4em;

  /* letter-spacing */
  --letterSpacing-1: 0.15em;
  --letterSpacing-2: 0.4em;
  --letterSpacing-3: 0.2em;
  --letterSpacing-4: 0.3em;
  --letterSpacing-5: 3px;

  /**
   * SPACING
   */

  --section-space: 70px;

  /**
   * SHADOW
   */

  --shadow-1: 0px 0px 25px 0px hsla(0, 0%, 0%, 0.25);

  /**
   * BORDER RADIUS
   */

  --radius-24: 24px;
  --radius-circle: 50%;

  /**
   * TRANSITION
   */

  --transition-1: 250ms ease;
  --transition-2: 500ms ease;
  --transition-3: 1000ms ease;

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

a,
img,
data,
span,
input,
button,
select,
ion-icon,
textarea {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
select,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--eerie-black-1);
  color: var(--white);
  font-family: var(--fontFamily-dm_sans);
  font-size: var(--fontSize-body-4);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-5);
  overflow: hidden;
  height: 300vh;
}

body.loaded {
  overflow: overlay;
}

body.nav-active {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--gold-crayola);
}





/*-----------------------------------*\
  #TYPOGRAPHY class -
\*-----------------------------------*/

.display-1,
.headline-1,
.headline-2,
.title-1,
.title-2,
.title-3,
.title-4 {
  color: var(--white);
  font-family: var(--fontFamily-forum);
  font-weight: var(--weight-regular);
  line-height: var(--lineHeight-2);
}

.display-1 {
  font-size: var(--fontSize-display-1);
  line-height: var(--lineHeight-1);
}

.headline-1 {
  font-size: var(--fontSize-headline-1);
}

.headline-2 {
  font-size: var(--fontSize-headline-2);
  line-height: var(--lineHeight-6);
}

.title-1 {
  font-size: var(--fontSize-title-1);
}

.title-2 {
  font-size: var(--fontSize-title-2);
}

.title-3 {
  font-size: var(--fontSize-title-3);
}

.title-4 {
  font-size: var(--fontSize-title-4);
}

.body-1 {
  font-size: var(--fontSize-body-1);
  line-height: var(--lineHeight-6);
}

.body-2 {
  font-size: var(--fontSize-body-2);
  line-height: var(--lineHeight-4);
}

.body-3 {
  font-size: var(--fontSize-body-3);
}

.body-4 {
  font-size: var(--fontSize-body-4);
}

.label-1 {
  font-size: var(--fontSize-label-1);
}

.label-2 {
  font-size: var(--fontSize-label-2);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 16px;
}

.separator {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold-crayola);
  transform: rotate(45deg);
}

.contact-label {
  font-weight: var(--weight-bold);
}

.contact-number {
  color: var(--gold-crayola);
  max-width: max-content;
  margin-inline: auto;
}

.hover-underline {
  position: relative;
  max-width: max-content;
}

.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid var(--gold-crayola);
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.contact-number::after {
  bottom: -5px;
}

.text-center {
  text-align: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.section-subtitle::after {
  content: url('../images/separator.svg');
  display: block;
  width: 100px;
  margin-inline: auto;
  margin-block-start: 5px;
}

.btn {
  position: relative;
  color: var(--gold-crayola);
  font-size: var(--fontSize-label-2);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-5);
  max-width: max-content;
  border: 2px solid var(--gold-crayola);
  padding: 12px 45px;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  border-radius: var(--radius-circle);
  background-color: var(--gold-crayola);
  transition: var(--transition-2);
  z-index: -1;
}

.btn .text {
  transition: var(--transition-1);
}

.btn .text-2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: max-content;
  color: var(--smoky-black-1);
}

.btn:is(:hover, :focus-visible)::before {
  bottom: -50%;
}

.btn:is(:hover, :focus-visible) .text-1 {
  transform: translateY(-40px);
}

.btn:is(:hover, :focus-visible) .text-2 {
  top: 50%;
  transform: translate(-50%, -50%);
}

.btn-secondary {
  background-color: var(--gold-crayola);
  color: var(--black);
}

.btn-secondary::before {
  background-color: var(--smoky-black-1);
}

.btn-secondary .text-2 {
  color: var(--white);
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.section {
  position: relative;
  padding-block: var(--section-space);
  overflow: hidden;
  z-index: 1;
}

.bg-black-10 {
  background-color: var(--smoky-black-2);
}

.grid-list {
  display: grid;
  gap: 40px;
}

.hover\:shine {
  position: relative;
}

.hover\:shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(to right, transparent 0%, #fff6 100%);
  transform: skewX(-0.08turn) translateX(-180%);
}

.hover\:shine:is(:hover, :focus-within)::after {
  transform: skewX(-0.08turn) translateX(275%);
  transition: var(--transition-3);
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
  background-color: var(--eerie-black-4);
}

.btn-text {
  color: var(--gold-crayola);
  padding-block-end: 4px;
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
  font-weight: var(--weight-bold);
  transition: var(--transition-1);
}

.btn-text:is(:hover, :focus-visible) {
  color: var(--white);
}

.shape {
  display: none;
  position: absolute;
  max-width: max-content;
  z-index: -1;
}

.w-100 {
  width: 100%;
}

.move-anim {
  animation: move 5s linear infinite;
}

@keyframes move {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.input-field {
  background-color: var(--eerie-black-2);
  color: var(--white);
  height: 56px;
  padding: 10px 20px;
  border: 1px solid var(--white-alpha-10);
  margin-block-end: 20px;
  outline: none;
  transition: border-color var(--transition-2);
}

.input-field::placeholder {
  color: inherit;
}

.input-field:focus {
  border-color: var(--gold-crayola);
}

.icon-wrapper {
  position: relative;
  margin-block-end: 20px;
}

.icon-wrapper .input-field {
  margin-block-end: 0;
  padding-inline-start: 40px;
  appearance: none;
  cursor: pointer;
}

.icon-wrapper ion-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  --ionicon-stroke-width: 50px;
  pointer-events: none;
}

.icon-wrapper ion-icon:first-child {
  left: 15px;
}

.icon-wrapper ion-icon:last-child {
  right: 10px;
}



/* New Photo instead of video */
/* .custom-about-section {
  padding: 40px 0;
  background-color: black;
  margin: 0;

  border: none;

} */

.hero-image-container {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hide mobile image on desktop */
.mobile-hero {
  display: none;
}

/* Hide desktop image on mobile */
@media (max-width: 768px) {
  .desktop-hero {
    display: none;
  }

  .mobile-hero {
    display: block;
    object-fit: cover;
  }

  .hero-image-container {
    height: 100vh;
    /* Optional: Full screen height for mobile */
  }
}





/* @media (max-width: 768px) {
  .hero-image {
    height: 45vh;
  }
} */


/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/

.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: var(--gold-crayola); */
  background-color: #000;
  /* solid black */
  z-index: 10;
  display: grid;
  place-content: center;
  justify-items: center;
  transition: var(--transition-2);
}

.preload>* {
  transition: var(--transition-1);
}

.preload.loaded>* {
  opacity: 0;
}

.preload.loaded {
  transition-delay: 250ms;
  transform: translateY(100%);
}

.circle {
  width: 112px;
  height: 112px;
  border-radius: var(--radius-circle);
  border: 3px solid var(--white);
  border-block-start-color: var(--smoky-black-3);
  margin-block-end: 45px;
  animation: rotate360 1s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(1turn);
  }
}

.preload .text {
  background-image: var(--loading-text-gradient);
  background-size: 500%;
  font-size: calc(2rem + 3vw);
  font-weight: var(--weight-bold);
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 16px;
  padding-inline-start: 16px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 0.5px var(--eerie-black-3);
  animation: loadingText linear 2s infinite;
}

@keyframes loadingText {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}





/*-----------------------------------*\
  #TOPBAR
\*-----------------------------------*/

.topbar {
  display: none;
}


/* Extra Menu code */



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/


/* mobile logo header */
.nav-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.nav-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-crayola);
  transition: 0.2s ease;
}

.nav-social-link ion-icon {
  font-size: 20px;
}

.nav-social-link img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.nav-social-link:hover {
  background: var(--gold-crayola);
  color: #000;
  border-color: var(--gold-crayola);
  transform: translateY(-2px);
}


.header .btn {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: transparent; */
  background-color: #000 !important;
  padding-block: 0px;
  z-index: 4;
  border-block-end: 1px solid transparent;
  transition: var(--transition-1);
}

.header.active {
  padding-block: 0px;
  background-color: var(--eerie-black-4);
  border-color: var(--black-alpha-15);
}

.header.hide {
  transform: translateY(-100%);
  transition-delay: 250ms;
}

.header .container {
  padding-inline: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.nav-open-btn {
  padding: 12px;
  padding-inline-end: 0;
}

.nav-open-btn .line {
  width: 30px;
  height: 2px;
  background-color: var(--white);
  margin-block: 4px;
  transform-origin: left;
  animation: menuBtn 400ms ease-in-out alternate infinite;
}

@keyframes menuBtn {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0.5);
  }
}

.nav-open-btn .line-2 {
  animation-delay: 150ms;
}

.nav-open-btn .line-3 {
  animation-delay: 300ms;
}

.navbar {
  position: fixed;
  background-color: var(--smoky-black-1);
  top: 0;
  left: -360px;
  bottom: 0;
  max-width: 360px;
  width: 100%;
  padding-inline: 30px;
  padding-block-end: 50px;
  overflow: hidden;
  visibility: hidden;
  z-index: 2;
  transition: var(--transition-2);
}

.navbar.active {
  visibility: visible;
  transform: translateX(360px);
}

.navbar .close-btn {
  color: var(--white);
  border: 1px solid currentColor;
  padding: 4px;
  border-radius: var(--radius-circle);
  margin-inline-start: auto;
  margin-block: 30px 20px;
}

.navbar .close-btn ion-icon {
  --ionicon-stroke-width: 40px;
}

.navbar .close-btn:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 60px;
}

.navbar-list {
  border-block-end: 1px solid var(--white-alpha-20);
  margin-block-end: 100px;
}

.navbar-item {
  border-block-start: 1px solid var(--white-alpha-20);
}

.navbar-link {
  position: relative;
  font-size: var(--fontSize-label-2);
  text-transform: uppercase;
  padding-block: 10px;
  max-width: unset;
}

.navbar-link::after {
  display: none;
}

.navbar-link .span {
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .span {
  color: var(--gold-crayola);
  transform: translateX(20px);
}

.navbar-link .separator {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus-visible, .active) .separator {
  opacity: 1;
}

.navbar-title {
  margin-block-end: 15px;
}

.navbar-text {
  margin-block: 10px;
}

.navbar .body-4 {
  color: var(--quick-silver);
}

.sidebar-link {
  transition: var(--transition-1);
}

.sidebar-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.navbar .text-center .separator {
  margin-block: 30px;
  margin-inline: auto;
}

.navbar .contact-label {
  margin-block-end: 10px;
}

.navbar::-webkit-scrollbar-thumb {
  background-color: var(--white-alpha-10);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--black-alpha-80);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
  z-index: 1;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* New Overflow stop */
/* ===== Mobile menu height fix (NO SCROLL) ===== */
@media (max-width: 992px) {

  .navbar {
    padding-inline: 24px;
    padding-block-end: 20px;
  }

  .navbar .logo {
    margin-block-end: 28px;
  }

  .navbar-list {
    margin-block-end: 30px;
  }

  .nav-socials {
    margin: 10px 0;
  }

  .nav-whatsapp-line {
    font-size: clamp(1.1rem, 3.2vw, 1.35rem);
    margin-bottom: 18px;
  }

  .navbar .text-center .separator {
    margin-block: 14px;
  }
}

/* ---------------------------------
   AESTHETIC OUTER GOLD FRAME (Mobile)
----------------------------------*/

@keyframes outerGlow {
  0% {
    opacity: .35;
  }

  50% {
    opacity: .75;
  }

  100% {
    opacity: .35;
  }
}

@keyframes cornerDrift {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(4px, -4px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@media (max-width: 600px) {

  /* WRAPPER creates space for outer frame */
  #menus .service-card,
  .menu-row .service-card {
    position: relative;
    padding: 18px;
    /* space for outer border */
  }

  /* OUTER FRAME */
  #menus .service-card::before,
  .menu-row .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;

    background:
      linear-gradient(135deg,
        rgba(246, 210, 131, .85),
        rgba(197, 125, 50, .9),
        rgba(246, 210, 131, .85));

    padding: 2px;

    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: outerGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }

  /* INNER CARD (image container stays clean) */
  #menus .card-banner,
  .menu-row .card-banner {
    position: relative;
    border-radius: 22px;
    z-index: 1;
    overflow: hidden;
  }

  /* DECORATIVE CORNER ACCENTS */
  #menus .card-banner::before,
  .menu-row .card-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background:
      linear-gradient(45deg, rgba(246, 210, 131, .9) 0 2px, transparent 2px) top left,
      linear-gradient(-45deg, rgba(246, 210, 131, .9) 0 2px, transparent 2px) top right,
      linear-gradient(-135deg, rgba(246, 210, 131, .9) 0 2px, transparent 2px) bottom right,
      linear-gradient(135deg, rgba(246, 210, 131, .9) 0 2px, transparent 2px) bottom left;

    background-size: 26px 26px;
    background-repeat: no-repeat;

    animation: cornerDrift 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
  }
}


/* Instagtam */

.instagram-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 7 / 9;
  padding: 3px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 0 12px rgba(255, 105, 180, 0.3);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  margin: 0 auto;
  /* centers the card */
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-card .post-img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

/* Instagram icon styling */
.instagram-card .instagram-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background-color: white;
  border-radius: 50%;
  padding: 5px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  object-fit: contain;
  z-index: 5;
}

/* Whatsapp Number in Hamburger Menu(Mobile) */
/* WhatsApp line below social icons - force single line */
.nav-whatsapp-line {
  margin-top: 14px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  /* force one line */
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-whatsapp-line ion-icon {
  font-size: 18px;
  color: #25D366;
  display: inline-block;
  /* override reset */
}

.nav-whatsapp-line a {
  color: var(--white);
  opacity: 0.9;
  display: inline-block;
  /* override reset */
}

.nav-whatsapp-line a:hover {
  color: var(--gold-crayola);
  opacity: 1;
}

/* THIS is the important fix: span must NOT be block */
.nav-whatsapp-line .wa-divider {
  display: inline-block;
  /* override reset that makes span block */
  opacity: 0.5;
  margin: 0 6px;
}

/* optional: make sure it still fits on very small phones */
@media (max-width: 360px) {
  .nav-whatsapp-line {
    font-size: 1.2rem;
    gap: 5px;
  }
}


/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero .slider-btn {
  display: none;
}

.hero {
  position: relative;
  padding-block: 0;
  min-height: 80vh;
  /* Or 85vh */
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
  /* Match header height */
}


.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 2rem;
}

/* .hero .slider-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  padding-block-start: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 1;
} */

.hero .slider-item {
  position: relative;
  /* previously absolute */
  top: unset;
  left: unset;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block-start: 100px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-3);
  z-index: 1;
  height: 100%;
}


.hero .slider-item.active {
  opacity: 1;
  visibility: visible;
}

/* .hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.15);
  pointer-events: none;
  user-select: none;
  z-index: -1;
} */

.hero .slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* make sure video scales nicely */
  pointer-events: none;
  user-select: none;
  z-index: -1;
}


.hero .slider-item.active .slider-bg {
  animation: smoothScale 7s linear forwards;
}

@keyframes smoothScale {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero .section-subtitle::after {
  margin-block: 14px 20px;
}

.hero-text {
  margin-block: 10px 40px;
}

.hero .btn {
  margin-inline: auto;
}

.hero-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 2;
  background-color: var(--gold-crayola);
  width: 110px;
  height: 110px;
  padding: 12px;
  transform: scale(0.6);
}

.hero-btn img {
  margin-inline: auto;
  margin-block-end: 6px;
}

.hero-btn .span {
  color: var(--black);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-1);
  line-height: var(--lineHeight-3);
}

.hero-btn::after {
  inset: 0;
  border: 1px solid var(--gold-crayola);
  animation: rotate360 15s linear infinite;
}

.slider-reveal {
  transform: translateY(30px);
  opacity: 0;
}

.hero .slider-item.active .slider-reveal {
  animation: sliderReveal 1s ease forwards;
}

@keyframes sliderReveal {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero .slider-item.active .section-subtitle {
  animation-delay: 500ms;
}

.hero .slider-item.active .hero-title {
  animation-delay: 1000ms;
}

.hero .slider-item.active .hero-text {
  animation-delay: 1.5s;
}

.hero .slider-item.active .btn {
  animation-delay: 2s;
}





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

/* .menu-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
} */

.menu-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}



/* Optional: responsive behavior */
@media (max-width: 1024px) {
  .menu-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .menu-row {
    grid-template-columns: 1fr;
  }
}


.service .section-title {
  margin-block-end: 16px;
}

.service .section-text {
  margin-block-end: 40px;
}

.service-card {
  overflow: hidden;
}

.service-card .has-before {
  padding-block: 30px;
  margin-block-end: 26px;
  z-index: 1;
}

.service-card .has-before::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 100%;
  background-image: url('../images/img-pattern.svg');
  background-position: center;
  background-size: cover;
  background-repeat: repeat;
  transition: var(--transition-2);
  transition-delay: 0;
  z-index: -1;
  will-change: transform;
}

.service-card:is(:hover, :focus-within) .has-before::before {
  transform: rotateY(0.5turn) translateX(50%);
  transition-delay: 300ms;
}

.service-card .card-banner {
  transition: var(--transition-2);
}

.service-card:is(:hover, :focus-within) .card-banner {
  transform: scale(1.05);
}

.service .card-title {
  margin-block-end: 12px;
}

.menu-description p {
  font-size: 1.5rem;
  /* Desktop size */
  line-height: 1.9;
  color: #fff;
}

/* MOBILE VIEW FIX */
@media (max-width: 768px) {
  .menu-description {
    padding: 0 20px;
    text-align: left;
  }

  .menu-description p {
    font-size: 1.7rem;
    /* Larger font for phones */
    line-height: 1.7;
  }
}

/* Spacing issue  */
@media (max-width: 768px) {
  .container {
    gap: 0 !important;
    margin-bottom: 0 !important;
  }

  #menus {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}




/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .section-text {
  margin-block: 15px 30px;
}

.about .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.about .container {
  display: grid;
  gap: 120px;
}

.about-banner {
  position: relative;
  margin-block-end: 120px;
}

.about-banner>.w-100 {
  padding-inline-start: 50px;
}

.about .abs-img {
  position: absolute;
}

.about .abs-img::before {
  z-index: -1;
}

.about .abs-img-1 {
  bottom: -120px;
  left: 0;
  width: 150px;
  padding-block: 50px;
}

.about .abs-img-2 {
  top: -65px;
  right: 0;
  overflow: hidden;
}

.about .abs-img-1::before {
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  background-image: url('../images/img-pattern.svg');
  background-repeat: repeat;
}

.about .abs-img-2::before {
  inset: 0;
  background-image: url('../images/badge-2-bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  animation: rotate360 15s linear infinite;
}

/* New Code */
.about .section-text {
  margin: 0 auto 30px auto;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.9;
  text-align: center;
  max-width: 900px;
}

@media (max-width: 768px) {


  .container {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    margin-top: 40px;
  }

  .about-banner {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    margin-top: 40px !important;
  }

  .about-banner>.w-100 {
    padding-inline-start: 0 !important;
  }

  .section-text {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    padding: 0 15px !important;
  }
}


@media (max-width: 768px) {
  .about .container {
    display: block !important;
    gap: 0 !important;
    padding: 0 15px;
  }

  .about-text,
  .about-image {
    margin-bottom: 30px;
    text-align: center;
  }

  .about-banner {
    margin-block-end: 40px !important;
  }
}


/*-----------------------------------*\
  #SPECIAL DISH
\*-----------------------------------*/

.special-dish-content {
  padding-block: 70px;
}

.special-dish .abs-img {
  margin-inline: auto;
  margin-block-end: 12px;
}

.special-dish .section-text {
  margin-block: 16px 40px;
}

.special-dish-content .wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-block-end: 40px;
}

.special-dish-content .del {
  text-decoration: none;
  color: var(--davys-grey);
}

.special-dish-content .span {
  color: var(--gold-crayola);
}

.special-dish .btn {
  margin-inline: auto;
}





/*-----------------------------------*\
  #MENU
\*-----------------------------------*/

.menu .section-title {
  margin-block-end: 40px;
}

.menu .grid-list {
  margin-block-end: 50px;
}

.menu-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.hover\:card .card-banner {
  background-color: var(--gold-crayola);
}

.hover\:card .card-banner .img-cover {
  transition: var(--transition-2);
}

.hover\:card:is(:hover, :focus-within) .card-banner .img-cover {
  opacity: 0.7;
  transform: scale(1.05);
}

.menu-card .card-banner {
  flex-shrink: 0;
  border-radius: var(--radius-24);
}

.menu-card .card-title {
  transition: var(--transition-1);
}

.menu-card .card-title:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.menu-card .badge {
  background-color: var(--gold-crayola);
  color: var(--eerie-black-1);
  font-family: var(--fontFamily-forum);
  max-width: max-content;
  line-height: var(--lineHeight-6);
  text-transform: uppercase;
  padding-inline: 10px;
  margin-block-start: 10px;
}

.menu-card .span {
  color: var(--gold-crayola);
  margin-block: 10px;
}

.menu-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-4);
}

.menu-text .span {
  display: inline-block;
  color: var(--gold-crayola);
}

.menu .btn {
  margin-inline: auto;
  margin-block-start: 26px;
}

.menu .shape {
  display: block;
  width: 70%;
}

.menu .shape-2 {
  top: 0;
  left: 0;
}

.menu .shape-3 {
  bottom: 0;
  right: 0;
}





/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testi {
  padding-block-end: 340px;
  position: static;
}

.testi .quote {
  font-size: 7rem;
  font-family: var(--fontFamily-forum);
  line-height: 0.7em;
}

.testi .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 50px;
}

.testi .separator {
  animation: rotate360 15s linear infinite;
}

.profile .img {
  margin-inline: auto;
  border-radius: var(--radius-circle);
  margin-block-end: 15px;
}

.testi .profile-name {
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-3);
}





/*-----------------------------------*\
  #RESERVATION
\*-----------------------------------*/

.reservation-form {
  margin-block-start: -270px;
}

.form-text {
  margin-block-end: 40px;
}

.form-text .link {
  display: inline;
  color: var(--gold-crayola);
}

.form-right .headline-1 {
  margin-block-end: 40px;
}

.form-right .contact-label {
  margin-block-end: 5px;
}

.form-right .separator {
  margin: 20px auto;
}

.form-right .body-4 {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.form-right .body-4:not(:last-child) {
  margin-block-end: 25px;
}

.form-left,
.form-right {
  padding: 40px 20px 30px;
}

.input-field[type="date"] {
  text-transform: uppercase;
  padding-inline-end: 10px;
}

.input-field[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

textarea.input-field {
  resize: none;
  height: 140px;
  padding-block: 20px;
  line-height: var(--lineHeight-1);
}

.form-left .btn {
  max-width: 100%;
  width: 100%;
}

.form-right {
  background-repeat: repeat;
  background-position: top left;
}





/*-----------------------------------*\
  #FEATURES
\*-----------------------------------*/

.features .section-title {
  margin-block-end: 40px;
}

.feature-card {
  padding: 30px 20px 40px;
}

.feature-item:nth-child(2n+1) .feature-card {
  background-color: var(--eerie-black-3);
}

.feature-item:nth-child(2n) .feature-card {
  background-color: var(--smoky-black-3);
}

.feature-card .card-icon {
  max-width: max-content;
  margin-inline: auto;
  transition: var(--transition-2);
}

.feature-card:hover .card-icon {
  transform: scale(-1) rotate(180deg);
}

.feature-card .card-title {
  margin-block: 20px;
}

.feature-card .card-text {
  color: var(--quick-silver);
  line-height: var(--lineHeight-6);
}





/*-----------------------------------*\
  #EVENT
\*-----------------------------------*/

.event .section-title {
  margin-block-end: 40px;
}

.event-card {
  position: relative;
  overflow: hidden;
}

.event-card .card-content {
  background-image: var(--gradient-1);
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 35px 35px 25px;
}

.event-card .publish-date {
  position: absolute;
  top: 30px;
  left: 25px;
  padding: 5px 10px;
  color: var(--gold-crayola);
  background-color: var(--black);
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-1);
  line-height: 14px;
}

.event-card .card-subtitle {
  color: var(--gold-crayola);
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 5px;
}

.event-card .card-banner .img-cover {
  transition: var(--transition-2);
}

.event-card:is(:hover, :focus-within) .img-cover {
  transform: scale(1.05);
}

.event .btn {
  margin-inline: auto;
  margin-block-start: 40px;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top {
  margin-block-end: 70px;
}

.footer-brand {
  position: relative;
  padding: 50px 40px;
  background: var(--smoky-black-1) url("../images/footer-form-bg.png");
  background-position: center top;
  background-repeat: repeat;
}

.footer-brand::before,
.footer-brand::after {
  top: 0;
  width: 15px;
  height: 100%;
  background-image: url("../images/footer-form-pattern.svg");
}

.footer-brand::before {
  left: 0;
}

.footer-brand::after {
  right: 0;
}

.footer-brand .logo {
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 40px;
}

.footer-brand :is(.body-4, .label-1) {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.footer-brand .contact-link {
  margin-block: 6px;
  transition: var(--transition-1);
}

.footer-brand .contact-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.footer-brand .wrapper {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-block: 40px 25px;
}

.footer-brand .separator {
  animation: rotate360 15s linear infinite;
}

.footer-brand .label-1 {
  margin-block-end: 30px;
}

.footer-brand .label-1 .span {
  display: inline;
  color: var(--white);
}

.footer-brand .icon-wrapper .input-field {
  cursor: text;
}

.footer-brand .btn {
  min-width: 100%;
}

.footer-list {
  display: grid;
  gap: 20px;
}

.footer-link {
  color: var(--quick-silver);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-4);
  margin-inline: auto;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus-visible) {
  color: var(--gold-crayola);
}

.copyright {
  color: var(--quick-silver);
  line-height: var(--lineHeight-3);
}

.copyright .link {
  display: inline;
  color: var(--gold-crayola);
  text-decoration: underline;
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--gold-crayola);
  color: var(--smoky-black-1);
  font-size: 22px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.back-top-btn:is(:hover, :focus-visible) {
  background-color: var(--white);
  color: var(--gold-crayola);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-body-2: 2rem;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .about) .section-text {
    max-width: 420px;
    margin-inline: auto;
  }

  .contact-number {
    --fontSize-body-1: 3rem;
  }



  /**
   * TOPBAR
   */

  .topbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding-block: 10px;
    border-block-end: 1px solid var(--white-alpha-20);
    z-index: 4;
    background-color: #000;
    transition: var(--transition-1);
  }

  .topbar:has(~ .header.active) {
    transform: translateY(-100%);
  }

  .topbar-item:not(.link),
  .topbar .separator {
    display: none;
  }

  .topbar .container,
  .topbar-item {
    display: flex;
    align-items: center;
  }

  .topbar .container {
    justify-content: center;
    gap: 30px;
  }

  .topbar-item {
    gap: 6px;
  }

  .topbar-item ion-icon {
    --ionicon-stroke-width: 60px;
  }

  .topbar-item .span {
    font-size: var(--fontSize-label-1);
  }

  .topbar .link {
    transition: var(--transition-1);
  }

  .topbar .link:is(:hover, :focus-visible) {
    color: var(--gold-crayola);
  }



  /**
   * HEADER
   */

  .header {
    top: 51px;
  }

  .header.active {
    top: 0;
  }

  .header .btn {
    display: block;
    margin-inline-start: auto;
  }



  /**
   * HERO
   */

  .hero-btn {
    transform: scale(0.7);
  }



  /**
   * SERVICE
   */

  .service .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about .container {
    gap: 80px;
  }

  .about-banner>.w-100 {
    padding-inline-start: 90px;
  }

  .about .abs-img-1 {
    width: 285px;
  }

  .about .contact-number {
    --fontSize-body-1: 2.4rem;
  }



  /**
   * MENU
   */

  .menu-card .title-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }

  .menu-card .badge {
    margin-block-start: 0;
  }

  .menu-card .span {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
  }

  .menu-card .span::before {
    content: "";
    height: 6px;
    flex-grow: 1;
    border-block: 1px solid var(--white-alpha-20);
  }



  /**
   * EVENT
   */

  .event .container {
    max-width: 420px;
    margin-inline: auto;
  }



  /**
   * FOOTER
   */

  .footer-brand>* {
    max-width: 460px;
    margin-inline: auto;
  }

  .footer .input-wrapper {
    position: relative;
  }

  .footer .input-field {
    margin-block-end: 0;
    padding-inline-end: 205px;
  }

  .footer-brand .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-width: max-content;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  :is(.service, .event) .container {
    max-width: 820px;
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: 1 / 3;
    width: calc(50% - 20px);
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .navbar-list {
    margin-inline: 30px;
  }



  /**
   * HERO
   */

  .hero .slider-btn {
    display: grid;
    position: absolute;
    z-index: 1;
    color: var(--gold-crayola);
    font-size: 2.4rem;
    border: 1px solid var(--gold-crayola);
    width: 45px;
    height: 45px;
    place-items: center;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: var(--transition-1);
  }

  .hero .slider-btn ion-icon {
    transform: rotate(-45deg);
  }

  .hero .slider-btn.prev {
    left: 30px;
  }

  .hero .slider-btn.next {
    right: 30px;
  }

  .hero .slider-btn:is(:hover, :focus-visible) {
    background-color: var(--gold-crayola);
    color: var(--black);
  }



  /**
   * RESERVATION
   */

  .reservation .input-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .reservation .input-wrapper:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * FOOTER
   */

  .footer-brand {
    grid-column: 1 / 3;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-space: 100px;

  }



  /**
   * REUSED STYLE
   */

  :is(.service, .event) .container {
    max-width: unset;
  }

  :is(.service, .event) .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

  :is(.service, .event) .grid-list li:last-child {
    grid-column: auto;
    width: 100%;
  }



  /**
   * TOPBAR
   */

  .topbar-item:not(.link) {
    display: flex;
  }

  .topbar .item-2 {
    margin-inline-end: auto;
  }



  /**
   * SERVICE
   */

  .service .shape {
    display: block;
  }

  .service .shape-1 {
    bottom: 0;
    left: 0;
  }

  .service .shape-2 {
    top: 0;
    right: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.7fr 1fr;
    gap: 30px;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .special-dish-content {
    padding-inline: 50px 25px;
  }

  .special-dish-content .container {
    position: relative;
  }

  .special-dish .section-subtitle::after,
  .special-dish .btn {
    margin-inline: 0;
  }

  .special-dish-content .wrapper {
    justify-content: flex-start;
  }

  .special-dish .abs-img {
    position: absolute;
    top: 10px;
    left: -40px;
    animation: move 5s linear infinite;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    position: relative;
    column-gap: 90px;
  }

  .menu .grid-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-inline-start: 1px solid var(--white-alpha-20);
  }



  /**
   * TESTIMONIALS
   */

  .testi-text {
    max-width: 910px;
    margin-inline: auto;
  }



  /**
   * RESERVATION
   */

  .reservation-form {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
  }



  /**
   * FOOTER
   */

  .footer .grid-list {
    grid-template-columns: 0.45fr 1fr 0.45fr;
    align-items: center;
  }

  .footer-brand {
    grid-column: auto;
    order: 1;
    padding-block: 100px;
  }

  .footer-list:last-child {
    order: 2;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fontSize-title-2: 2.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container,
  :is(.service, .event) .container {
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
  }



  /**
   * TOPBAR
   */

  .topbar .container {
    max-width: unset;
  }

  .topbar .separator {
    display: block;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .navbar>*:not(.navbar-list),
  .header .overlay {
    display: none;
  }

  .header .container {
    max-width: unset;
  }

  .navbar,
  .navbar.active,
  .navbar-list {
    all: unset;
  }

  .navbar,
  .navbar.active {
    margin-inline: auto 20px;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .navbar-item {
    border-block-start: none;
  }

  .navbar .separator {
    display: none;
  }

  .navbar-link:is(:hover, :focus-visible, .active) .span {
    transform: unset;
  }

  .navbar-link {
    font-weight: var(--weight-bold);
    letter-spacing: var(--letterSpacing-1);
  }

  .navbar-link::after {
    display: block;
  }

  .navbar-link.active::after {
    transform: scaleX(1);
    opacity: 1;
  }

  .header .btn {
    margin-inline-start: 0;
  }



  /**
   * HERO
   */

  .hero {
    height: 880px;
  }

  .hero-btn {
    bottom: 50px;
    right: 50px;
    transform: scale(1);
  }



  /**
   * SERVICE
   */

  /* .service .grid-list {
    gap: 150px;
  } */
  .service .grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }


  /* .service .grid-list li:nth-child(2n+1) {
    transform: translateY(-160px);
  } */

  .service .section-text {
    margin-block-end: 75px;
  }



  /**
   * ABOUT
   */

  .about {
    padding-block: 170px 100px;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish-content {
    padding: 225px 120px;
    padding-inline-end: 0;
  }

  .special-dish-content .container {
    max-width: 460px;
    margin-inline: 0;
  }



  /**
   * MENU
   */

  .menu .grid-list {
    gap: 55px 200px;
    margin-block-end: 55px;
  }



  /**
   * TESTIMONIALS
   */

  .form-left,
  .form-right {
    padding: 75px 60px;
  }




  /**
   * FEATURES
   */

  .features .grid-list {
    grid-template-columns: repeat(4, 1fr);
  }

}





/**
 * responsive for larger than 1400px screen
 */

@media (min-width: 1400px) {

  /**
   * HEADER
   */

  .navbar {
    margin-inline: auto;
  }



  /**
   * ABOUT
   */

  .about-content {
    padding-inline-end: 90px;
  }

  .about .shape {
    display: block;
    top: 46%;
    left: 0;
  }



  /**
   * SPECIAL DISH
   */

  .special-dish {
    overflow: visible;
    position: relative;
  }

  .special-dish .shape {
    display: block;
    right: 0;
    z-index: 1;
  }

  .special-dish .shape-1 {
    top: 45%;
  }

  .special-dish .shape-2 {
    bottom: 0;
    transform: translateY(50%);
    width: max-content;
  }



  /**
   * FEATURES
   */

  .features {
    overflow: visible;
  }

  .features .shape {
    display: block;
  }

  .features .shape-1 {
    top: -100px;
    right: 0;
  }

  .features .shape-2 {
    bottom: 80px;
    left: 0;
  }

}

/* tripadvisor logo */
.topbar-item .icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.topbar .topbar-item.link {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* bg-canopy video */
/* ===== HERO VIDEO BACKGROUND ===== */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  /* fallback if video fails */
  z-index: 0;
}

/* Video layer */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* behaves like background-size: cover */
  display: block;
}

/* Dark overlay on top of video, under text */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.10);
  /* adjust opacity if you want it darker/lighter */
  z-index: 1;
  pointer-events: none;
}

/* ===== OVERLAY CONTENT ===== */

.hero-overlay-content {
  position: absolute;
  top: 52%;
  /* slightly lower so it feels centered under header */
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: 2;
  text-align: center;
  color: #ffffff;
  width: min(90%, 900px);
  padding-inline: 20px;
}


/* Titles */
/* .hero-title-main {
  font-family: 'Forum', serif; */
/* you already load this font */
/* font-size: 70px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #e53935;
} */

/* .hero-title-sub {
  font-size: 32px;
  letter-spacing: 3px;
  margin-bottom: 15px;
} */

/* Tagline */
/* .hero-tagline {
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 30px;
} */
/* ===== HERO MAIN TITLES ===== */

/* ===== HERO TITLES WITH DANCING SCRIPT ===== */

/* ===== HERO TITLES (DANCING SCRIPT + ANIMATION) ===== */

.hero-title-main {
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 5rem);

  /* Clean shiny red */
  color: #ff0000;

  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;

  /* Soft highlight for shine (NOT glow) */
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4);

}

/* SUBTITLE: "ROOFTOP BAR" */
.hero-title-sub {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #f8f4f0;
  margin-bottom: 0.8rem;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(255, 255, 255, 0.55);
}

/* ⭐ Divider under ROOFTOP BAR */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
  animation: divider-reveal 0.9s ease-out 0.1s both;
}

.hero-divider-line {
  position: relative;
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  overflow: hidden;
}

/* moving shine on the lines */
.hero-divider-line::before {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  filter: blur(2px);
  animation: line-shine 2.6s ease-in-out infinite;
}

.hero-divider-star {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #f6dfaa;
  text-shadow:
    0 0 10px rgba(246, 223, 170, 0.9),
    0 0 20px rgba(246, 223, 170, 0.7);
  transform-origin: center;
  animation: star-pulse 2.4s ease-in-out infinite;
}

/* Tagline under the divider */
.hero-tagline {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.95rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #f3efe3;
  margin-bottom: 1.6rem;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.9),
    0 0 12px rgba(255, 255, 255, 0.4);
}

/* Make all service icons the same size */
.hero-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2.2rem;
  margin-bottom: 1.8rem;
}

/* Individual icon container */
.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Force equal size box for icons */
.hero-icon-item img {
  width: 90px;
  /* fixed width */
  height: 90px;
  /* fixed height */
  object-fit: contain;
  /* keeps proportions */
  object-position: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  display: block;
}

/* each contact line */
.hero-contact-line {
  margin: 0.3rem 0;
}

/* line with WhatsApp + email */
.hero-contact-whatsapp-email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* icon + text inline */
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-link {
  color: #ffffff;
  /* keep white */
  text-decoration: none;
  /* remove underline */
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-link:hover {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
}

.contact-link:hover .contact-icon {
  transform: scale(1.1);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

.hero-contact-whatsapp-email {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
}

.contact-link:hover {
  opacity: 1;
  color: #ffffff;
}

.contact-separator {
  color: #ffffff;
}

/* Icons */
.contact-icon {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.9));
  opacity: 0.95;
}

/* vertical bar between them */
.contact-separator {
  color: #ffffff;
}

/* icons themselves – bright + visible on video */
.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.9));
  opacity: 0.95;
}

/* optional hover pop */
.contact-item:hover .contact-icon {
  transform: scale(1.1);
  opacity: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}


/* Text under icon */
.hero-icon-item span {
  margin-top: 0.5rem;
  font-size: 14px;
  color: #ffffff;
  opacity: 0.9;
}


/* "Yes! You can make your booking through" */
.hero-booking-text {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #ffffff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.8),
    0 0 8px rgba(255, 255, 255, 0.45);
}

/* Contacts line(s) at the bottom */
.hero-contact {
  font-size: 13px;
  line-height: 1.8;
  color: #f5f5f5;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.9),
    0 0 6px rgba(255, 255, 255, 0.35);
}

/* Contact Icons */
.contact-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin: 0 6px 0 5px;
  opacity: 0.85;
}

.contact-icon:hover {
  opacity: 1;
  transform: scale(1.1);
  transition: 0.2s ease;
}

/* ===== ANIMATIONS ===== */

@keyframes hero-title-glow {
  0% {
    text-shadow:
      0 6px 18px rgba(0, 0, 0, 0.75),
      0 0 18px rgba(255, 75, 92, 0.6),
      0 0 32px rgba(255, 75, 92, 0.4);
    transform: translateY(0) scale(1);
  }

  100% {
    text-shadow:
      0 8px 24px rgba(0, 0, 0, 0.85),
      0 0 26px rgba(255, 120, 140, 1),
      0 0 52px rgba(255, 120, 140, 0.85);
    transform: translateY(-1px) scale(1.03);
  }
}


@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes line-shine {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: translateX(220%);
    opacity: 0;
  }
}

@keyframes star-pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  50% {
    transform: scale(1.18);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}


/* mobile */
@media (max-width: 768px) {
  .hero-title-main {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }

  .hero-title-sub {
    letter-spacing: 0.22em;
  }

  .hero-divider-line {
    flex-basis: 55px;
  }

  .hero-tagline {
    letter-spacing: 0.18em;
  }
}

@media (max-width: 768px) {
  .hero-icon-item img {
    width: 70px;
    height: 70px;
  }
}




/* Booking text */
.hero-booking-text {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 16px;
}

/* Contact line */
.hero-contact {
  font-size: 14px;
  line-height: 1.6;
}

/* ===== ICON ROW (Grab / FoodPanda / Takeaway) ===== */

.hero-icons {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* 🔧 Desktop logo size – change width to resize all three */
.hero-icon-item img {
  width: 70px;
  /* e.g. 80px or 90px if you want larger */
  height: auto;
}

.hero-icon-item span {
  font-size: 14px;
}

/* ===== RESPONSIVE (PHONE / TABLET) ===== */

@media (max-width: 768px) {

  /* move overlay slightly higher on mobile */
  .hero-overlay-content {
    top: 52%;
    transform: translate(-50%, -52%);
    padding-inline: 16px;
  }

  .hero-title-main {
    font-size: 42px;
  }

  .hero-title-sub {
    font-size: 22px;
  }

  .hero-tagline {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-booking-text {
    font-size: 14px;
  }

  .hero-contact {
    font-size: 12px;
  }

  /* 🔧 Mobile logo size */
  .hero-icon-item img {
    width: 50px;
    /* smaller logos on phones */
  }

  .hero-icon-item span {
    font-size: 12px;
  }
}

/* mobile header */
/* ===== MOBILE HEADER SIZE ===== */
@media (max-width: 768px) {

  /* shrink logo in the top bar */
  .header .logo img {
    max-height: 48px;
    /* adjust to taste: 40–60px */
    width: auto;
  }

  /* reduce vertical padding around logo */
  .header .container {
    padding-block: 6px;
  }
}

/* WhatsApp Button All Pages */
/* ===== Floating WhatsApp Button (premium) ===== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 16px;
  border-radius: 999px;

  background: #25D366;
  color: #fff;

  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  text-decoration: none;

  /* animation setup */
  opacity: 0;
  transform: translateY(14px) scale(.98);
  pointer-events: none;
  will-change: transform, opacity;

  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease, opacity .22s ease;
}

/* When active (shown) */
.whatsapp-float.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;

  /* slide-in feel */
  animation: wa-pop .55s cubic-bezier(.2, .9, .2, 1) both;
}

/* subtle pulse ring */
.whatsapp-float.is-visible::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, .35);
  opacity: 0;
  transform: scale(.9);
  animation: wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}

.whatsapp-float ion-icon {
  font-size: 22px;
}

/* hover (desktop) */
@media (hover:hover) {
  .whatsapp-float.is-visible:hover {
    transform: translateY(-3px) scale(1.01);
    filter: brightness(1.06);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .40);
  }
}

/* tap feedback (mobile) */
.whatsapp-float:active {
  transform: translateY(0) scale(.98);
}

/* Keep your existing back-to-top arrow above it */
.back-top-btn {
  bottom: 90px;
}

/* Mobile: show Message Us (pill) */
@media (max-width: 420px) {
  .whatsapp-float {
    padding: 12px 16px;
    border-radius: 999px;
  }

  .whatsapp-float span {
    display: inline;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    white-space: nowrap;
  }
}

/* Animations */
@keyframes wa-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }

  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wa-pulse {
  0% {
    opacity: 0;
    transform: scale(.92);
  }

  35% {
    opacity: .9;
  }

  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {

  .whatsapp-float,
  .whatsapp-float.is-visible {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .whatsapp-float.is-visible::after {
    display: none;
  }
}

/* Footer WhatsApp & Call logo */
.footer-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-whatsapp .wa-icon {
  font-size: 18px;
  color: #25D366;
  /* WhatsApp green */
}

.footer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.call-icon {
  font-size: 18px;
  color: #ffffff;
}


/* Footer Number & Mail */
/* Mobile footer alignment fix */
@media (max-width: 768px) {

  /* Center logo */
  .footer-brand .logo {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center email & phone */
  .footer-brand .contact-link {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center address text nicely */
  .footer-brand address {
    text-align: center;
  }

}