/* Ching Palace 2.01 – component styles (tokens from design-system.css) */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Visually hidden (for screen readers / SEO only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-red);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem var(--spacing);
  max-width: var(--max-width);
  margin: 0 auto;
}

.header-phone-narrow {
  display: none;
}

.logo {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.logo:hover {
  opacity: 0.95;
}

.logo-img {
  display: block;
  height: 4.125rem;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.5rem;
}

@media (min-width: 769px) {
  .nav {
    flex-wrap: nowrap;
  }
}

.nav-link {
  color: var(--color-link-on-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--text-nav);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--color-link-on-dark-hover);
}

.nav-link.active {
  color: var(--color-link-on-dark-hover);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

/* Buffé dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-link-with-chevron {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-chevron {
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.15em;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-chevron {
  transform: rotate(45deg) translateY(2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 200px;
  padding: 0.5rem 0;
  margin-top: 0;
  background: var(--color-red);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  list-style: none;
  display: none;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-link-on-dark);
  text-decoration: none;
  font-size: var(--text-nav);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-link-on-dark-hover);
}

.header-phone {
  margin: 0;
  font-size: 0.9rem;
}

.header-phone a {
  color: var(--color-link-on-dark);
  text-decoration: none;
}

.header-phone a:hover {
  color: var(--color-link-on-dark-hover);
  text-decoration: underline;
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.5rem;
  flex: 1;
  min-width: 0;
  justify-content: space-between;
}

.nav-menu .nav {
  flex: 1;
  justify-content: space-evenly;
  min-width: 0;
  margin: 0 1rem;
}

/* Hamburger toggle – visible only on narrow screens */
.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-link-on-dark);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
}

.nav-toggle:hover {
  color: var(--color-btn-secondary-hover-text);
  background: var(--color-btn-secondary-hover-bg);
}

.nav-toggle-icon {
  display: block;
  position: relative;
  width: 1.25rem;
  height: 0.875rem;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s, top 0.25s;
}

.nav-toggle-icon::before {
  top: 0;
}

.nav-toggle-icon::after {
  top: calc(100% - 2px);
}

.nav-toggle-icon {
  background: linear-gradient(to bottom, transparent 0, transparent calc(50% - 1px), currentColor calc(50% - 1px), currentColor calc(50% + 1px), transparent calc(50% + 1px), transparent 100%);
  background-clip: padding-box;
  transition: opacity 0.2s;
}

.header.nav-open .nav-toggle-icon::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header.nav-open .nav-toggle-icon::after {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.header.nav-open .nav-toggle-icon {
  background: none;
}

/* Hero – same aspect ratio (905×403) across all page heroes */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 905/302;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem var(--spacing);
  background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.4) 100%);
  box-sizing: border-box;
}

.hero-title-img {
  display: block;
  max-width: min(426px, 85vw);
  width: 100%;
  height: auto;
  margin: 0;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 20px rgba(0,0,0,0.3));
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Buttons: base + primary (hero) / secondary (about, buffet, takeaway) */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 2px solid;
  border-radius: var(--radius-btn);
}

.btn-primary {
  background: var(--color-btn-primary-bg);
  border-color: var(--color-btn-primary-border);
  color: var(--color-btn-primary-text);
}

.btn-primary:hover {
  background: var(--color-btn-primary-hover-bg);
  border-color: var(--color-btn-primary-hover-border);
  color: var(--color-btn-primary-hover-text);
}

.btn-secondary {
  background: var(--color-btn-secondary-bg);
  color: var(--color-btn-secondary-text);
  border-color: var(--color-btn-secondary-border);
}

.btn-secondary:hover {
  background: var(--color-btn-secondary-hover-bg);
  color: var(--color-btn-secondary-hover-text);
  border-color: var(--color-btn-secondary-hover-border);
}

/* Button icon (e.g. phone next to "BOKA BORD") */
.btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.btn-icon-phone {
  width: 1.125rem;
  height: 1.125rem;
  background-color: currentColor;
  mask: url("/images/Icons/phone-call-white-icon.png") no-repeat center;
  mask-size: contain;
  -webkit-mask: url("/images/Icons/phone-call-white-icon.png") no-repeat center;
  -webkit-mask-size: contain;
}

/* Legacy: .btn-outline = .btn-secondary */
.btn-outline {
  background: transparent;
  color: var(--color-btn-secondary-text);
  border-color: var(--color-btn-secondary-border);
}

.btn-outline:hover {
  background: var(--color-btn-secondary-hover-bg);
  color: var(--color-btn-secondary-hover-text);
  border-color: var(--color-btn-secondary-hover-border);
}

/* About section */
.about-section {
  padding: 4rem var(--spacing) 2rem;
  background: var(--color-cream);
}

/* Om oss page: less top padding to match Kontakt and other subpages */
.about-section.about-page {
  padding-top: 2rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-title {
  font-family: "Source Sans 3";
  font-size: 30px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1.25rem 0;
  line-height: 1.35;
}

.about-text {
  margin: 0 0 1.5rem 0;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.about-text-cta {
  display: block;
  margin-top: 0.75rem;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* About page (Om oss) – same text formatting/placement as Kontakt */
.about-page-content {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-page-text {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 1rem 0;
  text-align: left;
}

.about-page-cta {
  font-size: var(--text-body);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
  font-weight: var(--weight-medium);
  text-align: left;
}

.about-page-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.about-page-gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-page-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
}

.divider-light::before,
.divider-light::after {
  background: var(--color-gold);
  opacity: 0.6;
}

.divider-dark::before,
.divider-dark::after {
  background: var(--color-gold);
  opacity: 0.8;
}

.divider-diamond {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  margin: 0 1rem;
}

.divider-light .divider-diamond {
  background: var(--color-gold);
}

.divider-dark .divider-diamond {
  background: var(--color-gold);
}

/* Divider – vector (graphic only: divider2.svg, divider3.svg; same max-width as .about-inner) */
.divider-vector {
  width: 100%;
  max-width: var(--max-width);
  margin: 3rem auto;
}

.divider-vector-icon {
  width: 100%;
  height: var(--divider-vector-icon-size);
  object-fit: cover;
  display: block;
}

/* Sections common */
.section-title {
  font-family: "Source Sans 3";
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

.section-title-light {
  color: var(--color-gold);
}

.section-title-left {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max-width);
  padding-left: var(--spacing);
  padding-right: var(--spacing);
}

.section-lead {
  text-align: left;
  color: var(--color-text-muted);
  margin: 0 0 2rem 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Buffet section (full width, same as buffet-prices) */
.buffet-section {
  padding: 2rem var(--spacing) 4rem;
  text-align: center;
}

.buffet-section .btn {
  margin-bottom: 2.5rem;
}

/* Buffet gallery: full-width rotating carousel, three pictures repeat infinitely */
.gallery-buffet {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.gallery-buffet-track {
  display: flex;
  width: 257.5%;
  transition: transform 0.8s ease-in-out;
}

.gallery-buffet-item {
  flex: 0 0 16.666%;
  margin: 0;
  padding: 0 0.25rem;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  box-sizing: border-box;
}

.gallery-buffet-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Prices section (Figma: dark red bg, gold text & borders, serif) */
.prices-section {
  padding: 4rem var(--spacing);
  background-color: var(--color-red);
  color: var(--color-gold);
  text-align: center;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 840px;
  margin: 0 auto 1rem;
}

.price-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 160px;
  max-width: 1000px;
  background: transparent;
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: 1.25rem;
  text-align: left;
}

.price-box h3 {
  font-family: "Patua One", var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 0.1rem 0;
  color: var(--color-gold);
}

.prices-section .price-desc {
  font-family: "Patua One", var(--font-display);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-gold);
  opacity: 0.95;
  margin: 0;
}

.price-amount {
  font-family: "Patua One", var(--font-display);
  font-size: 1.75rem;
  font-weight: 200;
  color: var(--color-gold);
  margin-top: 0.6rem;
  align-self: flex-end;
}

.prices-section .price-note {
  font-family: "Patua One", var(--font-display);
  font-size: 18px;
  font-weight: 100;
  color: var(--color-gold);
  opacity: 0.95;
  margin: 0 0 2rem 0;
}

.prices-cta {
  margin: 0;
}

.prices-cta-link {
  color: var(--color-gold);
  font-family: "Patua One", var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
}

.prices-cta-link:hover {
  text-decoration: underline;
}

/* Buffé page hero (image + text below on cream) */
.buffe-hero {
  background: var(--color-cream);
}

.buffe-hero-image {
  width: 100%;
  aspect-ratio: 905/302;
  overflow: hidden;
}

.buffe-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  display: block;
}

.buffe-hero-text {
  padding: 2.5rem var(--spacing) 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.buffe-hero-title {
  font-family: "Source Sans 3";
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1rem 0;
}

.buffe-hero-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Buffé subpage (e.g. Mongolisk buffé): hero image only, no text block */
.buffe-subpage-hero .buffe-hero-image {
  display: block;
}

/* Subpage content block – cream, centered text, hierarchy */
.subpage-content {
  background: var(--color-cream);
  padding: 2.5rem var(--spacing) 3.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.subpage-back {
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
}

.subpage-back a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.subpage-back a:hover {
  color: var(--color-red);
  text-decoration: underline;
}

.subpage-title {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1rem 0;
}

.subpage-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2rem auto;
}

.subpage-h2 {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 2rem 0 0.5rem 0;
}

.subpage-body {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.subpage-cta-wrap {
  margin: 1.5rem auto 0;
  text-align: center;
}

/* Take Away page – hero text + menu in one block (Figma: förrätter under hero text) */
.takeaway-hero-and-menu {
  background: var(--color-cream);
}

.takeaway-page .takeaway-hero-and-menu .takeaway-intro {
  padding: 2.5rem var(--spacing) 0;
}

.takeaway-page .takeaway-intro {
  padding: 2.5rem var(--spacing) 3rem;
}

.takeaway-title {
  font-family: var(--font-body);
  font-size: var(--text-section-title);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.25rem 0;
  text-align: center;
}

.takeaway-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.takeaway-lead {
  font-size: var(--text-body);
  color: var(--color-on-surface);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 1rem auto;
  text-align: left;
}

.takeaway-lead:last-of-type {
  margin-bottom: 0;
}

.takeaway-lead a {
  color: var(--color-red);
  text-decoration: none;
}

.takeaway-lead a:hover {
  text-decoration: underline;
}

/* Take away-meny (loaded from API) – directly under hero text (e.g. Förrätter) */
.takeaway-menu-section {
  padding: 2rem var(--spacing) 4rem;
  background: var(--color-cream);
}

.takeaway-hero-and-menu .takeaway-menu-section {
  padding-top: 2rem;
}

.takeaway-menu {
  max-width: 640px;
  margin: 0 auto;
}

.takeaway-menu-loading,
.takeaway-menu-empty {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0;
}

.takeaway-menu-category {
  margin-bottom: 2.5rem;
}

.takeaway-menu-category:last-child {
  margin-bottom: 0;
}

.takeaway-menu-category-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.75rem 0;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--color-red);
}

.takeaway-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.takeaway-menu-item {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.5rem 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: baseline;
}

.takeaway-menu-item-num {
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--text-body);
}

.takeaway-menu-item-name {
  font-weight: 600;
  color: var(--color-text);
}

.takeaway-menu-item-desc {
  grid-column: 2;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.takeaway-menu-item-price {
  grid-column: 3;
  grid-row: span 2;
  font-weight: 600;
  color: var(--color-text);
  white-space: nowrap;
  align-self: start;
}

.takeaway-menu-item:has(.takeaway-menu-item-desc) .takeaway-menu-item-price {
  align-self: start;
}

/* I buffén ingår – card grid */
.buffet-includes {
  padding: 3rem var(--spacing) 4rem;
  background: var(--color-cream);
}

.buffet-includes .section-title {
  margin-bottom: 2rem;
}

.buffet-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 1.5rem;
}

.buffet-includes-card {
  background: var(--color-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buffet-includes-icon {
  color: var(--color-red);
  margin-bottom: 1rem;
}

.buffet-includes-icon svg,
.buffet-includes-icon img {
  display: block;
  width: 48px;
  height: 48px;
}

.buffet-includes-icon img {
  object-fit: contain;
}

.buffet-includes-card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.buffet-includes-card-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem 0;
  line-height: 1.5;
  flex: 1;
}

.buffet-includes-disclaimer {
  font-size: 15px;
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Placeholder content for shell pages */
.page-placeholder {
  padding: 4rem var(--spacing);
  text-align: center;
}

/* Takeaway */
.takeaway-section {
  padding: 3rem var(--spacing) 2rem;
  text-align: center;
}


/* Contact / Location */
.contact-section {
  padding: 2rem var(--spacing) 4rem;
  text-align: center;
}

.contact-page {
  background: var(--color-cream);
}

.contact-page-intro {
  font-size: var(--text-body);
  color: var(--color-text);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-info-col {
  font-style: normal;
  color: var(--color-text);
  font-size: var(--text-body-sm);
}

.contact-info-col p {
  margin: 0.35rem 0;
}

.contact-info-col a {
  color: var(--color-text);
  text-decoration: none;
}

.contact-info-col a:hover {
  color: var(--color-red);
  text-decoration: underline;
}

.contact-info-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 0.5rem 0;
}

.location-info {
  font-style: normal;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

.location-info p {
  margin: 0.35rem 0;
}

.map-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.map-wrap iframe {
  display: block;
}

/* Gallery (API-driven) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* Footer */
.footer {
  background-color: var(--color-red);
  color: #FFF;
  padding: 3rem var(--spacing);
  text-align: center;
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.footer-booking {
  margin: 0 0 1rem 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 28px;
  color: #FFF;
}

.footer-booking a {
  color: #FFF;
  text-decoration: none;
}

.footer-booking a:hover {
  text-decoration: underline;
  color: var(--color-accent-gold);
}

.footer-cta {
  margin: 0 0 1rem 0;
  font-size: 20px;
  font-weight: 400;
  color: #FFF;
}

.footer-cta a {
  color: var(--color-gold);
  text-decoration: underline;
}

.footer-cta a:hover {
  opacity: 0.9;
}

.footer .divider-vector {
  margin: 1.5rem auto 2rem;
}

.footer-grid {
  font-family: var(--font-body);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem 0;
  color: #FFF;
}

.footer-col {
  font-weight: 100;
}

.footer-col p {
  margin: 0.25rem 0;
  font-size: 18px;
  font-weight: 100;
  line-height: 28px;
  color: #FFF;
}

.footer-col a {
  font-size: 18px;
  color: #FFF;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
  color: var(--color-accent-gold);
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    order: 1;
  }

  .about-content .btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .about-image {
    order: 0;
  }

  .gallery-buffet {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .prices-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .prices-grid {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .prices-section .prices-grid .price-box {
    max-width: 85%;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-page-gallery {
    grid-template-columns: 1fr;
  }
}

/* Narrow: hamburger menu – phone always visible, centered on screen */
@media (max-width: 768px) {
  .header-phone-wide {
    display: none;
  }

  .header-phone-narrow {
    display: flex;
    align-items: center;
    order: 2;
    margin-left: auto;
    margin-right: 0.5rem;
    padding: 0;
  }

  .header-phone-narrow .header-cta-btn {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .header-phone-narrow .header-cta-btn:hover {
    background: var(--color-btn-secondary-hover-bg);
    color: var(--color-btn-secondary-hover-text);
    border-color: var(--color-btn-secondary-hover-border);
  }

  .header-cta-icon {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background-color: currentColor;
    mask: url("/images/Icons/phone-call-white-icon.png") no-repeat center;
    mask-size: contain;
    -webkit-mask: url("/images/Icons/phone-call-white-icon.png") no-repeat center;
    -webkit-mask-size: contain;
  }

  .header-phone-narrow a.header-cta-btn:hover {
    text-decoration: none;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    margin-left: 0;
  }

  .nav-menu {
    order: 3;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem var(--spacing) 1rem;
    background: var(--color-red);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .header.nav-open .nav-menu {
    display: flex;
  }

  .nav-menu .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0.5rem;
  }

  .nav-menu .nav-link {
    display: block;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown-menu {
    position: static;
    display: block;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-dropdown-item {
    padding: 0.5rem 0.5rem 0.5rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
  }

  .buffet-includes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  /* Hero: ensure overlay always fits logo + stacked buttons in narrow mode */
  .hero {
    min-height: 320px;
  }

  .hero-overlay {
    padding: 1.5rem var(--spacing);
    gap: 1rem;
  }

  .hero-title-img {
    max-width: min(320px, 78vw);
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}
