/* ============================================
   EMBER & OAK - Premium Steakhouse & Grill
   Color Palette:
   - Deep Charcoal: #1a1a1a
   - Warm Gold: #c9a96e
   - Burgundy: #6b1d1d
   - Cream: #f5f0e8
   - Dark Brown: #2a1f14
   ============================================ */

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

:root {
  --charcoal: #1a1a1a;
  --dark-bg: #111111;
  --dark-surface: #1e1e1e;
  --gold: #c9a96e;
  --gold-light: #ddc08a;
  --gold-dark: #a88a4e;
  --burgundy: #6b1d1d;
  --burgundy-light: #8b2d2d;
  --cream: #f5f0e8;
  --cream-dark: #e8dfd2;
  --dark-brown: #2a1f14;
  --text-light: #f5f0e8;
  --text-muted: #a09888;
  --text-dark: #1a1a1a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

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

.preloader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 20px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(201, 169, 110, 0.2);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: preloaderSlide 1.2s ease infinite;
}

@keyframes preloaderSlide {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  letter-spacing: 4px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-reserve-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-reserve-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.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);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 999;
  transition: right 0.5s ease;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: 4px;
}

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

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

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

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 17, 0.85) 0%,
    rgba(26, 26, 26, 0.6) 50%,
    rgba(107, 29, 29, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-subtitle::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: 4.5rem;
  color: var(--cream);
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 40px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(201, 169, 110, 0.3);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
  padding: 120px 0;
}

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

.section-subtitle {
  font-size: 0.8rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 3rem;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 25px auto;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--charcoal);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-img-main {
  width: 75%;
  height: 400px;
  object-fit: cover;
  border: 3px solid var(--gold);
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 280px;
  object-fit: cover;
  border: 3px solid var(--charcoal);
}

.about-experience {
  position: absolute;
  top: 50%;
  right: 30%;
  transform: translateY(-50%);
  background: var(--burgundy);
  padding: 30px;
  text-align: center;
  z-index: 2;
}

.about-experience .number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.about-experience .label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 5px;
}

.about-content .section-subtitle {
  text-align: left;
}

.about-content .section-title {
  text-align: left;
  font-size: 2.5rem;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.9;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

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

.about-feature i {
  color: var(--gold);
  font-size: 1rem;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 1px;
}

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

.dish-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

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

.dish-card:hover img {
  transform: scale(1.1);
}

.dish-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(17, 17, 17, 0.95));
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.dish-card:hover .dish-overlay {
  transform: translateY(0);
  opacity: 1;
}

.dish-category {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.dish-price {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
}

.dish-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

/* ============================================
   EXPERIENCE / PROMO BANNER
   ============================================ */
.experience-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(107, 29, 29, 0.8);
}

.experience-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.experience-content .section-subtitle {
  margin-bottom: 15px;
}

.experience-content .section-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.experience-content p {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--charcoal);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

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

.testimonial-quote {
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 5px;
  letter-spacing: 1px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--gold);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--charcoal) 100%);
}

.cta-section .section-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.cta-hours {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cta-hour-item {
  text-align: center;
}

.cta-hour-item .day {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.cta-hour-item .time {
  font-size: 1rem;
  color: var(--cream);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

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

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 4px;
}

.footer-contact-item span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}

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

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  height: 45vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(107, 29, 29, 0.4));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  font-size: 3.5rem;
  color: var(--cream);
  margin-bottom: 15px;
}

.page-hero-content .breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-hero-content .breadcrumb a {
  color: var(--gold);
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.menu-cat-btn {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--text-muted);
  padding: 12px 30px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.menu-item-info {
  flex: 1;
  padding-right: 20px;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 169, 110, 0.3);
  min-width: 30px;
}

.menu-item-price {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

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

.menu-item-tags {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.menu-tag {
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--gold);
}

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

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

.team-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  margin-bottom: 25px;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.team-card:hover img {
  filter: grayscale(0);
}

.team-card h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
}

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

/* ============================================
   VALUES SECTION
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.value-card {
  text-align: center;
  padding: 40px 25px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.value-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 15px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   RESERVATION PAGE
   ============================================ */
.reservation-section {
  background: var(--charcoal);
}

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

.reservation-form {
  background: var(--dark-surface);
  padding: 50px;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--cream);
  padding: 14px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group select option {
  background: var(--dark-surface);
  color: var(--cream);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.form-submit:hover {
  background: var(--gold-light);
}

.reservation-info {
  padding-top: 20px;
}

.reservation-info h3 {
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 20px;
}

.reservation-info > p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.private-dining {
  background: rgba(107, 29, 29, 0.2);
  border: 1px solid rgba(107, 29, 29, 0.4);
  padding: 35px;
  margin-bottom: 40px;
}

.private-dining h4 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.private-dining p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.reservation-perks {
  list-style: none;
}

.reservation-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--cream);
  font-size: 0.95rem;
}

.reservation-perks li i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--text-muted);
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item-overlay i {
  font-size: 1.5rem;
  color: var(--gold);
}

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

.contact-info-card {
  padding: 35px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
}

.contact-info-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 12px;
}

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

.map-container {
  height: 350px;
  margin-top: 30px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-surface);
}

.map-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 45px;
  height: 45px;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .about-grid {
    gap: 50px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-reserve-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
  }

  .hero-dots {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

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

  .about-images {
    height: 350px;
  }

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

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

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

  .reservation-form {
    padding: 30px;
  }

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

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

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-hours {
    gap: 30px;
  }

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

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-experience {
    padding: 20px;
  }

  .about-experience .number {
    font-size: 2.5rem;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }
}
