/* ===================================
   CEBA Restaurant — Main Stylesheet
   Dark navy theme matching WordPress design
   =================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #d4cdc0;
  background: #1a1f36;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #c9b99a;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #e8e0d0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  color: #e8e0d0;
}

/* Default section headings: small Manrope labels (WordPress style) */
h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.3px;
  text-align: center;
  margin-bottom: 32px;
}

/* Big Crimson Text headings — used for "RESERVATION", page titles on subpages */
h2.heading-large {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

h1 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Team member names, subsection names */
h3 {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 1.2px;
}

p + p {
  margin-top: 1.2em;
}

/* --- Container --- */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 31, 54, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-img {
  height: 36px;
  width: auto;
}

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

.nav-links li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-links li a.nav-cta {
  background: rgba(201, 185, 154, 0.2);
  color: #c9b99a;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid rgba(201, 185, 154, 0.4);
}

.nav-links li a.nav-cta:hover {
  background: rgba(201, 185, 154, 0.3);
  color: #e8e0d0;
}

.lang-switch {
  flex-shrink: 0;
  margin-left: 12px;
  position: relative;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 5px 9px;
  font: inherit;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.lang-trigger:hover,
.lang-switch.open .lang-trigger {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.lang-flag {
  display: block;
  width: 22px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.lang-chevron {
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.lang-switch.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #1a1612;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  z-index: 200;
}

.lang-menu li {
  margin: 0;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.lang-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #e8e0d0;
}

.lang-name {
  font-family: 'Manrope', sans-serif;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #e8e0d0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 64px;
}

.hero-home {
  min-height: 85vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 31, 54, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #e8e0d0;
  padding: 40px 24px;
  max-width: 700px;
}

.hero-content h1 {
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-logo {
  max-width: 400px;
  margin: 0 auto 8px;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(232, 224, 208, 0.9);
  margin-bottom: 8px;
  font-weight: 300;
}

.hero-subtitle {
  font-family: 'Crimson Text', serif;
  font-size: 1.4rem !important;
  font-style: italic;
  color: rgba(232, 224, 208, 0.95) !important;
  margin-bottom: 32px !important;
}

/* Decorative subtitle with dotted lines */
.hero-restaurant-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 12px 0 20px;
}

.hero-restaurant-label span {
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(232, 224, 208, 0.8);
}

.hero-dotted-line {
  width: 80px;
  height: 1px;
  border-top: 1px dotted rgba(232, 224, 208, 0.5);
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary {
  background: transparent;
  color: #e8e0d0;
  border: 1px solid #c9b99a;
}

.btn-primary:hover {
  background: rgba(201, 185, 154, 0.15);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #e8e0d0;
  border: 1px solid rgba(232, 224, 208, 0.5);
}

.btn-outline:hover {
  background: rgba(232, 224, 208, 0.08);
  color: #fff;
  border-color: #e8e0d0;
}

.btn-dark {
  background: transparent;
  color: #e8e0d0;
  border: 1px solid rgba(232, 224, 208, 0.4);
}

.btn-dark:hover {
  background: rgba(232, 224, 208, 0.08);
  color: #fff;
  border-color: #e8e0d0;
}

/* ===================================
   Sections
   =================================== */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.section-cream {
  background: rgba(232, 224, 208, 0.04);
}

.section-dark {
  background: #151a2e;
  color: rgba(232, 224, 208, 0.9);
}

.section-dark h2,
.section-dark h3 {
  color: #e8e0d0;
}

.section-dark a {
  color: #c9b99a;
}

.section-dark a:hover {
  color: #e8e0d0;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.section-title p {
  font-size: 1.05rem;
  color: rgba(212, 205, 192, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d4cdc0;
}

.section-text p + p {
  margin-top: 1.4em;
}

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

/* Section divider */
.section-divider {
  width: 60px;
  height: 1px;
  border-top: 1px dotted rgba(201, 185, 154, 0.5);
  margin: 0 auto 48px;
}

/* ===================================
   Teaser (Home page sections)
   =================================== */
.teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.teaser-reverse {
  direction: rtl;
}

.teaser-reverse > * {
  direction: ltr;
}

.teaser-img {
  border-radius: 6px;
  overflow: hidden;
}

.teaser-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.teaser-img:hover img {
  transform: scale(1.03);
}

.teaser-text h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.teaser-text p {
  color: #d4cdc0;
  margin-bottom: 24px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.teaser-text .btn {
  margin-top: 8px;
}

/* ===================================
   Image Carousel
   =================================== */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 31, 54, 0.6);
  color: #e8e0d0;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(26, 31, 54, 0.85);
}

.carousel-btn-prev {
  left: 16px;
}

.carousel-btn-next {
  right: 16px;
}

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 185, 154, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #c9b99a;
}

/* ===================================
   Team Section
   =================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

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

.team-member-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 3px solid rgba(201, 185, 154, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.team-member h3 {
  margin-bottom: 8px;
  font-size: 1.3rem;
  color: #e8e0d0;
}

.team-member-role {
  font-size: 0.85rem;
  font-weight: 600;
  color: #c9b99a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.team-member p:last-child {
  font-size: 0.95rem;
  color: rgba(212, 205, 192, 0.8);
  line-height: 1.7;
}

/* Team layout variant: photo left, text right */
.team-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.team-featured .team-member-photo {
  margin: 0;
  width: 180px;
  height: 180px;
}

.team-featured-text {
  text-align: left;
}

.team-featured-text h3 {
  color: #e8e0d0;
  margin-bottom: 6px;
}

.team-featured-text .team-member-role {
  margin-bottom: 12px;
}

.team-featured-text p {
  color: rgba(212, 205, 192, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.team-others {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.team-others .team-member {
  text-align: left;
}

/* ===================================
   Photo Grid
   =================================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.photo-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.photo-grid-2 img {
  height: 350px;
}

/* ===================================
   Hours List
   =================================== */
.hours-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.hours-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 185, 154, 0.15);
  color: rgba(232, 224, 208, 0.85);
  font-size: 0.95rem;
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list li strong {
  color: #e8e0d0;
}

/* Keep hours-table for backward compat */
.hours-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(201, 185, 154, 0.15);
}

.hours-table td {
  padding: 14px 16px;
  font-size: 0.95rem;
  color: rgba(232, 224, 208, 0.85);
}

.hours-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
  width: 40%;
  color: #e8e0d0;
}

/* ===================================
   Practical Info
   =================================== */
.info-block {
  margin-bottom: 48px;
  text-align: center;
}

.info-block h3 {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e8e0d0;
}

.info-block p {
  color: rgba(212, 205, 192, 0.8);
  font-size: 1.05rem;
}

.info-block a {
  font-weight: 500;
  color: #c9b99a;
}

.info-block a:hover {
  color: #e8e0d0;
}

/* Google Maps embed */
.map-embed {
  margin-top: 24px;
  border-radius: 6px;
  overflow: hidden;
}

.map-embed iframe {
  display: block;
}

/* ===================================
   Privatisations
   =================================== */
.event-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.event-type-tag {
  background: rgba(201, 185, 154, 0.1);
  color: rgba(232, 224, 208, 0.85);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(201, 185, 154, 0.2);
}

/* ===================================
   Menu du Jour
   =================================== */
.menu-du-jour {
  padding: 120px 24px 80px;
  min-height: 70vh;
}

.menu-du-jour .section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.menu-du-jour h1 {
  text-align: center;
  margin-bottom: 16px;
  color: #e8e0d0;
}

.menu-du-jour-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  color: #a09888;
  font-size: 0.95rem;
  line-height: 1.7;
}

.menu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.menu-card {
  background: rgba(232, 224, 208, 0.04);
  border: 1px solid rgba(201, 185, 154, 0.15);
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.menu-card h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #e8e0d0;
}

.menu-card-date {
  font-size: 0.9rem;
  color: rgba(212, 205, 192, 0.5);
  margin-bottom: 24px;
}

.menu-card .btn {
  margin-top: 16px;
}

.menu-card-coming-soon {
  color: rgba(212, 205, 192, 0.5);
  font-style: italic;
  padding: 24px 0;
}

.menu-pdf-embed {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 4px;
  margin-top: 16px;
}

/* ===================================
   Menu Archive / Exemples
   =================================== */
.menu-archive {
  padding: 120px 24px 80px;
}

.menu-archive .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.menu-archive h1 {
  text-align: center;
  margin-bottom: 16px;
  color: #e8e0d0;
}

.menu-archive-intro {
  text-align: center;
  color: rgba(212, 205, 192, 0.7);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu-archive-placeholder {
  text-align: center;
  padding: 60px 24px;
  background: rgba(232, 224, 208, 0.04);
  border: 1px solid rgba(201, 185, 154, 0.15);
  border-radius: 8px;
  color: rgba(212, 205, 192, 0.5);
  font-style: italic;
}

/* ===================================
   Accordion (Menu Examples)
   =================================== */
.accordion {
  width: 100%;
  margin-top: 8px;
}

.accordion-item {
  border-bottom: 1px solid rgba(201, 185, 154, 0.15);
}

.accordion-item:first-child {
  border-top: 1px solid rgba(201, 185, 154, 0.15);
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #e8e0d0;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
  gap: 16px;
}

.accordion-title:hover {
  color: #c9b99a;
}

.accordion-title[aria-expanded="true"] {
  color: #c9b99a;
}

.accordion-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: rgba(201, 185, 154, 0.6);
  transition: color 0.2s ease;
}

.accordion-title:hover .accordion-icon,
.accordion-title[aria-expanded="true"] .accordion-icon {
  color: #c9b99a;
}

.accordion-content {
  padding: 8px 4px 28px;
}

.accordion-content img {
  max-width: 480px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .accordion-title {
    font-size: 1rem;
    padding: 14px 4px;
  }

  .accordion-content img {
    max-width: 100%;
  }
}

/* ===================================
   CTA Section (Reservation)
   =================================== */
.cta-section {
  text-align: center;
  padding: 80px 24px;
}

.cta-section .cta-subtitle {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(212, 205, 192, 0.7);
  margin-bottom: 12px;
}

.cta-section h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
}

/* ===================================
   Footer
   =================================== */
.site-footer {
  background: #12162a;
  color: rgba(232, 224, 208, 0.5);
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid rgba(201, 185, 154, 0.1);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  margin: 0 auto 20px;
  opacity: 0.6;
}

.footer-address {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgba(232, 224, 208, 0.5);
}

.footer-contact {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: rgba(232, 224, 208, 0.5);
}

.footer-contact a {
  color: rgba(232, 224, 208, 0.5);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #e8e0d0;
}

.footer-sep {
  margin: 0 8px;
  opacity: 0.4;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(232, 224, 208, 0.3);
}

/* ===================================
   Instagram link
   =================================== */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c9b99a;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.instagram-link:hover {
  color: #e8e0d0;
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===================================
   Responsive — Tablet
   =================================== */
@media (max-width: 1024px) {
  .nav-links {
    gap: 4px;
  }

  .nav-links li a {
    font-size: 0.75rem;
    padding: 6px 8px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 500px;
    margin: 0 auto;
  }

  .team-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .team-featured .team-member-photo {
    margin: 0 auto;
  }

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

  .team-others {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .team-others .team-member {
    text-align: center;
  }

  .teaser {
    gap: 32px;
  }
}

/* ===================================
   Responsive — Mobile
   =================================== */
@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 31, 54, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li a {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 0.1em;
  }

  .hero-logo {
    max-width: 280px;
  }

  .hero-subtitle {
    font-size: 1.15rem !important;
  }

  .section {
    padding: 56px 20px;
  }

  .teaser {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .teaser-reverse {
    direction: ltr;
  }

  .teaser-img img {
    height: 280px;
  }

  .carousel-slide img {
    height: 280px;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .photo-grid img {
    height: 200px;
  }

  .photo-grid-2 img {
    height: 250px;
  }

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

  .event-types {
    gap: 8px;
  }

  .event-type-tag {
    font-size: 0.85rem;
    padding: 8px 16px;
  }

  .hours-table td {
    padding: 10px 8px;
    font-size: 0.88rem;
  }

  .hours-table td:first-child {
    width: auto;
  }

  .hours-list li {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid img,
  .photo-grid-2 img {
    height: 240px;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-logo {
    max-width: 220px;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .carousel-slide img {
    height: 220px;
  }
}
