/* ============================================================
   MOVENPICK WEBSITE - MAIN STYLESHEET
   Single consolidated CSS for all pages
   ============================================================ */

/* ---- FONTS ---- */

@import url("https://fonts.googleapis.com/css?family=Cabin|Herr+Von+Muellerhoff|Source+Sans+Pro:400,900,1000&display=swap");

@font-face {
  src: url(font/ready.ttf);
  font-family: main;
  font-display: swap;
}

@font-face {
  src: url(font/Gotham-UltraItalic.ttf);
  font-family: secondary;
  font-display: swap;
}

@font-face {
  src: url(font/HelveticaNeueLTStd-MdCn.otf);
  font-family: nav;
  font-display: swap;
}

@font-face {
  src: url(font/loaf.ttf);
  font-family: flv;
  font-display: swap;
}

/* ---- GLOBAL RESET ---- */

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

*::-webkit-scrollbar { width: 10px; }
*::-webkit-scrollbar-track { background-color: var(--main-font-color-dark); }
*::-webkit-scrollbar-thumb { background-color: white; border-radius: 50px; }

:root {
  --main-font: "Source Sans Pro", sans-serif;
  --secondary-font: "Herr Von Muellerhoff", cursive;
  --body-font: "Cabin", Sans-serif;
  --main-font-color-dark: #252525;
  --main-font-color-white: #fff;
  --secondary-font-color: #f39c1a;
  --body-font-color: #515151;
}

body {
  scroll-behavior: smooth;
}

html {
  font-family: var(--body-font);
  font-size: 10px;
  color: var(--body-font-color);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section {
  padding: 3.9rem 0;
  overflow: hidden;
}

img {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

a { text-decoration: none; }
a:visited { text-decoration: none; }
a:focus, a:active,
a:focus-visible,
button:focus, button:active,
.btn:focus, .btn:active,
.nav-link:focus, .nav-link:active,
.nav-item:focus, .nav-item:active,
input:focus, textarea:focus, select:focus {
  outline: none !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

p { font-size: 1.5rem; }

.container {
  width: 100%;
  max-width: 122.5rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

/* ---- HEADER & NAVIGATION ---- */

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #121212;
  transition: 0.4s;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.nav {
  height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  cursor: pointer;
  z-index: 1500;
}

.fa-times { display: none; }

/* Mobile nav panel */
.nav-list {
  list-style: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  height: 100vh;
  background-color: #fff;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
  z-index: 1250;
  transform: translateX(-100%);
  transition: transform 0.5s, visibility 0.5s;
  pointer-events: none;
  visibility: hidden;
  user-select: none;
  -webkit-user-select: none;
}

/* Dark overlay */
.nav::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, visibility 0.5s;
}

.open .fa-times { display: block; }
.open .fa-bars { display: none; }
.open .nav-list { transform: translateX(0); pointer-events: auto; visibility: visible; user-select: auto; -webkit-user-select: auto; }
.open .nav::before { opacity: 1; visibility: visible; pointer-events: auto; }

/* Nav links */
.nav-link {
  display: block;
  color: var(--main-font-color-dark);
  font-family: nav;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.nav-link:hover { color: var(--secondary-font-color); }


/* Online Order button */
.nav-order-btn {
  background-color: var(--secondary-font-color);
  color: #fff !important;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-family: nav;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none !important;
}

.nav-order-btn:hover,
.nav-order-btn:visited,
.nav-order-btn:focus {
  background-color: #d4870e;
  color: #fff !important;
  text-decoration: none !important;
}

.nav-list .nav-order-btn {
  color: #fff !important;
  margin-top: 1rem;
  text-decoration: none !important;
}

.nav-menu-logo,
.nav-menu-bg {
  display: none;
}

.nav-menu-logo img,
.nav-menu-bg img {
  width: 100%;
  display: block;
}

/* Sticky header */
header.sticky {
  padding: 0 4rem;
  background: #fff;
}

header.sticky .menu-toggle,
header.sticky .logo {
  filter: brightness(0);
}

/* ---- TYPOGRAPHY ---- */

.sub-headline {
  font-size: 5rem;
  font-family: main;
  color: var(--secondary-font-color);
  font-weight: 100;
  line-height: 0.4;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeUp 0.5s forwards;
  animation-delay: 0.5s;
}

.first-letter {
  text-transform: uppercase;
  font-size: 7rem;
}

.headline {
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 4px #000000;
  font-size: 2.5rem;
  font-family: secondary;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.5rem;
  margin-right: -0.5rem;
  animation: scale 0.5s forwards;
}

.headline-dark {
  color: var(--main-font-color-dark);
  letter-spacing: 0.7rem;
  margin-right: -0.7rem;
  text-shadow: none;
}

.headline-dark-W {
  color: #ffffff;
  letter-spacing: 0.7rem;
  margin-right: -0.7rem;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line {
  width: 100%;
  max-width: 8.4rem;
  height: 0.25rem;
  background-color: #fff;
  position: relative;
  opacity: 0;
  animation: grow 2s forwards;
  animation-delay: 0.9s;
}

.line-right::before,
.line-left::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0.6rem solid transparent;
  opacity: 0;
  animation: grow 0.5s forwards;
  animation-delay: 1.2s;
}

.line-right::before { border-right-color: #fff; right: 0; }
.line-left::before { border-left-color: #fff; left: 0; }

.asterisk {
  font-size: 2rem;
  color: var(--secondary-font-color);
  margin: 0 1.6rem;
  opacity: 0;
  animation: spin 0.9s forwards;
  animation-delay: 2s;
}

.single-animation {
  opacity: 0;
  animation: fadeDown 0.5s forwards;
  animation-delay: 1.5s;
}

.headline-description h5 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 3px;
  margin-right: -3px;
  font-family: nav;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: -2px;
}

.btn .fas { margin-left: 10px; }

.cta-btn {
  font-size: 1.2rem;
  background-color: rgb(0, 0, 0);
  padding: 0.9rem 1.8rem;
  color: #fff;
  border-radius: 2rem;
  transition: background-color 0.5s;
}

.cta-btn:hover,
.cta-btn:focus {
  color: #fff;
  background-color: var(--secondary-font-color);
}

.body-btn {
  font-size: 1.5rem;
  color: var(--main-font-color-dark);
  position: relative;
  transition: color 0.5s;
}

.body-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: var(--main-font-color-dark);
  transition: background-color 0.5s;
}

.body-btn:hover,
.body-btn:focus { color: var(--secondary-font-color); }

.body-btn:hover::before,
.body-btn:focus::before { background-color: var(--secondary-font-color); }

/* ---- VIDEO MODAL (index only) ---- */

.video1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

.video1.active { visibility: visible; opacity: 1; }
.video1 video { position: relative; max-width: 319px; outline: none; }

.close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
  filter: invert(0);
  max-width: 32px;
}

/* ---- SECTIONS ---- */

.global-headline {
  text-align: center;
  margin-top: 3.9rem;
}

.discover-our-story,
.discover-our-menu,
.Best.ingredients {
  background: #f8f7f4;
}

.discover-our-story .global-headline { margin-top: 6.9rem; }

.discover-our-story .headline-dark {
  font-family: main;
  font-size: 8.5rem;
  font-weight: 100;
  text-transform: none;
  letter-spacing: -2px;
  text-shadow: none;
  color: var(--main-font-color-dark);
}

.discover-our-story .sub-headline {
  color: var(--main-font-color-dark);
  font-size: 6rem;
}

.discover-our-story .sub-headline .first-letter {
  font-size: 6rem;
}

/* ---- Discover Our Menu ---- */
.discover-our-menu .global-headline { margin-top: 6.9rem; }

.discover-our-menu .rec-img {
  width: 35%;
  margin-left: 60%;
  margin-top: 8%;
}
.discover-our-menu .sub-headline {
  color: var(--main-font-color-dark);
  font-size: 6rem;
}
.discover-our-menu .sub-headline .first-letter {
  font-size: 6rem;
}
.discover-our-menu .headline-dark {
  font-family: main;
  font-size: 8.5rem;
  font-weight: 100;
  text-transform: none;
  letter-spacing: -2px;
  text-shadow: none;
  color: var(--main-font-color-dark);
}

/* ---- The Perfect Blend ---- */
.perfect-blend .sub-headline {
  color: #fff;
}
.perfect-blend .headline {
  font-family: main;
  font-size: 8rem;
  font-weight: 100;
  text-transform: none;
  letter-spacing: -2px;
  text-shadow: none;
  color: #fff;
}

/* ---- Nature's Best Ingredients ---- */
.Best.ingredients .sub-headline {
  color: var(--main-font-color-dark);
  font-size: 6rem;
}
.Best.ingredients .sub-headline .first-letter {
  font-size: 6rem;
}
.Best.ingredients .headline-dark {
  font-family: main;
  font-size: 8.5rem;
  font-weight: 100;
  text-transform: none;
  letter-spacing: -2px;
  text-shadow: none;
  color: var(--main-font-color-dark);
}

.global-headline .asterisk {
  color: var(--secondary-font-color);
  margin: 2.4rem 0;
}

.global-headline .sub-headline {
  letter-spacing: -1px;
  line-height: 0.42;
}

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

.restaurant-description { margin-bottom: 3rem; }

.restaurant-description p {
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

/* Hero base (shared by all pages) */
.hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  position: relative;
  padding-top: 25%;
  text-align: center;
}

/* Home-specific hero override */
.hero.hero-home {
  background:
    linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.72) 100%),
    url("image/home/01.jpg") center center / cover no-repeat;
  background-attachment: scroll;
  padding-top: 80vh;
  position: relative;
}

/* Mobile slider — hidden on desktop */
.hero-mob-slider {
  display: none;
  overflow: hidden;
}

.hero-mob-strip {
  display: flex;
  width: 500%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-mob-slide {
  width: 20%;
  height: 100%;
  flex-shrink: 0;
}

.hero-mob-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.mob-slider-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.2s;
  align-items: center;
  justify-content: center;
}
.mob-slider-arrow:hover { background: rgba(255,255,255,0.38); }
.mob-slider-prev { left: 1rem; }
.mob-slider-next { right: 1rem; }

/* Dots */
.mob-slider-dots {
  display: none;
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  gap: 0.55rem;
  flex-direction: row;
}
.mob-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.mob-slider-dot.active {
  background: #fff;
  transform: scale(1.35);
}

.tasteful-recipes {
  background: url("image/tastefull-recipes.jpg") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.tasteful-recipes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.tasteful-recipes > .container {
  position: relative;
  z-index: 1;
}

.tasteful-recipes .sub-headline {
  color: #fff;
}

.tasteful-recipes .headline {
  font-family: main;
  font-size: 8rem;
  font-weight: 100;
  text-transform: none;
  letter-spacing: -2px;
  color: #fff;
  text-shadow: none;
}

.between {
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.image-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.discover-our-menu .restaurant-description {
  padding-top: 3rem;
  margin-bottom: 0;
}

.perfect-blend {
  background: url(image/perfect-blend.jpg) center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.perfect-blend::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.perfect-blend > .container {
  position: relative;
  z-index: 1;
}

/* ---- DECORATIVE IMAGES ---- */

.bird-img {
  width: 5%; height: auto;
  position: absolute;
  margin-left: 0%; margin-top: -15%;
  opacity: 100%; display: none; z-index: 1;
}

.mou-img {
  width: 100%; height: auto;
  position: absolute;
  margin-left: 0%; margin-top: 0%;
  opacity: 100%; display: none; z-index: 1;
}

.rec-img {
  width: 20%; height: auto;
  position: absolute;
  margin-left: 35%; margin-top: 110%;
  opacity: 20%; display: inline; z-index: -1;
}

.home-img {
  width: 80%; height: auto;
  position: absolute;
  margin-left: -80%; margin-top: 160%;
  opacity: 100%; display: none; z-index: -0;
}

.nat-img { display: none; }

.center-side-img {
  width: 60%; height: auto;
  position: absolute;
  margin-left: 0%; margin-top: -30%;
  opacity: 10%; display: none;
}

/* ---- FOOTER ---- */

footer {
  padding: 4rem 0;
  background-color: #121212;
  color: #fff;
  text-align: center;
  position: relative;
  isolation: isolate;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 100%;
  background-image: url('image/mountain 2.png');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: -1;
}

footer::after {
  content: '';
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background-image: url('image/11965_MOVENPICK_STAMPS_NewRecipe.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.09;
  pointer-events: none;
  z-index: -1;
}

.back-to-top {
  width: 7rem; height: 7rem;
  background-color: #121212;
  position: absolute;
  top: -3rem; left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.back-to-top i {
  display: block;
  color: #fff;
  font-size: 2rem;
  padding: 2rem;
  animation: up 2s infinite;
}

.footer-content { overflow: hidden; }

.footer-content h4 {
  font-size: 1.9rem;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 3px;
  padding-top: 6rem;
  margin-bottom: 3rem;
}

.footer-content h5 {
  font-size: 1.9rem;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.footer-content .asterisk { margin: 2.4rem 0; }

.footer-content-about {
  margin-bottom: 5.4rem;
  line-height: 3rem;
}

.social-icons {
  list-style: none;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.social-icons i {
  font-size: 2rem;
  color: #fff;
  padding: 0.8rem 2rem;
  opacity: 0.5;
  transition: color 0.5s;
}

.social-icons i:hover,
.social-icons i:focus { color: var(--secondary-font-color); }

.newsletter-form {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.newsletter-input {
  width: 100%;
  height: 4.2rem;
  padding: 0 5rem 0 1.8rem;
  background: transparent;
  border: none;
  color: #252525;
  font-size: 1.4rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: #777;
}

.newsletter-btn {
  width: 3.4rem;
  height: 3.4rem;
  background-color: #121212;
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 0.4rem;
  transform: translateY(-50%);
  transition: background-color 0.3s, color 0.3s;
}

.newsletter-btn:hover,
.newsletter-btn:focus {
  background-color: var(--secondary-font-color);
  color: #fff;
}

.footer-content-rights p {
  padding: 3rem;
  font-size: 1rem;
  letter-spacing: 2rem;
}

.footer-content-reserved p a,
.footer-content-reserved p a:visited {
  color: #fff !important;
}

.footer-content-reserved p a:hover {
  color: var(--secondary-font-color) !important;
  transition: 0.5s;
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */

.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-top {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-fade {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.animate-left.revealed,
.animate-right.revealed,
.animate-top.revealed,
.animate-bottom.revealed,
.animate-fade.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- BOUTIQUE PAGE: Skew & Block Sections ---- */

.colour-block { background: #2a2f32; color: #fff; }
.white-block { background: #fff; color: #000; }

.skew-cc {
  width: 100%; height: 100px;
  position: absolute; left: 0;
  background: linear-gradient(to right bottom, #2a2f32 49%, 50%),
    linear-gradient(-50deg, #ffffff 16px 0);
}

.skew-cl {
  width: 100%; height: 100px;
  position: absolute; left: 0;
  background: linear-gradient(to left bottom, #fff 49%, #2a2f32 50%);
}

.skew-cr {
  width: 100%; height: 100px;
  position: absolute; left: 0;
  background: linear-gradient(to right bottom, #fff 49%, #2a2f32 50%);
}

.soul:hover { color: #fff; }

.soul::before {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  transition: background-color 0.5s;
}

.soul:hover::before,
.soul:focus::before { background-color: var(--main-font-color-white); }

/* ---- FLAVOURS PAGE ---- */

.left-side-img,
.right-side-img { display: none; }

/* Hero: compact script heading */
.hero:not(.hero-home) {
  height: auto;
  min-height: 0;
  background: #f8f7f4;
  overflow: hidden;
  padding-top: 7rem;
  padding-bottom: 2.5rem;
  align-items: flex-start;
  justify-content: center;
}

.flavour-hero-content {
  text-align: center;
  padding: 2rem 0 0;
}

.flavour-discover {
  font-family: main;
  font-size: 6rem;
  font-weight: 100;
  color: var(--main-font-color-dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
  opacity: 0;
  animation: fadeUp 0.5s forwards;
  animation-delay: 0.3s;
}

.flavour-title {
  font-family: main;
  font-size: 8.5rem;
  font-weight: 100;
  color: var(--main-font-color-dark);
  line-height: 1;
  letter-spacing: -2px;
  margin: 0;
  text-transform: none;
  text-shadow: none;
  opacity: 0;
  animation: fadeUp 0.5s forwards;
  animation-delay: 0.55s;
}

/* ==============================
   FLAVOURS PAGE — DECORATIVE IMAGES
   ============================== */

.flv-deco {
  position: absolute;
  pointer-events: none;
  display: none;
  z-index: 0;
}

/* Bird — absolute, near Discover Our Flavours text */
.flv-bird {
  position: absolute;
  width: 4%;
  top: 30%;
  right: 30%;
  opacity: 0.75;
}

/* Home/chalet — fixed, bottom-right corner */
.flv-home {
  position: fixed;
  width: 16%;
  bottom: -3.5rem;
  right: -05%;
  opacity: 1;
  z-index: 1;
}

/* Men/hikers — fixed, bottom-left corner */
.flv-men {
  position: fixed;
  width: 10%;
  bottom: 1rem;
  left: 1%;
  opacity: 1;
  z-index: 1;
}

@media (min-width: 900px) {
  .flv-deco { display: block; }
}

/* ==============================
   FILTER TABS
   ============================== */

.flavour-filter-section {
  background: #f8f7f4;
  padding: 2.8rem 2rem;
  border-bottom: 1px solid #e5e2da;
  position: relative;
  z-index: 15;
  overflow: visible;
}

.flavour-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 1.2rem 0;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
  font-family: nav;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease;
  color: #bbb;
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #1a1a1a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.filter-btn.active::after,
.filter-btn:hover::after {
  transform: scaleX(1);
}

.filter-btn.active,
.filter-btn:hover {
  background: transparent;
  color: #1a1a1a;
  box-shadow: none;
}

/* On The Go coming-soon state */
.flv-coming-soon {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.flv-coming-soon-inner {
  text-align: center;
  opacity: 0.5;
}

.flv-coming-soon-inner span {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.2rem;
}

.flv-coming-soon-inner p {
  font-family: nav, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
}

/* ==============================
   FLAVOUR GRID — floating scoop style
   ============================== */

.flavour-grid-section {
  background: #f8f7f4;
  padding: 2rem 6rem 8rem;
  position: relative;
}

/* 3-column scoop grid */
.flavour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Each card: vertical — scoop centered on top, text below */
.flavour-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  padding: 0;
}

.flavour-card:hover {
  transform: none;
  box-shadow: none;
}

/* Scoop image — centered, floating */
.card-img-wrap {
  width: 100%;
  background: transparent;
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 260px;
}

.card-img-wrap img {
  width: 85%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,0.14));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.flavour-card:hover .card-img-wrap img {
  transform: scale(1.08) translateY(-6px);
  filter: drop-shadow(0 20px 32px rgba(0,0,0,0.22));
}

/* Text — centered below scoop */
.card-body {
  padding: 2rem 1rem 0;
  text-align: center;
  width: 100%;
}

.card-body h3 {
  font-family: flv;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.card-desc {
  display: block;
  font-family: var(--body-font), sans-serif;
  font-size: 1rem;
  color: #999;
  line-height: 1.65;
  margin-top: 0.55rem;
  padding: 0 0.5rem;
  text-align: center;
}

.card-type {
  font-family: nav;
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aaa;
  display: block;
}

/* NEW flavour badge */
.flv-new-badge {
  display: inline-block;
  background: #C8781A;
  color: #fff;
  font-family: nav, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem 0.28rem 0.65rem;
  border-radius: 0 2rem 2rem 0;
  margin-left: 0.6rem;
  vertical-align: middle;
  line-height: 1.4;
}

/* Card fade-in animation */
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Decorative image animations */
@keyframes flvFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@keyframes flvSway {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  33%      { transform: translateX(6px) rotate(1.5deg); }
  66%      { transform: translateX(-6px) rotate(-1.5deg); }
}

@keyframes flvFly {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  30%      { transform: translate(8px, -10px) rotate(4deg); }
  70%      { transform: translate(-5px, 6px) rotate(-3deg); }
}

/* Override generic section padding for flavours-specific sections */
.flavour-filter-section,
.flavour-grid-section { padding-left: 6rem; padding-right: 6rem; }

/* ---- KEYFRAME ANIMATIONS ---- */

@keyframes fadeUp {
  0% { transform: translateY(4rem); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes scale {
  0% { transform: scale(2); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes grow {
  0% { width: 0; }
  100% { opacity: 1; width: 100%; }
}

@keyframes spin {
  0% { transform: rotate(0); }
  100% { opacity: 1; transform: rotate(-360deg); }
}

@keyframes fadeDown {
  0% { transform: translateY(-1rem); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes up {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-1rem); }
}

/* ---- MOBILE: max-width 899px ---- */

@media screen and (max-width: 899px) {
  .nav-list .nav-link {
    color: var(--main-font-color-dark);
  }

  footer::before {
    width: 100%;
  }

  /* Hero shorter on mobile */
  .hero:not(.hero-home) {
    min-height: 0;
    padding-top: 7rem;
    padding-bottom: 1.5rem;
  }

  .flavour-discover {
    font-size: 4rem;
  }

  .flavour-title {
    font-size: 5.5rem;
    letter-spacing: -1px;
  }

  .flavour-hero-content {
    padding: 1rem 0 0;
  }

  /* Single column — 1 scoop per row on mobile */
  .flavour-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .flavour-grid-section {
    padding: 1rem 2rem 5rem;
  }

  .flavour-filter-section {
    padding: 1.2rem 0;
    overflow: hidden;
  }

  .flavour-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0 1.5rem;
    gap: 2rem;
    scrollbar-width: none;
  }

  .flavour-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 0.8rem 0;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

  /* Scoop stacked vertically on mobile */
  .flavour-card {
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 0;
  }

  .card-img-wrap {
    width: 260px;
    min-height: unset;
    justify-content: center;
  }

  .card-img-wrap img {
    max-height: 260px;
    width: 100%;
  }

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

  .card-body h3 {
    font-size: 1.6rem;
    letter-spacing: 1.5px;
  }

  .flavour-discover { font-size: 4rem; }
  .flavour-title { font-size: 5.5rem; }

  /* ---- HOME PAGE MOBILE ---- */

  .hero.hero-home {
    padding-top: 70vh;
    background: none;
    overflow: hidden;
  }

  .hero-mob-slider {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .mob-slider-arrow {
    display: flex;
  }

  .mob-slider-dots {
    display: flex;
  }

  .nav-menu-logo {
    list-style: none;
    margin-bottom: 1rem;
    line-height: 0;
    display: block;
  }

  .nav-menu-logo img {
    width: 55%;
    display: block;
  }

  .nav-menu-bg {
    list-style: none;
    margin-top: auto;
    margin-left: -2.5rem;
    margin-right: -2.5rem;
    margin-bottom: -3rem;
    line-height: 0;
    display: block;
  }

  /* Section horizontal padding on mobile */
  .discover-our-story,
  .discover-our-menu,
  .Best.ingredients,
  .tasteful-recipes,
  .perfect-blend {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Fix background-attachment for iOS */
  .tasteful-recipes {
    background-attachment: scroll;
  }

  .perfect-blend {
    background-attachment: scroll;
  }

  /* Reduce .between height on mobile */
  .between {
    min-height: 35vh;
  }

  /* Shrink image-group to single column on mobile */
  .image-group {
    grid-template-columns: 1fr;
  }

  /* Reduce headline sizes in each section */
  .discover-our-story .headline-dark,
  .discover-our-menu .headline-dark,
  .Best.ingredients .headline-dark {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }

  .discover-our-story .sub-headline,
  .discover-our-story .sub-headline .first-letter,
  .discover-our-menu .sub-headline,
  .discover-our-menu .sub-headline .first-letter,
  .Best.ingredients .sub-headline,
  .Best.ingredients .sub-headline .first-letter {
    font-size: 3rem;
  }

  .tasteful-recipes .headline,
  .perfect-blend .headline {
    font-size: 3.5rem;
    letter-spacing: -1px;
  }

  /* Reduce top margin on global-headline */
  .discover-our-story .global-headline,
  .discover-our-menu .global-headline {
    margin-top: 2rem;
  }

  /* Hide decorative absolute-positioned images on mobile */
  .rec-img {
    display: none;
  }

  /* Menu page: tablet 2-column grid */
  .menu-grid-section { padding: 2.5rem 1.5rem 4rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; gap: 1.4rem; }
  .menu-card { padding: 1.6rem 1.4rem 1.4rem; }
  .menu-section-header h2 { font-size: 2.8rem; }
}

/* ---- MENU MOBILE: max-width 767px (phones) ---- */

@media screen and (max-width: 767px) {
  #menu-stamp-deco { display: none !important; }

  .menu-grid-section { padding: 1.5rem 1.2rem 4rem !important; }

  /* Force every card to single column full width */
  .menu-grid,
  #menuGrid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .menu-grid > *,
  #menuGrid > *,
  .menu-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Scoop pair: stack vertically, each card full width */
  .scoop-pair-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    width: 100% !important;
  }
  .scoop-pair-row .menu-card {
    width: 100% !important;
    flex: none !important;
  }

  /* Sub-grids collapse to 1 column */
  .menu-subgrid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }
  .menu-subgrid .menu-card {
    width: 100% !important;
  }

  .flv-drawer { width: 92% !important; right: -95% !important; }
  .flv-drawer.open { right: 0 !important; }

  /* Side cards: image on top, text below, full width */
  .menu-card-side {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }
  .menu-card-side .menu-card-img {
    order: -1 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 180px !important;
    align-self: center !important;
    margin: 0 auto 0.8rem !important;
  }

  /* Coffee card stacks vertically, full width */
  .menu-coffee-card {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .menu-coffee-card .menu-card-img {
    order: 99 !important;
    width: 140px !important;
    min-width: 0 !important;
    max-height: 170px !important;
    align-self: center !important;
    margin: 0 auto !important;
  }
}

/* ---- DESKTOP: min-width 900px ---- */

@media screen and (min-width: 900px) {

  header.sticky {
    padding: 0 4rem;
    background: #fff;
  }

  header.sticky .logo { filter: brightness(0); }

  header.sticky .nav-list .nav-link { color: #000; }

  .hero { padding-top: 8%; }
  .hero.hero-home { padding-top: 75vh; }
  .hero:not(.hero-home) { padding-top: 7rem; }

  section { padding: 7.9rem; }

  .menu-toggle { display: none; }
  .nav::before { display: none; }

  .nav {
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    height: 6.5rem;
  }

  .logo img { height: 4rem; }

  .nav-list {
    position: initial;
    flex: 1;
    background-color: transparent;
    padding: 0 0 0 4rem;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    transform: none;
    transition: none;
    gap: 3rem;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    height: auto;
    user-select: none;
    -webkit-user-select: none;
  }

  .nav-item {
    margin: 0;
    border: none;
    display: flex;
    align-items: center;
  }

  .nav-item:last-child {
    margin-left: 1rem;
  }

  .nav-list .nav-link {
    display: inline-flex;
    align-items: center;
    height: 3.6rem;
    line-height: 1;
    transform: translateY(6px);
    font-size: 1.3rem;
    font-family: nav;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .nav-order-btn { text-decoration: none !important; }

  .sub-headline { font-size: 8rem; }
  .first-letter { font-size: 12rem; }

  .headline {
    font-size: 3.5rem;
    margin-top: 0;
  }

  .line { max-width: 11.4rem; }

  .video1 video { max-width: 65%; }

  .restaurant-info {
    display: flex;
    align-items: center;
  }

  .restaurant-info > div { flex: 1; }

  .padding-right { padding-right: 7rem; }

  .footer-content {
    max-width: 77.5rem;
    margin: auto;
  }

  .footer-content-about {
    max-width: 51.3rem;
    margin: 0 auto 5.4rem;
  }

  .footer-content-divider {
    display: flex;
    justify-content: space-between;
  }

  .social-media,
  .newsletter-form {
    width: 100%;
    max-width: 30rem;
    margin-left: 0;
  }

  .social-icons i { opacity: 1; }

  .footer-content-reserved {
    max-width: 100%;
    align-items: center;
    margin-left: 5rem;
  }

  .bird-img {
    width: 5%; display: inline;
    margin-left: 0%; margin-top: 0%;
  }

  .mou-img {
    width: 100%; display: inline;
    margin-left: 50%; margin-top: 90%;
    z-index: -1;
  }

  .rec-img {
    width: 50%; display: inline;
    margin-left: 20%; margin-top: 20%;
  }

  .home-img {
    width: 30%; display: inline;
    margin-left: -15%; margin-top: 25%;
    z-index: 1;
  }

  .nat-img {
    width: 35%; display: inline;
    position: absolute;
    margin-left: -80%; margin-top: -20%;
    opacity: 20%; z-index: 1;
  }

  .center-side-img {
    display: inline;
    margin-left: -50%; margin-top: -30%;
  }

  .flavour-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .flavour-grid-section {
    padding: 2rem 8rem 9rem;
  }

  .flavour-filter-section {
    padding: 2.5rem 8rem;
  }
}
