/* ============================================================
   CHAFARIZ DAS GRAVATAS - Modern Dark / Moody Theme
   A sophisticated, dramatic dark-themed restaurant website
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Raleway:wght@200;300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --near-black: #0d0d0d;
  --dark-charcoal: #1a1a1a;
  --medium-dark: #2a2a2a;
  --dark-surface: #222222;
  --gold: #d4af37;
  --warm-gold: #e8c547;
  --gold-muted: #b8972e;
  --soft-white: #e8e8e8;
  --muted-text: #999999;
  --muted-light: #bbbbbb;
  --overlay-dark: rgba(13, 13, 13, 0.75);
  --overlay-darker: rgba(0, 0, 0, 0.85);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.3);
  --gold-glow-strong: 0 0 30px rgba(212, 175, 55, 0.5);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Raleway', sans-serif;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  background-color: var(--near-black);
  color: var(--soft-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: var(--gold);
  transition: color var(--transition-base), text-shadow var(--transition-base);
}

a:hover {
  color: var(--warm-gold);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--soft-white);
  line-height: 1.3;
}

/* --- Utility Classes --- */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

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

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

/* --- Gold Divider --- */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 30px auto;
  max-width: 400px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gold-divider-icon {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 6px;
}

.gold-line {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto;
  border: none;
}

.gold-line-wide {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 25px auto;
  border: none;
}

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--soft-white);
  margin-bottom: 10px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--muted-text);
  letter-spacing: 2px;
  margin-bottom: 50px;
}

/* --- Fade-In Animation --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes goldPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.animate-fade-in {
  animation: fadeInUp 1s ease forwards;
}

.animate-fade-in-delay {
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

.animate-fade-in-delay-2 {
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.animate-fade-in-delay-3 {
  animation: fadeInUp 1s ease 0.9s forwards;
  opacity: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  animation: slideDown 0.8s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
  height: 80px;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: text-shadow var(--transition-base);
  white-space: nowrap;
}

.navbar-logo:hover {
  color: var(--warm-gold);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.navbar-logo span {
  font-weight: 400;
  font-size: 0.85em;
  color: var(--muted-text);
  letter-spacing: 2px;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted-light);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base), left var(--transition-base);
}

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

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

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-base);
}

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

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(13, 13, 13, 0.75) 50%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 12px;
  color: var(--soft-white);
  margin-bottom: 15px;
  animation: fadeInUp 1.2s ease;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease 0.3s forwards;
  opacity: 0;
}

.hero-btn {
  display: inline-block;
  padding: 16px 50px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all var(--transition-base);
  animation: fadeInUp 1.2s ease 0.6s forwards;
  opacity: 0;
}

.hero-btn:hover {
  background: var(--gold);
  color: var(--near-black);
  box-shadow: var(--gold-glow-strong);
  text-shadow: none;
}

/* Page Hero (shorter) */
.hero-page {
  height: 50vh;
  min-height: 400px;
}

.hero-page .hero-title {
  font-size: 3rem;
  letter-spacing: 10px;
}

.hero-page .hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(13, 13, 13, 0.8) 70%,
    var(--near-black) 100%
  );
}

/* ============================================================
   WELCOME / INTRO SECTION
   ============================================================ */
.welcome-section {
  background: var(--near-black);
  padding: 100px 0;
  text-align: center;
}

.welcome-section .section-title {
  font-size: 2.5rem;
}

.welcome-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.9;
}

.welcome-text p {
  margin-bottom: 20px;
}

/* ============================================================
   FEATURED DISHES
   ============================================================ */
.featured-section {
  background: var(--dark-charcoal);
  padding: 100px 0;
}

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

.dish-card {
  background: var(--medium-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all var(--transition-slow);
  position: relative;
}

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

.dish-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.dish-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.dish-card-content {
  padding: 30px;
}

.dish-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: var(--soft-white);
}

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

.dish-card-price {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ============================================================
   PARALLAX QUOTE SECTION
   ============================================================ */
.parallax-section {
  position: relative;
  padding: 120px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.82);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.parallax-quote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--soft-white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.parallax-quote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  font-style: normal;
}

.parallax-author {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* ============================================================
   CTA / RESERVATION SECTION
   ============================================================ */
.cta-section {
  background: var(--near-black);
  padding: 100px 0;
  text-align: center;
}

.cta-section .section-title {
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.05rem;
  color: var(--muted-text);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-btn {
  display: inline-block;
  padding: 18px 55px;
  background: var(--gold);
  color: var(--near-black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  border: 1px solid var(--gold);
  transition: all var(--transition-base);
  cursor: pointer;
}

.cta-btn:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: var(--gold-glow-strong);
  text-shadow: none;
}

.cta-phone {
  margin-top: 25px;
  font-size: 1.1rem;
  color: var(--muted-text);
  letter-spacing: 2px;
}

.cta-phone a {
  color: var(--gold);
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-charcoal);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 25px;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  color: var(--muted-text);
  line-height: 2;
}

.footer-col a {
  color: var(--muted-text);
  transition: color var(--transition-base);
}

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

.footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours li span:last-child {
  color: var(--soft-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-bottom .footer-brand {
  font-family: var(--font-heading);
  color: var(--gold);
  letter-spacing: 3px;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-section {
  background: var(--near-black);
  padding: 80px 0;
}

.menu-category {
  max-width: 800px;
  margin: 0 auto 70px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

.menu-category-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 35px;
}

.menu-category-divider::before,
.menu-category-divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold-muted);
}

.menu-category-divider span {
  color: var(--gold);
  font-size: 0.8rem;
}

.menu-item {
  display: flex;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-base);
}

.menu-item:hover {
  background: rgba(212, 175, 55, 0.03);
  padding-left: 10px;
  padding-right: 10px;
}

.menu-item-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--soft-white);
  white-space: nowrap;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.15);
  margin: 0 12px;
  min-width: 30px;
  position: relative;
  top: -5px;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 1px;
}

.menu-item-desc {
  font-size: 0.85rem;
  color: var(--muted-text);
  font-style: italic;
  padding: 2px 0 8px;
  font-weight: 300;
}

.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted-text);
  font-style: italic;
  margin-top: 60px;
  letter-spacing: 1px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--near-black);
  padding: 100px 0;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 2;
  margin-bottom: 25px;
}

.story-content p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  padding-right: 12px;
  color: var(--gold);
  margin-top: 5px;
}

.story-highlight {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--soft-white) !important;
  font-style: italic;
  padding: 30px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  margin: 40px 0 !important;
  letter-spacing: 1px;
  line-height: 1.7 !important;
}

/* Photo Gallery */
.gallery-section {
  background: var(--dark-charcoal);
  padding: 100px 0;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-slow);
}

.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: var(--gold-glow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.3);
  transition: background var(--transition-base);
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(13, 13, 13, 0.1);
}

/* Group Section */
.group-section {
  background: var(--near-black);
  padding: 100px 0;
}

.group-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.group-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 25px;
}

.group-text p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.group-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.group-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.group-image:hover img {
  transform: scale(1.05);
}

/* Chef Section */
.chef-section {
  background: var(--dark-charcoal);
  padding: 100px 0;
  text-align: center;
}

.chef-content {
  max-width: 700px;
  margin: 0 auto;
}

.chef-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.chef-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 30px;
}

.chef-role {
  font-size: 0.9rem;
  color: var(--muted-text);
  letter-spacing: 2px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--near-black);
  padding: 80px 0 100px;
}

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

.contact-card {
  background: var(--dark-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-base);
}

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

.contact-card-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  color: var(--gold);
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.8;
}

.contact-card a {
  color: var(--muted-light);
}

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

/* Hours Table */
.hours-section {
  margin-bottom: 70px;
}

.hours-table-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table thead th {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--near-black);
  background: var(--gold);
  padding: 14px 20px;
  text-align: left;
}

.hours-table tbody td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--muted-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--dark-charcoal);
}

.hours-table tbody tr:hover td {
  background: var(--medium-dark);
}

.hours-table .closed {
  color: #cc4444;
  font-weight: 400;
}

/* Reservation Form */
.reservation-section {
  max-width: 700px;
  margin: 0 auto;
}

.reservation-section h2 {
  text-align: center;
}

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

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

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

.form-group label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted-text);
  margin-bottom: 10px;
  font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 14px 18px;
  background: var(--dark-charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft-white);
  transition: all var(--transition-base);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

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

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--dark-charcoal);
  color: var(--soft-white);
}

.form-submit {
  text-align: center;
  margin-top: 35px;
}

.form-submit button {
  display: inline-block;
  padding: 18px 60px;
  background: var(--gold);
  color: var(--near-black);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all var(--transition-base);
}

.form-submit button:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: var(--gold-glow-strong);
}

/* Map */
.map-section {
  margin-top: 70px;
  text-align: center;
}

.map-wrapper {
  border: 1px solid rgba(212, 175, 55, 0.3);
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
  filter: grayscale(80%) invert(92%) contrast(90%);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablets */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
    letter-spacing: 8px;
  }

  .hero-tagline {
    font-size: 1rem;
    letter-spacing: 3px;
  }

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

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

  .group-content {
    gap: 40px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .navbar .container {
    height: 70px;
  }

  .navbar-logo {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: 34px 0;
    gap: 14px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 6px 0;
  }

  .nav-links a {
    padding: 20px 30px;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: 6px;
  }

  .hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero-page .hero-title {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }

  .hero-btn {
    padding: 14px 35px;
    font-size: 0.8rem;
  }

  .section-padding {
    padding: 70px 0;
  }

  .section-title {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

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

  .dish-card-img {
    height: 220px;
  }

  .parallax-section {
    background-attachment: scroll;
    padding: 80px 0;
  }

  .parallax-quote {
    font-size: 1.3rem;
  }

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

  .footer-hours li {
    justify-content: center;
    gap: 15px;
  }

  /* Menu */
  .menu-category-title {
    font-size: 1.3rem;
    letter-spacing: 4px;
  }

  .menu-item-name {
    font-size: 0.9rem;
    white-space: normal;
  }

  /* About */
  .story-content p:first-of-type::first-letter {
    font-size: 2.8rem;
  }

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

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

  .group-image {
    order: -1;
    max-height: 350px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .map-wrapper iframe {
    height: 300px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
    letter-spacing: 4px;
  }

  .hero-page .hero-title {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }

  .parallax-quote {
    font-size: 1.1rem;
  }

  .cta-btn {
    padding: 15px 40px;
    font-size: 0.8rem;
    letter-spacing: 3px;
  }

  .menu-item {
    flex-wrap: wrap;
  }

  .menu-item-dots {
    display: none;
  }

  .menu-item-price {
    width: 100%;
    text-align: right;
    margin-top: 2px;
  }

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

/* Back to templates link */
:root {
  --templates-back-height: 38px;
}

.templates-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--templates-back-height);
  background: #f6f2ea;
  color: #3a3a3a;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1200;
}


.templates-back a {
  color: inherit;
  text-decoration: none;
}

.templates-back a:hover {
  text-decoration: underline;
}

nav,
.navbar {
  top: var(--templates-back-height);
}

body.is-embedded .templates-back {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--templates-back-height);
  background: #f6f2ea;
  color: #3a3a3a;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1200;
}


body.is-embedded nav,
body.is-embedded .navbar {
  top: 0;
}
