/* ========================= styles.css (FULL FIXED with Hamburger Menu) ========================= */

/* ==================== CSS VARIABLES ==================== */
:root {
  --bg: #FBF3D6;
  --card: #F6EBC6;
  --green: #0B3B2E;
  --greenDark: #072B22;
  --pill: rgba(11, 59, 46, 0.08);
  --white: #FFFFFF;
  --shadow: rgba(11, 59, 46, 0.04);
  --transition: all 0.3s ease;
  --background-color: var(--bg);
  --hero-spacing: 48px;

  --cream: #FBF3D6;
  --sage-green: #e8f1e1;
  --deep-green: #0B3B2E;
  --off-white: #ffffff;
  --overlay: rgba(0, 0, 0, 0.45);
  --radius-container: 32px;
  --radius-pill: 20px;
  --shadow-container: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-pill: 0 6px 20px rgba(0, 0, 0, 0.07);

  --color-primary: #0B3B2E;
  --color-secondary: #FBF3D6;
  --bg-color: #FBF3D6;
  --transition-duration: 1s;
  --easing: cubic-bezier(0.33, 1, 0.68, 1);
}

/* ==================== GLOBAL STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  height: auto;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--green);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ==================== HOME BUTTON STYLES ==================== */
.home-button {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.home-button:hover {
  opacity: 0.8;
}

.logo.home-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mila-title.home-button {
  text-decoration: none;
}

.logo-mark img {
  height: 24px;
  width: auto;
  display: block;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
}

/* ==================== HAMBURGER BUTTON ==================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1002;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--green);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hamburger active state */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* ==================== MOBILE MENU OVERLAY ==================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

/* ==================== MOBILE MENU PANEL ==================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(84vw, 380px);
  background-color: var(--card);
  z-index: 1001;
  padding: 96px 28px 28px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(110%);
  opacity: 1;
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: calc(100vh - 140px);
}

/* Mobile menu links */
.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.mobile-menu-links .nav-link {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  border-radius: 100px;
  background: transparent;
}

.mobile-menu-links .nav-link.active {
  background-color: var(--greenDark);
  color: var(--white);
}

/* Mobile menu bottom section */
.mobile-menu-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 10px;
}

.mobile-divider {
  height: 1px;
  background: rgba(11, 59, 46, 0.15);
  width: 100%;
  border-radius: 1px;
}

.mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
}

.mobile-socials {
  display: flex;
  gap: 14px;
}

.mobile-socials .social-btn {
  width: 44px;
  height: 44px;
  background-color: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-socials .social-btn:hover {
  background-color: #0f2c25;
  transform: translateY(-2px);
}

.mobile-contact {
  display: none !important;
}

/* ==================== FIRST HERO SECTION ==================== */
.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  min-height: 80vh;
  height: 100%;
}

.card-container {
  background-color: var(--card);
  margin-top: 20px;
  border-radius: 32px;
  padding: 30px 40px;
  height: 90vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px var(--shadow);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
}

/* ==================== NAVBAR ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green);
}

.logo-mark {
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-pills {
  display: flex;
  background-color: var(--pill);
  border-radius: 100px;
  padding: 6px;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--green);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
}

.nav-link:hover {
  background-color: rgba(11, 59, 46, 0.12);
}

.nav-link.active {
  background-color: var(--greenDark);
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--greenDark);
}

.phone-link i {
  font-size: 0.9rem;
}

.cart-pill {
  background-color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cart-count {
  background-color: var(--greenDark);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ==================== HERO TITLE ==================== */
.mila-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  color: var(--green);
  text-align: center;
  line-height: 0.85;
  letter-spacing: -3px;
  margin: auto;
  opacity: 0;
  transform: translateY(-60px);
  animation: slideDown 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

/* ==================== BOTTOM CONTENT ==================== */
.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.tagline p,
.address p {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--green);
}

.address {
  text-align: right;
  font-style: normal;
}

/* ==================== OPENING HOURS SECTION ==================== */
.opening-hours-section {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 75vh;
  min-height: 650px;
  border-radius: var(--radius-container);
  overflow: hidden;
  box-shadow: var(--shadow-container);
  margin: 0 20px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('bg.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay);
}

.opening-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: #fff;
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.opening-title span {
  display: block;
  font-size: clamp(4.5rem, 11vw, 9rem);
}

.opening-title span:first-child {
  margin-bottom: 5px;
}

.pills-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.pill {
  position: absolute;
  background-color: var(--sage-green);
  color: var(--deep-green);
  padding: 20px 28px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-pill);
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.pill:hover {
  transform: translate3d(0, -5px, 0) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.day {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.time {
  font-size: 1.15rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Pill positions */
.pill:nth-child(1) {
  top: 18%;
  left: 7%;
}

.pill:nth-child(2) {
  top: 50%;
  left: 10%;
}

.pill:nth-child(3) {
  top: 28%;
  left: 32%;
}

.pill:nth-child(4) {
  bottom: 28%;
  left: 50%;
  transform: translateX(-50%);
}

.pill:nth-child(5) {
  top: 22%;
  right: 32%;
}

.pill:nth-child(6) {
  top: 52%;
  right: 18%;
}

.pill:nth-child(7) {
  top: 15%;
  right: 7%;
}

/* ==================== ABOUT US SECTION ==================== */
.about-section {
  width: 100%;
  background-color: transparent;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  width: 96vw;
  max-width: 1400px;
  background-color: var(--white);
  border-radius: 36px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: 0 20px 60px rgba(11, 59, 46, 0.08);
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.about-title {
  font-family: 'Oswald', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 40px;
}

.learn-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--deep-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  padding: 16px 24px 16px 32px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 40px;
  transition: var(--transition);
  width: fit-content;
  max-width: 220px;
}

.learn-more-btn:hover {
  background-color: var(--greenDark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 59, 46, 0.15);
}

.btn-icon {
  background-color: var(--white);
  color: var(--deep-green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: var(--transition);
}

.learn-more-btn:hover .btn-icon {
  transform: translateX(4px);
}

.about-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--deep-green);
  max-width: 500px;
  font-weight: 400;
}

.about-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-frame {
  width: 100%;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
  border-radius: 20px;
}

.about-image.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.about-image.inactive {
  opacity: 0;
  transform: scale(0.9);
  z-index: 1;
}

/* ==================== SCROLL SPACER ==================== */
.scroll-spacer {
  height: 0 !important;
  display: none !important;
}

/* ==================== MENU HERO SECTION ==================== */
.menu-hero-section {
  width: 100%;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  background-color: var(--bg);
}

.menu-hero-container {
  width: 94vw;
  max-width: 1400px;
  background-color: var(--color-primary);
  border-radius: 36px;
  padding: 80px 40px;
  box-shadow: 0 20px 60px rgba(11, 59, 46, 0.15);
  transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing),
    background-color var(--transition-duration) var(--easing);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border: none;
  outline: none;
  text-decoration: none;
  display: block;
}

.menu-hero-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(11, 59, 46, 0.25);
}

.menu-hero-container:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.menu-hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  width: 100%;
}

.text-line {
  display: flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  min-width: max-content;
  margin-left: 0;
  padding-left: 0;
}

.line-1 {
  justify-content: flex-start;
}

.line-2 {
  justify-content: flex-start;
}

.text-block {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: var(--color-secondary);
  transition: color var(--transition-duration) var(--easing);
  margin-right: 40px;
}

.text-block:last-child {
  margin-right: 0;
}

.menu-hero-section .star {
  display: none !important;
}

.inline-logo {
  height: 0.62em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.32em;
  transform: translateY(-0.05em);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.menu-hero-container.is-alt {
  background-color: var(--color-secondary);
}

.menu-hero-container.is-alt .text-block {
  color: var(--color-primary);
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  background-color: transparent;
  width: 100%;
  position: relative;
}

.gallery-container {
  width: 94vw;
  max-width: 1400px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 32px;
  padding: clamp(40px, 5vw, 60px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: clamp(40px, 5vw, 60px);
  flex-wrap: wrap;
  gap: 30px;
}

.gallery-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--deep-green);
  text-transform: uppercase;
  line-height: 0.9;
  display: flex;
  flex-direction: column;
}

.gallery-title span:first-child,
.gallery-title span:last-child {
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -1px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: var(--deep-green);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 1.2vw, 18px);
  padding: 16px 28px;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid var(--deep-green);
  height: fit-content;
  margin-top: 8px;
}

.view-all-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(26, 60, 52, 0.2);
}

.btn-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.view-all-btn:hover .btn-circle {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateX(3px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 30px);
}

.gallery-card {
  display: block;
  text-decoration: none;
  background-color: #f9f7f2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
  min-height: 400px;
}

.card-image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  min-height: 400px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  padding: 30px 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border-radius: 0 0 24px 24px;
}

.overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.gallery-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.gallery-card:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-card:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== FOOTER ==================== */
.footer-hero {
  background-color: transparent;
  width: 100%;
  padding: var(--hero-spacing) 20px;
}

.footer-shell {
  width: 94vw;
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: 32px;
  overflow: hidden;
}

.footer-top {
  padding: clamp(28px, 4vw, 44px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(30px, 4vw, 50px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.column-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  position: relative;
}

.column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--deep-green);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  line-height: 1.5;
  font-weight: 400;
}

.big-statement {
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: clamp(25px, 3vw, 35px);
  max-width: 300px;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background-color: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: #0f2c25;
  transform: translateY(-2px);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--deep-green);
  transition: var(--transition);
}

.menu-btn:hover {
  background-color: var(--deep-green);
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-nav .nav-link {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  display: inline-block;
}

.footer-nav .nav-link:hover {
  color: #0f2c25;
  transform: translateX(4px);
}

.footer-nav .nav-link.active {
  background-color: var(--deep-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

/* ==================== FOOTER MARQUEE ==================== */
.footer-bottom {
  margin-top: clamp(30px, 4vw, 50px);
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(220px, 28vw, 420px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(30px, 5vw, 70px);
}

.huge-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(150px, 22vw, 520px);
  color: var(--deep-green);
  line-height: 0.72;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  animation: none;
}

.huge-text .marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: footerMarquee 50s linear infinite;
}

.huge-text .marquee-track + .marquee-track {
  margin-left: 2.2rem;
}

.marquee-logo {
  height: 0.66em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.35em;
  transform: translateY(-0.03em);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* ==================== GLOBAL HERO SPACING ==================== */
.hero-wrapper,
.opening-hours-section,
.about-section,
.menu-hero-section,
.gallery-section {
  padding-top: var(--hero-spacing);
  padding-bottom: var(--hero-spacing);
}

body > *:last-child {
  margin-bottom: 0 !important;
}

/* ==================== MENU HERO LINK STYLES ==================== */
.menu-hero-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.menu-hero-link:focus,
.menu-hero-link:active,
.menu-hero-link:visited {
  outline: none;
  text-decoration: none;
}

.menu-hero-link * {
  text-decoration: none !important;
}

/* ==================== RESPONSIVE STYLES ==================== */

/* Tablet Landscape */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .statement-column {
    grid-column: span 2;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .card-container {
    padding: 30px;
    height: auto;
    min-height: 85vh;
  }

  .navbar {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 30px;
    gap: 15px;
  }

  .logo {
    justify-content: center;
    margin-bottom: 5px;
    font-size: 1.1rem;
  }

  .nav-center {
    order: 3;
    margin-top: 15px;
  }

  .nav-right {
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
  }

  .mila-title {
    margin: 40px 0 60px;
    font-size: clamp(5rem, 14vw, 10rem);
    letter-spacing: -2px;
  }

  .bottom-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding-bottom: 15px;
  }

  .address {
    text-align: center;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    width: 94vw;
  }

  .about-content {
    padding-right: 0;
    text-align: center;
    align-items: center;
  }

  .about-title {
    font-size: 3.5rem;
    text-align: center;
  }

  .about-text {
    text-align: center;
    max-width: 600px;
  }

  .image-frame {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .gallery-container {
    width: 92vw;
  }

  .gallery-card,
  .gallery-image {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .statement-column {
    grid-column: span 2;
    order: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-center {
    display: none;
  }

  .card-container {
    padding: 20px 25px;
    border-radius: 24px;
    min-height: 80vh;
  }

  .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .mila-title {
    font-size: clamp(5rem, 14vw, 9rem);
    letter-spacing: -1.5px;
    margin: 30px 0 50px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
    border-radius: 20px;
    margin: 0 15px;
  }

  .opening-title {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 100px 20px 60px;
  }

  .opening-title span {
    font-size: clamp(4.5rem, 13vw, 7rem);
  }

  .pills-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 20px 80px;
    height: auto;
  }

  .pill {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0;
    padding: 18px 22px;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-all-btn {
    align-self: flex-start;
  }

  .footer-hero {
    padding: 40px 15px;
  }

  .footer-shell {
    width: 92vw;
  }
}

/* Mobile Small */
@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-card,
  .gallery-image {
    min-height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .statement-column {
    grid-column: span 1;
  }

  .big-statement {
    max-width: 100%;
  }
}

/* ==================== REDUCED MOTION ==================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .huge-text .marquee-track {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }
}