/* =====================================================
   ALLUMA RESTAURANT — MAIN STYLESHEET
   Clean, organized, production-ready
   ===================================================== */

/* =====================================================
   TABLE OF CONTENTS
   1. RESET & BASE
   2. CSS VARIABLES
   3. TYPOGRAPHY
   4. LAYOUT & UTILITIES
   5. HEADER
   6. HERO SECTION
   7. GENERAL SECTIONS
   8. CUISINE CAROUSEL
   9. STORYTELLING SECTION
   10. LOCATION SECTION
   11. THEFORK EMBED
   12. FOOTER
   13. MENU PAGE
   14. SERVICES PAGE
   15. RESPONSIVE
   ===================================================== */

/* =====================================================
   1. RESET & BASE
   ===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  /* Add a subtle pattern or gradient */
  background-image: url("../images/textures/subtle_paper.jpg");
  /* OR */
  background: linear-gradient(to bottom, #f5f3ec, #f0ede3);
  /* OR */
  background: radial-gradient(circle at top, #f5f3ec, var(--cream));
}

body {
  background: #ebe9e0; /* slightly darker than cream */
}

.site-wrapper {
  max-width: 1200px; /* or 1100px, 1000px */
  margin: 0 auto;
  background: var(--cream); /* main cream color */
  box-shadow: 0 0 40px rgba(0,0,0,0.08); /* subtle shadow */
}

/* =====================================================
   2. CSS VARIABLES
   ===================================================== */
:root {
  --cream: #F3F1EA;
  --gold: #C9A227;
  --burnt-orange: #E85A2A;
  --deep-green: #1F4E3D;
  --dark: #0F172A;
  --almost-black: #1a1a1a;
  --sage-green: #5A7064;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.i18n {
  white-space: pre-line;
}

.tagline {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.micro {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.7;
  margin-bottom: 40px;
  font-weight: 600;
}

.lead {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 400;
}

.para {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 1200px;
  font-weight: 400;
}

@font-face {
  font-family: "Courier Prime";
  src:
    url("../fonts/CourierPrime-Regular.woff2") format("woff2"),
    url("../fonts/CourierPrime-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =====================================================
   4. LAYOUT & UTILITIES
   ===================================================== */
.section {
  padding: 100px 40px;
  position: relative;
}

.section--dark {
  background: var(--almost-black);
  color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Language Switch */
.lang-switch {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 6px 10px;
  border: 2px solid var(--almost-black);
  background: rgba(255,255,255,0.55);
}

.lang-switch a {
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--almost-black);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.lang-switch a.active {
  opacity: 1;
  color: var(--burnt-orange);
}

.lang-switch .sep {
  opacity: 0.35;
  font-weight: 700;
}

/* Buttons */
.btn-reserve-header {
  background: var(--burnt-orange);
  color: white;
  padding: 12px 28px;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--almost-black);
  box-shadow: 5px 5px 0 var(--almost-black);
  transition: all 0.2s ease;
}

.btn-reserve-header:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--almost-black);
}

.btn-reserve-header:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--almost-black);
}

.btn-main-reserve {
  background: var(--burnt-orange);
  color: white;
  padding: 18px 40px;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border: 3px solid var(--almost-black);
  box-shadow: 8px 8px 0 var(--almost-black);
  transition: all 0.2s ease;
  width: fit-content;
}

.btn-main-reserve:hover {
  transform: translate(3px, 3px);
  box-shadow: 5px 5px 0 var(--almost-black);
}

.btn-main-reserve:active {
  transform: translate(8px, 8px);
  box-shadow: 0 0 0 var(--almost-black);
}

/* =====================================================
   5. HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
              url("../images/textures/wall_texture1.jpeg");
  background-size: 138%;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 2px solid var(--almost-black);
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: clamp(26px, 3.5vw, 42px);
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--almost-black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--burnt-orange);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--burnt-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* =====================================================
   6. HERO SECTION
   ===================================================== */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero-copy {
  background: var(--deep-green);
  color: white;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.hero-copy::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 300px;
  height: 300px;
  background-image: url("../images/forms/ALLUMA_forme_beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, -30px) rotate(180deg); }
}

.hero-copy h1 {
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -3px;
  margin-bottom: 10px;
  line-height: 0.9;
  position: relative;
  z-index: 1;
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--almost-black);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(20%) contrast(1.1);
}

.hero-media:hover img {
  transform: scale(1.05);
}

.hero-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--burnt-orange) 0%, transparent 60%);
  opacity: 0.2;
  mix-blend-mode: multiply;
}

/* =====================================================
   7. GENERAL SECTIONS
   ===================================================== */
.section h2 {
  font-size: clamp(40px, 6vw, 70px);
  margin-bottom: 40px;
  letter-spacing: -2px;
  font-weight: 900;
  position: relative;
  display: inline-block;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 6px;
  background: var(--burnt-orange);
}

/* Internal navigation links within sections */
.section-link {
  margin-top: 30px;
}

.text-link {
  color: var(--burnt-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.text-link:hover {
  opacity: 0.7;
}

/* =====================================================
   8. CUISINE CAROUSEL
   ===================================================== */
.cuisine-showcase {
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
              url("../images/textures/wood.jpg");
  color: white;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.cuisine-showcase::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-image: url("../images/forms/ALLUMA_forme_beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 60px auto 0;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  aspect-ratio: 1 / 1;
  background: var(--almost-black);
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.5);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--burnt-orange);
  border-color: white;
  border-width: 1px;
  transform: scale(1.3);
}

/* =====================================================
   9. STORYTELLING SECTION
   ===================================================== */
.storytelling {
  background: linear-gradient(rgba(243, 241, 234, 0.8), rgba(243, 241, 234, 0.95)),
              url("../images/textures/wall_texture2.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 40px;
}

.storytelling::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 100px;
  width: 200px;
  height: 200px;
  background-image: url("../images/forms/ALLUMA_forme_beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.storytelling .container {
  position: relative;
  z-index: 1;
}

/* =====================================================
   10. LOCATION SECTION
   ===================================================== */
.location {
  background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
              url("../images/textures/tile_texture.jpeg");
  background-size: 50%;
  background-position: center;
  background-repeat: repeat;
  color: white;
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  padding: 120px 40px;
  position: relative;
}

.location::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 50px;
  width: 150px;
  height: 150px;
  background-image: url("../images/forms/ALLUMA_forme_beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.location p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 400;
}

.location p:last-child {
  color: var(--gold);
  font-weight: 600;
}

.horaires {
  background: linear-gradient(rgba(243, 241, 234, 0.8), rgba(243, 241, 234, 0.95)),
              url("../images/textures/wall_texture2.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 40px;
}

.horaires::before {
  content: '';
  position: absolute;
  top: 50px;
  right: 100px;
  width: 200px;
  height: 200px;
  background-image: url("../images/forms/ALLUMA_forme_beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.horaires .container {
  position: relative;
  z-index: 1;
}

/* =====================================================
   11. THEFORK EMBED
   ===================================================== */
.thefork-embed {
  padding: 80px 40px;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url("../images/textures/grenades.jpg");
  background-size: 250%;
  background-position: center center;
}

.thefork-embed .container {
  max-width: 1200px;
  padding: 0;
}

.thefork-frame {
  border: 4px solid var(--almost-black);
  box-shadow: 10px 10px 0 var(--almost-black);
  background: white;
  overflow: hidden;
  margin-left: 10%;
  margin-right: 10%;
}

.thefork-frame iframe {
  width: 100%;
  height: 760px;
  border: 0;
  display: block;
}

.section--dark h2,
.section--dark p {
  color: white;
}

@media (max-width: 968px) {
  .thefork-frame iframe {
    height: 820px;
  }
}

/* =====================================================
   12. FOOTER
   ===================================================== */
.site-footer {
  background: var(--deep-green);
  color: white;
  padding: 60px 40px;
  text-align: center;
  border-top: 5px solid var(--gold);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background-image: url("../images/forms/ALLUMA_forme_beige.png");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: clamp(24px, 3vw, 36px);
  width: auto;
  margin: 0 auto 20px;
  display: block;
  opacity: 0.9;
}

.site-footer p {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 15px;
  font-weight: 400;
}


/* Newsletter subscription */
.footer-newsletter {
  margin: 30px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.newsletter-subtitle {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  font-size: 15px;
  border-radius: 4px;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
}

.newsletter-button {
  padding: 12px 24px;
  background: var(--burnt-orange);
  color: white;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.newsletter-button:hover {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-button {
    width: 100%;
  }
}


.footer-social {
  margin: 20px 0;
}

.footer-social-label {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s ease;
}

.instagram-link:hover {
  opacity: 0.7;
}

.ig-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

/* =====================================================
   13. MENU PAGE
   ===================================================== */
.alluma-menu {
  padding-top: 90px;
  padding-bottom: 70px;
}

.alluma-menu-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1;
  margin-bottom: 10px;
}

.alluma-menu-intro {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.8;
  margin-top: 14px;
}

.alluma-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 52px;
}

.alluma-menu-card {
  border: 4px solid var(--almost-black);
  box-shadow: 10px 10px 0 var(--almost-black);
  background: rgba(255,255,255,0.72);
  padding: 26px;
}

.alluma-menu-card h2 {
  font-size: 28px;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.alluma-menu-card h2::after {
  display: none;
}

.alluma-menu-card--wide {
  grid-column: 1 / -1;
}

.alluma-menu-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alluma-menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(26,26,26,0.18);
}

.alluma-menu-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.alluma-menu-name {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.alluma-menu-desc {
  margin-top: 4px;
  opacity: 0.85;
  line-height: 1.55;
}

.alluma-menu-price {
  font-weight: 900;
  white-space: nowrap;
}


/* Carte Blanche only: align price column + hierarchy for wine pairing */
.alluma-menu-card--carte-blanche .alluma-menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* or baseline if you prefer */
}

.alluma-menu-card--carte-blanche .alluma-menu-price {
  min-width: 64px;      /* tweak if needed (e.g. 72px) */
  text-align: right;
  white-space: nowrap;
}

/* Space between main menu row and the pairing row */
.alluma-menu-card--carte-blanche .alluma-menu-item + .alluma-menu-item {
  margin-top: 14px;
}

/* Slightly de-emphasize the pairing row */
.alluma-menu-card--carte-blanche .alluma-menu-item:last-child {
  opacity: 0.9;
  font-size: 0.95em;
}


.alluma-menu-lunch {
  margin-top: 40px;
  border: 4px solid var(--almost-black);
  box-shadow: 10px 10px 0 var(--almost-black);
  background: var(--deep-green);
  color: white;
  padding: 28px;
}

.alluma-menu-lunch h2 {
  color: white;
}

.alluma-menu-note {
  opacity: 0.85;
  margin-top: 10px;
  margin-bottom: 18px;
}

.alluma-menu-lunch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.alluma-menu-lunch-box {
  border: 2px solid rgba(255,255,255,0.65);
  padding: 14px;
}

.alluma-menu-lunch-label {
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.95;
  margin-bottom: 10px;
}

.alluma-menu-lunch-opt {
  line-height: 1.55;
  opacity: 0.95;
}

.alluma-menu-lunch-or {
  font-style: italic;
  font-size: 0.85em;
  opacity: 0.7;
  margin: 6px 0;
}

.alluma-menu-prices {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alluma-menu-price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.alluma-menu-price-value {
  font-weight: 900;
  white-space: nowrap;
}

.alluma-menu-cta {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.alluma-menu-card--carte-blanche {
  margin-top: 30px;
}

/* =====================================================
   14. SERVICES PAGE
   ===================================================== */
.alluma-services-hero {
  background: var(--deep-green);
  padding-top: 90px;
  padding-bottom: 20px;
}

.alluma-services-title {
  font-family: 'Space Grotesk', sans-serif;
  color: white;
  font-weight: 900;
  letter-spacing: -2px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1;
  margin-bottom: 10px;
}

.alluma-services-intro {
  font-size: clamp(14px, 2.3vw, 26px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.alluma-services {
  padding-top: 10px;
}

.alluma-services-intro-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
}

/* Service Cards with Images */
.alluma-services-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
  margin-top: 52px;
}

.alluma-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Single column layout for Privatisation */
.alluma-service-row--single {
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  gap: 40px;
}

.alluma-service-row--single .alluma-service-media {
  margin-bottom: 30px;
}


.alluma-service-row--single .alluma-service-content h2::after {
  left: 0%;
  transform: none;
}

.alluma-service-row.is-reverse {
  direction: rtl;
}

.alluma-service-row.is-reverse > * {
  direction: ltr;
}

.alluma-service-media {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 5px solid var(--almost-black);
  box-shadow: 12px 12px 0 var(--almost-black);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.alluma-service-media:hover {
  transform: translate(4px, 4px);
  box-shadow: 8px 8px 0 var(--almost-black);
}

.alluma-service-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(10%) contrast(1.05);
}

.alluma-service-media:hover .alluma-service-img {
  transform: scale(1.08);
}

.alluma-service-content h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
}

.alluma-service-content h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 5px;
  background: var(--burnt-orange);
}

.alluma-service-row:nth-child(2) .alluma-service-img {
  transform: scaleX(-1);
}

/* Services Form */
.alluma-services-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin: 96px 0 18px;
  color: var(--deep-green);
  text-align: center;
}

.alluma-services-cta {
  margin-top: 0;
  padding: 56px 40px 44px;
  background: linear-gradient(rgba(31, 78, 61, 0.05), rgba(31, 78, 61, 0.10));
  border: 4px solid var(--almost-black);
  box-shadow: 12px 12px 0 var(--almost-black);
}

.alluma-services-form-frame {
  max-width: 980px;
  margin: 0 auto;
}

.alluma-services-form-note {
  max-width: 720px;
  margin: 0 auto 18px;
  text-align: center;
}

.alluma-form {
  margin-top: 18px;
}

.alluma-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.alluma-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.alluma-field--full {
  grid-column: 1 / -1;
  margin-top: 6px;
}

.alluma-field label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.alluma-field input,
.alluma-field select,
.alluma-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid rgba(26,26,26,0.25);
  background: rgba(255,255,255,0.92);
  padding: 12px 14px;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
  outline: none;
}

.alluma-field input:focus,
.alluma-field select:focus,
.alluma-field textarea:focus {
  border-color: rgba(26,26,26,0.55);
  box-shadow: 0 0 0 4px rgba(26,26,26,0.10);
}

.alluma-field select {
  cursor: pointer;
}

.alluma-field textarea {
  min-height: 170px;
  line-height: 1.6;
  resize: vertical;
}

.alluma-form-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.alluma-form-actions .btn-main-reserve {
  min-width: 260px;
}

.alluma-services-form-disclaimer {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.9;
  margin-top: 4%;
  text-align: center;
}

/* =====================================================
   THANKS PAGE
   ===================================================== */
.thanks-section {
  padding-top: 120px;
  padding-bottom: 80px;
}

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

.thanks-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.thanks-message {
  margin-top: 16px;
  opacity: 0.85;
}

.thanks-actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

/* Honeypot field (anti-spam) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Header actions wrapper */
.header-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* =====================================================
   15. RESPONSIVE
   ===================================================== */
@media (max-width: 968px) {
  /* Header */
  .header-inner {
    padding: 15px 20px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .nav-link {
    font-size: 13px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    clip-path: none;
    padding: 60px 30px;
  }

  .hero-copy::before {
    width: 200px;
    height: 200px;
  }

  .hero-media {
    min-height: 400px;
  }

  /* Sections */
  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: clamp(32px, 8vw, 50px);
  }

  /* Carousel */
  .carousel-container {
    margin: 40px auto 30px;
    aspect-ratio: 1 / 1;
  }

  /* Menu */
  .alluma-menu-grid {
    grid-template-columns: 1fr;
  }

  .alluma-menu-card--wide {
    grid-column: auto;
  }

  .alluma-menu-lunch-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .alluma-service-row,
  .alluma-service-row.is-reverse,
  .alluma-service-row--single {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .alluma-service-row.is-reverse {
    direction: ltr;
  }

  .alluma-service-row.is-reverse .alluma-service-media {
    order: 0;
  }
  
  .alluma-service-row--single .alluma-service-content {
    text-align: left;
  }

  .alluma-service-img {
    min-height: 220px;
    aspect-ratio: 4 / 3;
  }

  .alluma-services-cta {
    padding: 40px 20px 34px;
    margin-top: 64px;
  }

  /* Form */
  .alluma-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .alluma-form-actions .btn-main-reserve {
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .nav-link {
    font-size: 13px;
  }

  .btn-reserve-header {
    padding: 10px 20px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

.btn-main-reserve{
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* If the text is inside a span/div that’s forcing left alignment */
  .btn-main-reserve > *,
  .btn-reserve-header > * {
    width: auto !important;
    text-align: center !important;
    margin: 0 !important;
    
     white-space: nowrap;   /* 🔒 THIS is the key */
  line-height: 1;
    
  }

  .section h2 {
    font-size: 36px;
  }

  .carousel-container {
    aspect-ratio: 1;
  }
}
