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

:root {
  --primary: #c8a97e;
  --primary-dark: #b8925c;
  --primary-light: #dfc9a8;
  --secondary: #2c1810;
  --secondary-light: #4a2c20;
  --dark: #1a0f0a;
  --darker: #0d0805;
  --text: #f5f0eb;
  --text-muted: #a89888;
  --text-dark: #3d2b1f;
  --bg-dark: #1a0f0a;
  --bg-card: #241710;
  --bg-section: #1f130d;
  --bg-light: #faf6f1;
  --gold-gradient: linear-gradient(135deg, #c8a97e, #dfc9a8, #c8a97e);
  --shadow: 0 10px 40px rgba(0,0,0,0.3);
  --shadow-light: 0 5px 20px rgba(200,169,126,0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-elegant: 'Cormorant Garamond', serif;
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

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

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(13, 8, 5, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
}
.header.scrolled .nav-logo img { height: 45px; }
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 55px; transition: var(--transition); }
.nav-logo span {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: var(--transition);
  position: relative;
  border-radius: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--dark) !important;
  padding: 10px 24px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--primary-dark) !important; color: var(--text) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active { opacity: 1; }
.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0.7) 100%
  );
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 90%;
  max-width: 900px;
}
.slide-subtitle {
  font-family: var(--font-elegant);
  font-size: 20px;
  color: var(--primary);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 90px);
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 25px;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}
.slide-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.slide-desc {
  font-size: 17px;
  color: rgba(245, 240, 235, 0.85);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.slider-dot.active { background: var(--primary); border-color: var(--primary); transform: scale(1.3); }

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(200,169,126,0.15);
  border: 1px solid rgba(200,169,126,0.3);
  color: var(--text);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }
.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.btn-primary {
  background: var(--primary);
  color: var(--dark);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--text); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,169,126,0.3); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; }
.section-dark { background: var(--bg-section); }
.section-darker { background: var(--bg-dark); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-light .section-title,
.section-light .section-subtitle { color: var(--text-dark); }
.section-light .section-title span { -webkit-text-fill-color: var(--primary); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-tag {
  font-family: var(--font-elegant);
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 300;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== FEATURED SECTION (HOME) ===== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  text-align: center;
  padding: 50px 30px;
  background: var(--bg-card);
  border: 1px solid rgba(200,169,126,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); border-color: rgba(200,169,126,0.3); }
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(200,169,126,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 15px;
}
.feature-card p { color: var(--text-muted); font-size: 15px; }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.3;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  margin: 15px 0 20px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--primary);
  display: block;
}
.stat-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== MENU PREVIEW ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.menu-category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  transition: var(--transition);
}
.menu-category-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.menu-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.menu-category-card:hover img { transform: scale(1.1); }
.menu-category-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 25px 25px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  text-align: center;
}
.menu-category-card .overlay h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 8px;
}
.menu-category-card .overlay p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
.menu-category-card .overlay .menu-count {
  display: inline-block;
  background: var(--primary);
  color: var(--dark);
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== CHEF SECTION ===== */
.chef-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.chef-card {
  text-align: center;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,169,126,0.1);
  transition: var(--transition);
}
.chef-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(200,169,126,0.3); }
.chef-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.chef-info { padding: 25px; }
.chef-info h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 5px;
}
.chef-info span {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.chef-info p { color: var(--text-muted); font-size: 14px; margin-top: 12px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,126,0.1);
  transition: var(--transition);
}
.review-card:hover { border-color: rgba(200,169,126,0.3); transform: translateY(-5px); }
.review-stars { color: #ffc107; margin-bottom: 15px; font-size: 16px; }
.review-card p { color: var(--text-muted); font-size: 15px; font-style: italic; line-height: 1.8; }
.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.review-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.review-author h5 { font-family: var(--font-display); font-size: 16px; }
.review-author span { color: var(--text-muted); font-size: 12px; }

/* ===== RESERVATION CTA ===== */
.reservation-cta {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.pexels.com/photos/260922/pexels-photo-260922.jpeg?auto=compress&cs=tinysrgb&w=1920');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  background-attachment: fixed;
}
.reservation-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 15px;
}
.reservation-cta p {
  color: var(--text-muted);
  margin-bottom: 35px;
  font-size: 17px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--darker);
  padding: 80px 0 0;
  border-top: 1px solid rgba(200,169,126,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 15px;
}
.footer-brand h3 span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200,169,126,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  font-size: 16px;
}
.footer-social a:hover { background: var(--primary); color: var(--dark); }
.footer h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--text);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 14px;
}
.footer-contact-item .icon { color: var(--primary); font-size: 18px; min-width: 25px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 25px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}
.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: #fff;
  color: #333;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.whatsapp-float:hover .tooltip { opacity: 1; }

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
}
.page-header p { color: var(--text-muted); margin-top: 15px; font-size: 17px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb span { color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.about-story .story-text h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); margin: 15px 0; }
.about-story .story-text p { color: var(--text-muted); margin-bottom: 15px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.value-card { text-align: center; padding: 40px 20px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid rgba(200,169,126,0.1); transition: var(--transition); }
.value-card:hover { border-color: rgba(200,169,126,0.3); transform: translateY(-5px); }
.value-card .icon { font-size: 42px; margin-bottom: 20px; }
.value-card h4 { font-family: var(--font-display); font-size: 20px; margin-bottom: 10px; }
.value-card p { color: var(--text-muted); font-size: 14px; }

/* ===== MENU PAGE ===== */
.menu-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.menu-section { margin-bottom: 50px; }
.menu-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(200,169,126,0.2);
  display: flex;
  align-items: center;
  gap: 15px;
}
.menu-section-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.menu-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.menu-item:hover { background: rgba(200,169,126,0.05); }
.menu-item img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.menu-item-info { flex: 1; }
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.menu-item-header h4 { font-family: var(--font-display); font-size: 18px; }
.menu-item-header .price { color: var(--primary); font-size: 18px; font-weight: 600; }
.menu-item-header .tag {
  background: rgba(200,169,126,0.15);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.menu-item-info p { color: var(--text-muted); font-size: 14px; }
.menu-filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid rgba(200,169,126,0.3);
  color: var(--text);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  height: 250px;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay span {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 25px;
}

/* ===== RESERVATIONS PAGE ===== */
.reservation-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.reservation-form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,169,126,0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,126,0.2);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(200,169,126,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group select option { background: var(--dark); color: var(--text); }
.form-group textarea { height: 120px; resize: vertical; }
.reservation-info { padding: 40px; }
.reservation-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 20px;
}
.reservation-info p { color: var(--text-muted); margin-bottom: 25px; }
.reservation-info .info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.reservation-info .info-item .icon { color: var(--primary); font-size: 22px; min-width: 30px; }
.reservation-info .info-item h5 { font-size: 15px; margin-bottom: 3px; }
.reservation-info .info-item span { color: var(--text-muted); font-size: 14px; }

/* ===== EVENTS PAGE ===== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.event-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,169,126,0.1);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); border-color: rgba(200,169,126,0.3); }
.event-card img { width: 100%; height: 220px; object-fit: cover; }
.event-card-content { padding: 25px; }
.event-card-content h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 10px; }
.event-card-content p { color: var(--text-muted); font-size: 14px; margin-bottom: 15px; }
.event-card-content .capacity { color: var(--primary); font-size: 13px; display: flex; align-items: center; gap: 8px; }

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-form { background: var(--bg-card); padding: 40px; border-radius: var(--radius-lg); border: 1px solid rgba(200,169,126,0.1); }
.contact-info-grid { display: grid; gap: 25px; }
.contact-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(200,169,126,0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(200,169,126,0.3); }
.contact-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(200,169,126,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-card h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 5px; }
.contact-card p { color: var(--text-muted); font-size: 14px; }

/* Map placeholder */
.map-container {
  height: 350px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 50px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse {
  0% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 998;
  width: 45px;
  height: 45px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: var(--dark);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(200,169,126,0.3);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); background: var(--primary-dark); color: var(--text); }

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--bg-card);
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 450px;
  width: 90%;
  border: 1px solid rgba(200,169,126,0.2);
  animation: fadeInUp 0.5s ease;
}
.modal-box .icon { font-size: 60px; margin-bottom: 20px; }
.modal-box h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 10px; }
.modal-box p { color: var(--text-muted); margin-bottom: 25px; }
