/* Restaurant Culmann - Premium Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --primary: #B8860B;
  --primary-dark: #8B6508;
  --primary-light: #DAA520;
  --accent: #C00201;
  --accent-dark: #9a0201;
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --text-light: #777;
  --bg-light: #faf8f5;
  --bg-cream: #f5f0e8;
  --bg-dark: #1a1a1a;
  --bg-dark-card: #242424;
  --gold: #C9A96E;
  --gold-light: #e8d5a8;
  --white: #ffffff;
  --border-light: rgba(201, 169, 110, 0.2);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  background: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.3;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children animations */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.45s; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 0.6s; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 0.75s; }

/* ===== NAVIGATION ===== */
.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo img {
  height: 56px;
  width: auto;
  transition: transform var(--transition);
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.navbar-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.3px;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 60%;
}

.navbar-links a:hover {
  color: var(--primary);
}

.navbar-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-badge {
  background: var(--accent);
  color: white;
  font-size: 0.6rem;
  padding: 2px 7px;
  border-radius: 9999px;
  position: absolute;
  top: -8px;
  right: 0px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.navbar-social {
  display: flex;
  gap: 0.5rem;
}

.navbar-social a {
  color: var(--text-gray);
  transition: all var(--transition);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
}

.navbar-social a:hover {
  color: var(--primary);
  background: var(--bg-cream);
  transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--bg-cream);
}

.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
  color: var(--text-dark);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--border-light);
  padding: 0.5rem 1.5rem 1rem;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  transition: all var(--transition);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--bg-dark);
  color: white;
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(192, 2, 1, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(201, 169, 110, 0.05) 0%, transparent 40%);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-content {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-decoration .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-decoration .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.8;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0;
  color: rgba(255,255,255,0.75);
  max-width: 650px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Decorative divider between sections */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.section-divider .line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.section-divider .icon {
  color: var(--gold);
  opacity: 0.6;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 6rem 2rem;
  position: relative;
}

.section-cream {
  background: var(--bg-cream);
}

.section-gray {
  background: var(--bg-cream);
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-dark .section-header h2 {
  color: white;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.65);
}

/* Decorative line under section headers */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.2), rgba(201, 169, 110, 0.08));
  transform: scale(1.08);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ===== CUISINE / ABOUT SECTION ===== */
.cuisine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cuisine-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.cuisine-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--primary-light));
  margin-top: 1rem;
  border-radius: 2px;
}

.cuisine-text p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 2rem;
}

.cuisine-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.badge:hover {
  transform: translateY(-2px);
}

.badge-rating {
  background: linear-gradient(135deg, #fefce8, #fef9c3);
  color: #854d0e;
  border: 1px solid rgba(133, 77, 14, 0.1);
}

.badge-rating svg {
  color: var(--primary-light);
}

.badge-family {
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
  color: var(--primary);
  border: 1px solid rgba(201, 169, 110, 0.15);
}

.cuisine-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cuisine-image::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.3;
}

.cuisine-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* ===== INFO CARDS ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.12), rgba(201, 169, 110, 0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.info-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 5rem 2rem 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo img {
  height: 100px;
  width: auto;
  opacity: 0.95;
  transition: opacity var(--transition);
}

.footer-logo img:hover {
  opacity: 1;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all var(--transition);
}

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

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

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

.footer-social a:hover svg {
  stroke: var(--bg-dark);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.35);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(192, 2, 1, 0.25);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(192, 2, 1, 0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ===== MENU PAGE ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--border-light);
  border-radius: 9999px;
  background: white;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
  color: var(--text-gray);
}

.menu-tab:hover {
  border-color: var(--gold);
  color: var(--primary);
  background: rgba(201, 169, 110, 0.04);
}

.menu-tab.active {
  background: var(--bg-dark);
  color: white;
  border-color: var(--bg-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.menu-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  transition: all var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.06);
  position: relative;
  overflow: hidden;
}

.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 110, 0.15);
}

.menu-item-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.menu-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  margin-left: 1.5rem;
  font-family: 'Playfair Display', serif;
}

/* ===== EVENTS PAGE ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.event-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

.event-card-image .event-icon {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  color: var(--text-dark);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1;
  letter-spacing: 0.3px;
}

.event-card-content {
  padding: 1.75rem;
}

.event-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
}

.event-card-content p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.event-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-meta svg {
  color: var(--gold);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  letter-spacing: 0.2px;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  background: white;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== RESERVATION FORM ===== */
.reservation-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 169, 110, 0.08);
}

/* ===== ABOUT PAGE ===== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(201, 169, 110, 0.08);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-value-card .value-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Playfair Display', serif;
}

.about-value-card h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

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

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-dark);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-section h2 {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ===== TESTIMONIAL / QUOTE ===== */
.quote-section {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--bg-cream);
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--text-dark);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.quote-author {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* ===== FLOATING RESERVE BUTTON ===== */
.floating-reserve {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.floating-reserve.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-reserve a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(192, 2, 1, 0.35);
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}

.floating-reserve a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(192, 2, 1, 0.45);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--bg-dark);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

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

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cuisine-grid,
  .contact-grid,
  .about-story {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-social {
    display: none;
  }

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

  .hero {
    padding: 5rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.25rem;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
  }

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

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

  .features-grid,
  .info-grid,
  .menu-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 4rem 1.5rem;
  }

  .section-header h2 {
    font-size: 1.85rem;
  }

  .cuisine-text h2 {
    font-size: 1.85rem;
  }

  .cuisine-image img {
    height: 350px;
  }

  .floating-reserve {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-reserve a {
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
  }

  .back-to-top {
    bottom: 1rem;
    left: 1rem;
    width: 38px;
    height: 38px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right,
  .scale-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero h1,
  .hero p,
  .hero-subtitle,
  .hero-buttons {
    opacity: 1;
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
