/* ============================================================
   LISKA RESTAURANT — Main Stylesheet
   Mediterranean Fish & Seafood · Mellieħa, Malta
   ============================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --navy:       #0d2137;
  --navy-mid:   #163354;
  --teal:       #1e7a8c;
  --teal-light: #2a9db5;
  --gold:       #c8a055;
  --gold-light: #e0b96a;
  --sand:       #f5ede0;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --dark:       #1a1a1a;
  --text:       #3a3a3a;
  --text-light: #6b6b6b;
  --border:     rgba(200, 160, 85, 0.25);
  --shadow:     0 8px 40px rgba(13,33,55,0.13);
  --shadow-sm:  0 2px 12px rgba(13,33,55,0.08);
  --radius:     6px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.25;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

.section-subtitle {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title { margin-bottom: 1.2rem; }

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.divider-left { margin-left: 0; }

/* ---- Layout ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,160,85,0.4);
}

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

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--navy);
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

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

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.nav-logo .logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  position: relative;
  transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.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;
  inset: 0;
  background: linear-gradient(135deg, #0d2137 0%, #163354 40%, #1e4d6b 70%, #0d2137 100%);
  z-index: 0;
}

/* Decorative wave overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(30,122,140,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(200,160,85,0.08) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,35,0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1.2rem;
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

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

/* ============================================================
   ABOUT / STORY
   ============================================================ */
.about { background: var(--cream); }

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

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 6px solid var(--cream);
}

.about-rating {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.about-rating .stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.about-rating .score { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; }
.about-rating .total { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }

.about-text p { color: var(--text-light); margin-bottom: 1.2rem; font-size: 1.05rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text strong { display: block; font-size: 0.88rem; color: var(--navy); }
.feature-text span   { font-size: 0.8rem; color: var(--text-light); }

/* ============================================================
   MENU PREVIEW / SPECIALTIES
   ============================================================ */
.specialties { background: var(--navy); }
.specialties .section-title { color: var(--white); }

.specialties-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.specialties-intro p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.specialty-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,160,85,0.2);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: var(--transition);
}

.specialty-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,160,85,0.5);
  transform: translateY(-4px);
}

.specialty-emoji { font-size: 2.4rem; margin-bottom: 1.2rem; }
.specialty-card h3 { color: var(--white); margin-bottom: 0.6rem; font-size: 1.25rem; }
.specialty-card p  { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.6; }

.specialties-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   EXPERIENCE / INFO STRIP
   ============================================================ */
.info-strip {
  background: var(--gold);
}

.info-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.info-item {
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.3);
}
.info-item:last-child { border-right: none; }

.info-item .info-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.info-item strong { display: block; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); font-weight: 700; }
.info-item span   { font-size: 0.82rem; color: var(--navy); opacity: 0.75; }

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

.testimonials-header { text-align: center; margin-bottom: 3rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.author-name { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.author-meta { font-size: 0.75rem; color: var(--text-light); }

.ta-link {
  text-align: center;
  margin-top: 2.5rem;
}

.ta-link a {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   RESERVATION CTA SECTION
   ============================================================ */
.reserve-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a4a6a 100%);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.reserve-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 120%, rgba(30,122,140,0.4) 0%, transparent 65%);
}

.reserve-cta .container { position: relative; z-index: 1; }
.reserve-cta h2 { color: var(--white); margin-bottom: 1rem; }
.reserve-cta p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #091520; color: rgba(255,255,255,0.7); }

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}

.footer-brand .logo-name { font-size: 2rem; margin-bottom: 0.3rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: rgba(255,255,255,0.55); }

.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,160,85,0.1); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.contact-icon { font-size: 1rem; margin-top: 1px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  text-align: center;
}
.page-hero h1  { color: var(--white); }
.page-hero p   { color: rgba(255,255,255,0.65); margin-top: 0.8rem; font-size: 1.05rem; }

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

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.menu-tab {
  background: none;
  border: none;
  padding: 0.9rem 1.8rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.menu-tab.active, .menu-tab:hover {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.menu-category { display: none; }
.menu-category.active { display: block; }

.menu-category-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.menu-category-header p { color: var(--text-light); font-style: italic; font-family: 'Playfair Display', serif; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.menu-item:hover {
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
  transform: translateX(3px);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
}

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

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

.menu-item-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.8rem; }

.tag {
  background: var(--sand);
  color: var(--text-light);
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tag-veg   { background: #e8f5e9; color: #388e3c; }
.tag-sig   { background: rgba(200,160,85,0.15); color: #9a7030; }
.tag-sp    { background: #fce4ec; color: #c62828; }

.menu-note {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-light);
  border: 1px solid var(--border);
}

.menu-note strong { color: var(--navy); }

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

.reservation-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.reservation-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.reservation-form-wrapper h2 { margin-bottom: 0.3rem; }
.reservation-form-wrapper > p { color: var(--text-light); margin-bottom: 2rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,122,140,0.1);
}

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

.form-submit { width: 100%; padding: 1rem; font-size: 0.92rem; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  margin-top: 1rem;
  color: #2e7d32;
  font-size: 0.92rem;
  text-align: center;
}

.reservation-info { position: sticky; top: 7rem; }

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.info-card h3 { margin-bottom: 1.2rem; font-size: 1.1rem; }

.hours-list { }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 700; color: var(--navy); }
.hours-row .time { color: var(--text-light); }
.hours-row .time.closed { color: #e57373; }

.contact-info-card { }
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
}
.contact-line:last-child { margin-bottom: 0; }
.c-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.c-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 2px; }
.c-text span   { color: var(--navy); font-weight: 400; }

.map-placeholder {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  text-align: center;
  font-size: 0.88rem;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}
.map-placeholder:hover { opacity: 0.9; }
.map-placeholder .map-icon { font-size: 2.5rem; }
.map-placeholder strong { display: block; color: white; font-size: 0.95rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.detail-card-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.detail-card h3   { font-size: 1rem; margin-bottom: 0.5rem; }
.detail-card p, .detail-card a { font-size: 0.9rem; color: var(--text-light); }
.detail-card a:hover { color: var(--teal); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  position: relative;
}

.map-embed a {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: white;
  background: rgba(13,33,55,0.7);
  transition: var(--transition);
}
.map-embed a:hover { background: rgba(13,33,55,0.55); }
.map-embed .pin { font-size: 3rem; }
.map-embed strong { font-size: 1.1rem; }
.map-embed span   { font-size: 0.82rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }

  .nav-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-rating { display: none; }

  .info-strip .container { grid-template-columns: 1fr 1fr; }
  .info-item { border-bottom: 1px solid rgba(255,255,255,0.2); }
  .info-item:nth-child(2n) { border-right: none; }

  .reservation-grid { grid-template-columns: 1fr; }
  .reservation-info  { position: static; }

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

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

  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .info-strip .container { grid-template-columns: 1fr; }
  .info-item { border-right: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .reservation-form-wrapper { padding: 1.8rem; }
}
