/* ======================================================
   MASZ BABO PLACEK — Premium Styles
   Dark Rustic Theme with Gold Accents
   ====================================================== */

/* --- Google Fonts are loaded in HTML --- */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Color Palette — Warm Rustic Dark */
  --gold:          #d4a843;
  --gold-light:    #f0c96a;
  --gold-dark:     #a8832c;
  --cream:         #fef8ec;
  --cream-soft:    #fdf3dc;
  --rust:          #8b3a20;
  --brown-dark:    #1a0f08;
  --brown-mid:     #2e1a0e;
  --brown-card:    #231409;
  --brown-border:  rgba(212, 168, 67, 0.18);
  --text-primary:  #fef8ec;
  --text-muted:    #b8a090;
  --text-dark:     #1a0f08;
  --glass-bg:      rgba(36, 20, 10, 0.6);
  --glass-border:  rgba(212, 168, 67, 0.25);

  /* Typography */
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Outfit', system-ui, sans-serif;

  /* Sizing */
  --container:     1200px;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     36px;
  --radius-pill:   9999px;

  /* Transitions */
  --ease-smooth:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.2s var(--ease-smooth);
  --transition-med:  0.4s var(--ease-smooth);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.25);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 8px 32px rgba(212, 168, 67, 0.25);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--brown-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 110px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding: 6px 18px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: rgba(212, 168, 67, 0.08);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title.left-aligned {
  text-align: left;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-med);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.02em;
}

.btn-gold:hover, .btn-gold:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.45);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(254, 248, 236, 0.35);
  cursor: pointer;
  transition: var(--transition-med);
  backdrop-filter: blur(8px);
}

.btn-outline:hover, .btn-outline:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(212, 168, 67, 0.08);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: var(--transition-med);
  box-shadow: var(--shadow-gold);
  margin-top: 16px;
}

.btn-gold-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 168, 67, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition-med), padding var(--transition-med), box-shadow var(--transition-med);
}

.navbar.scrolled {
  background: rgba(18, 10, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px var(--brown-border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.logo:hover {
  color: var(--gold);
}

.logo-icon {
  font-size: 1.6rem;
}

.logo-text {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(254, 248, 236, 0.8);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast);
}

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

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link.nav-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark);
  font-weight: 700;
  padding: 10px 24px;
  box-shadow: var(--shadow-gold);
}

.nav-link.nav-cta::after {
  display: none;
}

.nav-link.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 67, 0.4);
  color: var(--brown-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: rgba(212, 168, 67, 0.1);
}

.bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition-med), opacity var(--transition-fast);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?q=85&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.1);
  transition: transform 0s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18, 10, 5, 0.82) 0%,
    rgba(26, 15, 8, 0.65) 50%,
    rgba(139, 58, 32, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid rgba(212, 168, 67, 0.4);
  backdrop-filter: blur(12px);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 28px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(254, 243, 220, 0.85);
  max-width: 550px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
  width: fit-content;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(254, 248, 236, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2.4s ease-in-out infinite;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(254, 248, 236, 0.35);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-wheel 2.4s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.3; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ===== ANNOUNCEMENT STRIP ===== */
.announcement-strip {
  background: linear-gradient(135deg, var(--brown-mid) 0%, #3a1f10 100%);
  border-top: 1px solid var(--brown-border);
  border-bottom: 1px solid var(--brown-border);
  overflow: hidden;
  padding: 14px 0;
}

.strip-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: strip-scroll 30s linear infinite;
}

.strip-track span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
}

.strip-track span:first-child,
.strip-track span:nth-child(7) {
  color: var(--gold);
}

@keyframes strip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MENU SECTION ===== */
.menu-section {
  background: linear-gradient(180deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.menu-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.menu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 168, 67, 0.35);
  border-color: rgba(212, 168, 67, 0.45);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card-emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
  transition: transform var(--transition-med);
}

.menu-card:hover .menu-card-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.menu-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
}

.menu-card-body {
  flex: 1;
}

.menu-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.25;
}

.menu-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.menu-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
  margin-top: auto;
}

.menu-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Promo card */
.menu-card--promo {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12) 0%, rgba(139, 58, 32, 0.15) 100%);
  border-color: rgba(212, 168, 67, 0.35);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.menu-promo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-promo-emoji {
  font-size: 3.5rem;
  margin-bottom: 16px;
  animation: float 3s ease-in-out infinite;
}

.menu-promo-inner h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}

.menu-promo-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--brown-dark);
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 4px;
  overflow: hidden;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item--tall {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.gallery-item--wide {
  grid-column: 2 / 5;
  grid-row: 2 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
  filter: brightness(0.85);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,10,5,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-med);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  font-style: italic;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(180deg, var(--brown-mid) 0%, var(--brown-dark) 100%);
  position: relative;
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* About images */
.about-images {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 85%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--glass-border);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.about-img-main:hover img {
  transform: scale(1.05);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--brown-dark);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* About content */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-content .section-eyebrow {
  margin-bottom: 16px;
  align-self: flex-start;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* Timeline */
.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0 40px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-dot {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--brown-dark);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(212, 168, 67, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(212, 168, 67, 0.25);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(254, 248, 236, 0.85);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: rgba(212, 168, 67, 0.12);
  position: absolute;
  top: -20px;
  left: -12px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rust) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brown-dark);
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown-card);
  border-top: 1px solid var(--brown-border);
}

.footer-top {
  padding: 80px 0;
}

.footer-top-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  font-size: 1.6rem;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--brown-dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-info h3,
.footer-hours h3,
.footer-reserve h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

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

.footer-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-list li span:not(.footer-icon),
.footer-list li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color var(--transition-fast);
}

.footer-list li a:hover {
  color: var(--gold);
}

/* Hours */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px dashed rgba(212, 168, 67, 0.1);
}

.hours-list li.hours-highlight {
  color: var(--gold);
  font-weight: 600;
}

.day { font-weight: 500; }
.hours { text-align: right; }

/* Footer reserve */
.footer-reserve p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(184, 160, 144, 0.6) !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--brown-border);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(184, 160, 144, 0.6);
}

.footer-bottom strong {
  color: var(--gold);
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--brown-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.4), var(--shadow-md);
  transition: transform var(--transition-med), box-shadow var(--transition-med), opacity var(--transition-med);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(212, 168, 67, 0.55), var(--shadow-md);
}

.floating-cta-icon {
  font-size: 1.1rem;
  animation: ring 3s ease-in-out infinite;
}

@keyframes ring {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%            { transform: rotate(-15deg); }
  94%            { transform: rotate(15deg); }
  96%            { transform: rotate(-10deg); }
  98%            { transform: rotate(10deg); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform var(--transition-med), box-shadow var(--transition-med), opacity var(--transition-med);
  opacity: 0;
  transform: translateY(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  background: rgba(212, 168, 67, 0.15);
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .footer-top-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-container {
    gap: 48px;
  }

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

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {

  /* Navbar */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: rgba(18, 10, 5, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.4s var(--ease-smooth);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 16px;
  }

  .nav-link.nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 14px 24px;
  }

  /* Hero */
  .hero-content {
    padding: 140px 20px 80px;
  }

  .hero-stats {
    flex-direction: column;
    padding: 20px 28px;
    gap: 16px;
  }

  .stat {
    padding: 0;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    justify-content: space-between;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .gallery-item--tall {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }

  .gallery-item--wide {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  /* About */
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-images {
    height: 360px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-top-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  /* Floating CTA */
  .floating-cta-text {
    display: none;
  }

  .floating-cta {
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .floating-cta-icon {
    font-size: 1.4rem;
    animation: ring 3s ease-in-out infinite;
  }

  .back-to-top {
    bottom: 110px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 80px 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

  .gallery-item--tall,
  .gallery-item--wide {
    grid-row: auto;
    grid-column: auto;
  }

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