/* ==========================================================================
   CHAIKHANA — DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* 1. VARIABLES & TOKENS */
:root {
  /* Colors */
  --bg-main: #FAF6F0;
  --bg-stripe: #F3EBE0;
  --color-charcoal: #362C27;
  --color-terracotta: #C68260;
  --color-terracotta-hover: #B5714F;
  --color-sand-light: #FDFBF8;
  --color-sand-muted: #EFE6DB;
  --color-border: #E1D3C1;
  --color-border-light: #EFE6DB;
  --color-text-muted: #7A695C;
  --color-white: #FFFFFF;
  --color-success: #4E8752;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transition speeds */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;

  /* Extended palette */
  --color-gold: #C8952E;
  --color-gold-light: #E8C580;
  --color-gold-muted: rgba(200, 149, 46, 0.12);
  --bg-dark: #1E1610;
  --bg-dark-mid: #2B1F14;
  --color-text-on-dark: rgba(253, 247, 238, 0.82);

  /* Warm shadows */
  --shadow-sm: 0 4px 16px rgba(90, 50, 20, 0.07);
  --shadow-md: 0 8px 36px rgba(90, 50, 20, 0.11);
  --shadow-lg: 0 20px 60px rgba(90, 50, 20, 0.16);
  --shadow-glow: 0 0 0 2px rgba(198, 130, 96, 0.18), 0 12px 40px rgba(198, 130, 96, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;

  /* Refined diagonal stripe texture */
  background-image: repeating-linear-gradient(
    45deg,
    var(--bg-stripe),
    var(--bg-stripe) 1px,
    transparent 1px,
    transparent 12px
  );
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* 3. REUSABLE UTILITIES & BUTTONS */
.text-center { text-align: center; }
.full-width { width: 100% !important; }
.accent-text { color: var(--color-terracotta); }
.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-terracotta);
}

/* Diamonds */
.diamond-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 22px 0;
}
.diamond-icon {
  font-size: 0.75rem;
  color: var(--color-gold);
  opacity: 0.9;
  transform: rotate(45deg);
  display: inline-block;
  filter: drop-shadow(0 0 3px rgba(200, 149, 46, 0.4));
}

/* Section Common Styles */
section {
  padding: 100px 5% 80px 5%;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-category {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.section-decor-bar {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  position: relative;
  margin-bottom: 44px;
  font-weight: 600;
}

.section-decor-bar::before,
.section-decor-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0.5;
}

.section-decor-bar::before { right: calc(50% + 85px); }
.section-decor-bar::after { left: calc(50% + 85px); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-sans);
}

.btn-primary {
  background: linear-gradient(135deg, #D4885E 0%, var(--color-terracotta) 45%, #B56840 100%);
  color: var(--color-white);
  border: none;
  box-shadow: 0 3px 14px rgba(198, 130, 96, 0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C87A52 0%, var(--color-terracotta-hover) 45%, #A55A30 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(198, 130, 96, 0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--color-terracotta);
  color: var(--color-terracotta);
  background: transparent;
}

.btn-outline:hover {
  background-color: rgba(198, 130, 96, 0.06);
  border-color: var(--color-terracotta);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(198, 130, 96, 0.12);
}

/* 4. HEADER & NAVIGATION */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(250, 246, 240, 0.92);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  transition: var(--transition-normal);
  box-shadow: 0 1px 20px rgba(90, 50, 20, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.desktop-nav .nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.desktop-nav .nav-list a {
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: var(--color-charcoal);
  opacity: 0.85;
}

.desktop-nav .nav-list a:hover {
  opacity: 1;
  color: var(--color-terracotta);
}

.desktop-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-terracotta);
  transition: width var(--transition-normal);
}

.desktop-nav .nav-list a:hover::after {
  width: 100%;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language selector */
.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  background-color: var(--color-sand-muted);
  color: var(--color-terracotta);
  border: 1px solid var(--color-border);
}

.lang-btn .arrow-down {
  font-size: 0.6rem;
  transition: transform var(--transition-fast);
}

.lang-selector.active .arrow-down {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 105%;
  right: 0;
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  list-style: none;
  width: 80px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 1010;
}

.lang-selector.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown li {
  padding: 8px 16px;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-dropdown li:hover {
  background-color: var(--color-sand-muted);
  color: var(--color-terracotta);
}

/* Control buttons */
.control-btn {
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.login-btn {
  border: 1px solid var(--color-border);
  background-color: var(--color-sand-light);
}

.login-btn:hover {
  background-color: var(--color-sand-muted);
}

.signup-btn {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border: 1px solid var(--color-terracotta);
}

.signup-btn:hover {
  background-color: var(--color-terracotta-hover);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1010;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* 5. MOBILE NAVIGATION OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 246, 240, 0.98);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  text-align: center;
  width: 100%;
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: 40px;
}

.mobile-nav-list li {
  margin: 20px 0;
}

.mobile-nav-list a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
}

.mobile-nav-list a:hover {
  color: var(--color-terracotta);
}

.mobile-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 250px;
  margin: 0 auto;
}

/* 6. HERO SECTION */
.hero-section {
  min-height: calc(100vh - 75px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 40px 5%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 110% 65% at 5% 95%, rgba(198, 130, 96, 0.16) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 95% 5%, rgba(200, 149, 46, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 50% 50%, rgba(198, 130, 96, 0.04) 0%, transparent 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(198,130,96,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Corner Frames decoration */
.frame-decor {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--color-gold);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.hero-section:hover .frame-decor { opacity: 0.75; }

.corner-tl { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.corner-tr { top: 24px; right: 24px; border-left: none; border-bottom: none; }
.corner-bl { bottom: 24px; left: 24px; border-right: none; border-top: none; }
.corner-br { bottom: 24px; right: 24px; border-left: none; border-top: none; }

.hero-content {
  text-align: center;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 7.5rem;
  font-weight: 400;
  line-height: 1.0;
  margin: 12px 0 28px 0;
  letter-spacing: -0.02em;
  word-spacing: -0.05em;
  text-shadow: 0 2px 40px rgba(198, 130, 96, 0.08);
}

.hero-scripts {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 32px;
  opacity: 0.75;
}

.hero-description {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 50px;
  max-width: 620px;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 45px;
  background-color: var(--color-border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background: linear-gradient(180deg, transparent, var(--color-gold), var(--color-terracotta));
  animation: scrollAnim 2.2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { transform: translateY(-100%); }
  80%, 100% { transform: translateY(300%); }
}

/* 7. DISH SHOWCASE GRID */
.dishes-section {
  border-top: 1px solid var(--color-border);
  padding-bottom: 100px;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dish-card {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  padding: 38px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

/* Double-border effect */
.dish-card::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid var(--color-border-light);
  pointer-events: none;
  transition: border-color var(--transition-normal);
}

.dish-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-terracotta);
}

.dish-card:hover::after {
  border-color: rgba(198, 130, 96, 0.25);
}

.dish-header {
  margin-bottom: 16px;
}

.dish-era {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 6px;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
}

.dish-origin {
  font-size: 0.75rem;
  color: var(--color-terracotta);
  font-weight: 500;
  display: block;
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.dish-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-charcoal);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  padding: 12px 0;
  margin-bottom: 20px;
  line-height: 1.4;
  opacity: 0.9;
}

.quote-author {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.dish-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 1;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 8. RESERVATIONS SECTION */
.reserve-section {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-sand-muted);
  background-image:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(200, 149, 46, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(198, 130, 96, 0.06) 0%, transparent 70%);
  padding-bottom: 100px;
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.reserve-info h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.reserve-info-intro {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-content strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.info-content span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  display: block;
}

/* Reservation Form */
.reserve-form-container {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  padding: 44px;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.reserve-form-container::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--color-border-light);
  pointer-events: none;
  border-radius: 2px;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-row {
  display: contents;
}

.reservation-form label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-sand-light);
  transition: border-color var(--transition-fast);
  width: 100%;
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--color-terracotta);
  box-shadow: 0 0 0 3px rgba(198, 130, 96, 0.1);
}

.reservation-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Custom Table toggle group */
.toggle-group {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--color-sand-muted);
}

.toggle-group input[type="radio"] {
  display: none;
}

.toggle-btn {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  background-color: var(--color-sand-light);
  border: none;
  text-transform: none;
}

.toggle-group input[type="radio"]:checked + .toggle-btn {
  background-color: var(--color-terracotta);
  color: var(--color-white);
}

.toggle-group input[type="radio"]:not(:checked) + .toggle-btn:hover {
  background-color: var(--color-sand-muted);
}

/* 9. LOYALTY PROGRAM */
.loyalty-section {
  border-top: 1px solid var(--color-border);
  padding-bottom: 100px;
}

.loyalty-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-top: 50px;
}

.loyalty-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 35px;
}

.tier-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tier-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  background-color: var(--color-sand-light);
  border-radius: 4px;
  transition: all var(--transition-normal);
}

.tier-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-sand-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-terracotta);
  flex-shrink: 0;
}

.tier-details h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.tier-details p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.tier-card.active-tier {
  border-color: var(--color-terracotta);
  box-shadow: 0 4px 15px rgba(198, 130, 96, 0.1);
}

/* Digital Loyalty Card */
.digital-card-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.digital-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, #ECC8AF 0%, #DDA583 100%);
  border-radius: 12px;
  padding: 24px;
  color: var(--color-charcoal);
  box-shadow: 0 15px 35px rgba(198, 130, 96, 0.2);
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.58 / 1;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.digital-card:hover {
  transform: translateY(-4px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(198, 130, 96, 0.28);
}

.card-inner-frame {
  border: 1px solid rgba(54, 44, 39, 0.2);
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}

.card-brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-bullet {
  color: var(--color-terracotta);
}

.card-status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.green-dot {
  background-color: var(--color-success);
  box-shadow: 0 0 8px rgba(78, 135, 82, 0.6);
}

.card-user-info {
  margin-top: 10px;
}

.card-username {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.card-id {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-top: 4px;
}

.card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.points-value {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.0;
  font-family: var(--font-serif);
}

.points-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* Card Actions / customizer */
.card-actions {
  margin-top: 30px;
  width: 100%;
  max-width: 380px;
}

.loyalty-referral-text {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}

.card-customizer {
  margin-bottom: 20px;
  width: 100%;
}

.card-customizer label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 8px;
}

.card-customizer input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: var(--color-sand-light);
  font-size: 0.85rem;
}

.card-customizer input:focus {
  outline: none;
  border-color: var(--color-terracotta);
}

.card-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.wallet-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

/* 10. NEWS & EVENTS GRID */
.news-section {
  border-top: 1px solid var(--color-border);
  padding-bottom: 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-terracotta);
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.news-tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
}

.event-tag    { background-color: #E0EDF7; color: #3A6F9E; border: 1px solid #B8D5EE; }
.dish-tag     { background-color: #FAE9E0; color: #B5613C; border: 1px solid #ECC9B5; }
.seasonal-tag { background-color: #E6EEE0; color: #5A7240; border: 1px solid #C0D5AE; }
.culture-tag  { background-color: #EDE8FA; color: #6952A0; border: 1px solid #C8BAED; }
.loyalty-tag  { background-color: #FBF0DC; color: #9B7220; border: 1px solid #E6CA88; }
.catering-tag { background-color: #DFF0EC; color: #3A8578; border: 1px solid #A8D5CE; }

.news-date {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.news-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
}

.news-excerpt {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-link,
.news-link-btn {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-terracotta);
  align-self: flex-start;
}

.news-link-btn {
  padding: 0;
  background: none;
  border: none;
}

.news-link:hover,
.news-link-btn:hover {
  color: var(--color-terracotta-hover);
  text-decoration: underline;
}

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
}

.news-read-more {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-terracotta);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-start;
}

.news-read-more:hover {
  color: var(--color-terracotta-hover);
  text-decoration: underline;
}

.news-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 22, 19, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.news-modal-overlay.open {
  display: flex;
}

.news-modal {
  position: relative;
  background-color: var(--color-sand-light);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.news-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 1;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-text-muted);
  cursor: pointer;
}

.news-modal-close:hover {
  color: var(--color-terracotta);
}

.news-modal-img {
  display: block;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
}

.news-modal-body {
  padding: 28px 32px 32px 32px;
}

.news-modal-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  white-space: pre-line;
}

/* 11. FOOTER */
.main-footer {
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(200, 149, 46, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(198, 130, 96, 0.06) 0%, transparent 60%);
  border-top: none;
  padding: 90px 5% 50px 5%;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  color: var(--color-sand-light);
}

.footer-scripts {
  font-size: 0.75rem;
  color: rgba(253, 247, 238, 0.45);
  letter-spacing: 0.05em;
}

.footer-divider {
  margin: 32px 0;
  opacity: 0.4;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(253, 247, 238, 0.5);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-copyright {
  font-size: 0.72rem;
  color: rgba(253, 247, 238, 0.28);
  letter-spacing: 0.03em;
}

/* 12. NATIVE DIALOGS & OVERLAYS */
.custom-dialog {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 0;
  max-width: 700px;
  width: 90%;
  margin: auto;
  background-color: var(--bg-main);
  box-shadow: 0 30px 80px rgba(40, 25, 10, 0.25), 0 0 0 1px rgba(200, 149, 46, 0.1);
  box-sizing: border-box;
}

.custom-dialog::backdrop {
  background-color: rgba(30, 18, 8, 0.72);
  backdrop-filter: blur(6px);
}

.dialog-content {
  padding: 50px 40px;
  position: relative;
}

/* Parchment style for Booking Receipt */
.receipt-parchment {
  background-color: #F8F4EC;
  border: 1px solid #DED4C7;
  position: relative;
}

.receipt-parchment::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px dashed rgba(198, 130, 96, 0.3);
  pointer-events: none;
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-text-muted);
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.dialog-close:hover {
  opacity: 1;
  color: var(--color-terracotta);
}

.dialog-header {
  text-align: center;
  margin-bottom: 30px;
}

.dialog-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 4px;
}

/* Detailed Menu Items Modal Layout */
.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-height: 50vh;
  overflow-y: auto;
  padding-right: 15px;
  margin-bottom: 30px;
}

/* Custom Scrollbar for Modal Menu */
.menu-sections::-webkit-scrollbar {
  width: 4px;
}
.menu-sections::-webkit-scrollbar-track {
  background: var(--color-sand-muted);
}
.menu-sections::-webkit-scrollbar-thumb {
  background: var(--color-terracotta);
  border-radius: 2px;
}

.menu-category-group h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-terracotta);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 8px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-item-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 4px;
}

.item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.item-price {
  font-size: 0.95rem;
  color: var(--color-terracotta);
}

.item-description {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.dialog-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 25px;
}

/* Booking Receipt details */
.receipt-dialog {
  max-width: 500px;
}

.receipt-header {
  text-align: center;
  margin-bottom: 25px;
}

.receipt-logo {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px auto;
}

.receipt-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.receipt-id {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.receipt-welcome {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.4;
}

.receipt-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.receipt-table th,
.receipt-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(198, 130, 96, 0.15);
  font-size: 0.85rem;
}

.receipt-table th {
  text-align: left;
  font-weight: 600;
  color: var(--color-text-muted);
  width: 35%;
}

.receipt-table td {
  color: var(--color-charcoal);
  font-weight: 500;
}

.receipt-notes {
  background-color: rgba(198, 130, 96, 0.05);
  padding: 15px;
  border-radius: 4px;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.receipt-footer {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

/* Loyalty card signup details inside modal */
.modal-card-display {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.mini-card {
  background: linear-gradient(135deg, #ECC8AF 0%, #DDA583 100%);
  border: 1px solid rgba(54, 44, 39, 0.2);
  border-radius: 6px;
  padding: 16px;
  width: 260px;
  text-align: left;
  box-shadow: 0 8px 20px rgba(198, 130, 96, 0.15);
}

.mini-card-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 12px;
}

.mini-card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
}

.mini-card-points {
  font-size: 0.75rem;
  margin-top: 4px;
  font-weight: 600;
  color: var(--color-terracotta);
}

.loyalty-welcome-msg {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.loyalty-hint {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* 13. RESPONSIVE DESIGN */

/* Large Tablets & Small Desktops (max 1024px) */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .hero-title {
    font-size: 5rem;
  }
}

/* Small Tablets & Large Phones (max 768px) */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  section {
    padding: 80px 24px 60px 24px;
  }

  .desktop-nav {
    display: none;
  }

  .main-header .control-btn {
    display: none;
  }

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

  /* Hamburger transform animation on active state */
  .mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reserve-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .loyalty-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-links {
    gap: 15px;
  }
}

/* Portrait Phones (max 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .reserve-form-container {
    padding: 24px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .dialog-content {
    padding: 30px 20px;
  }
}

/* 14. SCROLL REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* 15. AUTHENTICATION & CONTROL PANEL STYLING */

/* Header User Profile Pill */
.user-profile-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--color-sand-muted);
  border: 1px solid var(--color-border);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-charcoal);
  transition: all var(--transition-fast);
}

.user-profile-pill:hover {
  border-color: var(--color-terracotta);
  background-color: var(--color-sand-light);
}

.user-role-badge {
  font-size: 0.6rem;
  background-color: var(--color-terracotta);
  color: var(--color-white);
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Dashboard Tabs */
.dash-tab-btn {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
}

.dash-tab-btn.active, .dash-tab-btn:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
}

/* Dashboard Tables */
.dash-table-wrapper {
  overflow-x: auto;
  margin-top: 15px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.dash-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: var(--color-white);
  font-size: 0.85rem;
}

.dash-table th, .dash-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.dash-table th {
  background-color: var(--color-sand-muted);
  color: var(--color-charcoal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.dash-table tr:hover {
  background-color: var(--bg-main);
}

.dash-btn-delete {
  background-color: #d9534f;
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  transition: opacity var(--transition-fast);
}

.dash-btn-delete:hover {
  opacity: 0.9;
}

.dash-btn-edit {
  background-color: #5bc0de;
  color: white;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 3px;
  transition: opacity var(--transition-fast);
}

.dash-btn-edit:hover {
  opacity: 0.9;
}

/* Quick Form Panel */
.dash-form-panel {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  padding: 25px;
  border-radius: 4px;
  margin-bottom: 30px;
}

.dash-form-panel h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-terracotta);
  margin-bottom: 15px;
}

/* About Section Styles */
.about-section {
  border-top: 1px solid var(--color-border);
  padding-bottom: 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.about-card {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  padding: 40px;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-terracotta);
  border-left-color: var(--color-terracotta);
}

.about-card h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-terracotta);
  margin-bottom: 15px;
}

.about-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text);
}

/* Career Section Styles */
.career-section {
  border-top: 1px solid var(--color-border);
  padding-bottom: 100px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.career-card {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  padding: 38px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-terracotta);
}

.career-card h3.career-role {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-terracotta);
  margin-bottom: 15px;
  font-weight: 500;
}

.career-card .career-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin-bottom: 25px;
}

.career-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Contacts Section Styles */
.contacts-section {
  border-top: 1px solid var(--color-border);
  padding-bottom: 100px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.contact-info-card {
  background-color: var(--color-sand-light);
  border: 1px solid var(--color-border);
  padding: 42px;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: var(--color-terracotta);
}

.contact-info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-terracotta);
  margin-bottom: 15px;
  margin-top: 25px;
}

.contact-info-card h3:first-of-type {
  margin-top: 0;
}

.contact-info-card p.contact-detail {
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--color-text);
}

/* Responsive Overrides for New Sections */
@media (max-width: 992px) {
  .about-grid, .contacts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .career-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =============================================
   16. POLISH & ACCENT DETAILS
   ============================================= */

/* Gold accent on section headings */
.section-title .accent-italic {
  position: relative;
}

.section-title .accent-italic::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-terracotta), transparent);
  opacity: 0.5;
}

/* Enhanced info icon circles */
.info-icon {
  background: linear-gradient(135deg, var(--color-sand-light), var(--color-sand-muted));
  box-shadow: 0 2px 8px rgba(90, 50, 20, 0.08);
}

/* Toggle selected state - gold tint */
.toggle-group input[type="radio"]:checked + .toggle-btn {
  background: linear-gradient(135deg, #D4885E, var(--color-terracotta));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

/* News link arrow polish */
.news-link:hover,
.news-link-btn:hover {
  letter-spacing: 0.02em;
  color: var(--color-gold);
  text-decoration: none;
}

/* Tier card active glow */
.tier-card.active-tier {
  border-color: var(--color-gold);
  box-shadow: 0 4px 20px rgba(200, 149, 46, 0.12);
}

/* Mobile nav link gold hover */
.mobile-nav-list a:hover {
  color: var(--color-gold);
}

/* Lang button gold accent */
.lang-btn {
  color: var(--color-gold);
}

.lang-dropdown li:hover {
  color: var(--color-gold);
}

/* Btn small variant */
.btn-sm {
  padding: 9px 20px;
  font-size: 0.75rem;
}

/* Reveal animation — spring easing */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =================== LOCATIONS SECTION =================== */
.locations-section {
  padding: var(--section-padding);
  background: var(--color-sand-light);
  text-align: center;
}

.locations-grid {
  grid-template-columns: 1fr !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* =================== ADMIN SHARED STYLES =================== */
.dash-table-wrapper { overflow-x: auto; }

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.dash-table th, .dash-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.dash-table th {
  background: var(--color-sand);
  font-weight: 600;
  color: var(--color-charcoal);
}

.dash-table tr:hover td { background: rgba(198, 130, 96, 0.05); }

.dash-tab-btn {
  padding: 8px 18px;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-charcoal);
  transition: all 0.2s;
}

.dash-tab-btn:hover, .dash-tab-btn.active {
  background: var(--color-terracotta);
  color: #fff;
  border-color: var(--color-terracotta);
}

.dash-form-panel {
  background: var(--color-sand-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 24px;
}

.dash-btn-delete {
  padding: 4px 10px;
  background: #d9534f;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.8rem;
}

.dash-btn-delete:hover { background: #c9302c; }

.admin-login-wrapper {
  max-width: 420px;
  margin: 80px auto;
  padding: 50px 40px;
  background: var(--color-sand-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.admin-login-wrapper .section-title {
  margin-bottom: 28px;
  font-size: 2rem;
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#adminUserBadge {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
}
