/* ══════════════════════════════
   GLOBAL & VARIABLES
══════════════════════════════ */
:root {
  --bg-color: #faf9f6;
  --text-main: #1a1c20;
  --text-muted: #5a6570;
  --accent-primary: #e8a000;
  --accent-secondary: #d45500;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.05);
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Permanent Marker', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.75;
  background: var(--bg-color);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
}

/* Ambient glow backgrounds */
body::before, body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.12;
  pointer-events: none;
}
body::before {
  top: -200px;
  left: -200px;
  background: var(--accent-primary);
}
body::after {
  bottom: -200px;
  right: -200px;
  background: var(--accent-secondary);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  text-align: center;
  padding: 4vh 20px 5vh;
  background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.85) 75%, var(--bg-color) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/IMG_20170111_180628-768x432.jpg') center/cover no-repeat;
  opacity: 0.65;
  z-index: -1;
}

.hero-logo {
  display: block;
  margin: 0 auto 20px;
  max-width: 750px;
  width: 95%;
  aspect-ratio: 768 / 139;
  clip-path: inset(4px);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 3px rgba(255,255,255,0.9);
}

.hero-location {
  font-size: 0.95rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 35px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(255,255,255,0.9);
}

.hero-location a {
  color: var(--accent-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.hero-location a:hover { color: var(--accent-primary); }

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-nav a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  background: white;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 16px 20px;
  border-radius: 40px;
  border: 2px solid transparent;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-nav a:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 14px 28px rgba(212, 85, 0, 0.35);
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
.section {
  padding: 50px 20px;
  position: relative;
}

#menu, #location { background: transparent; }

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-rule {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: 4px;
  margin: 0 auto 15px;
  box-shadow: 0 0 10px rgba(232, 160, 0, 0.3);
}

.section-sub {
  text-align: center;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-style: italic;
}

/* ══════════════════════════════
   MENU SECTION
══════════════════════════════ */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.menu-tab {
  background: #fff;
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 12px 28px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
}

.menu-tab:hover {
  border-color: var(--accent-primary);
  color: var(--text-main);
  background: rgba(232, 160, 0, 0.05);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(212, 85, 0, 0.3);
  font-style: normal;
}

.menu-page { display: none; animation: fadeInMenu 0.4s ease forwards; opacity: 0; transform: translateY(10px); }
.menu-page.active { display: block; }

@keyframes fadeInMenu {
  to { opacity: 1; transform: translateY(0); }
}

.menu-page img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s ease;
}
.menu-page img:hover {
  transform: scale(1.01);
}

/* Specials */
.specials-section { margin-top: 80px; }

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.special-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--glass-shadow);
}

.special-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 160, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 0 15px rgba(232,160,0,0.1);
}

.special-card img { width: 100%; height: 240px; object-fit: cover; display: block; border-bottom: 1px solid rgba(0,0,0,0.05); }

.special-card-body { padding: 24px; }

.special-card-day {
  display: inline-block;
  background: #c24d00;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(232, 160, 0, 0.2);
}

.special-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.special-card-desc {
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* CTA */
.cta-bar {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(232,160,0,0.05), rgba(212,85,0,0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 160, 0, 0.2);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.05);
}

.cta-bar p { font-weight: 400; font-style: italic; color: var(--text-muted); margin-bottom: 15px; font-size: 1.1rem; }

.cta-bar .phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: var(--font-body);
}

.cta-bar .phone:hover {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(232, 160, 0, 0.2);
}
.cta-bar .note { font-size: 0.9rem; color: var(--text-muted); margin-top: 15px; font-style: italic;}

/* ══════════════════════════════
   GALLERY SECTION
══════════════════════════════ */
#gallery {
  background: rgba(0,0,0,0.02);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15), 0 0 20px rgba(232,160,0,0.2);
  border-color: rgba(232,160,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
/* Keep overlay slightly visible on touch/mobile or generally smooth */
.gallery-item .overlay { opacity: 0.85; }
.gallery-item:hover .overlay { opacity: 1; }

.overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .overlay h3 { transform: translateY(0); }

.overlay p { 
  font-weight: 300; 
  font-size: 0.9rem; 
  font-style: italic;
  color: rgba(255,255,255,0.8); 
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .overlay p { transform: translateY(0); opacity: 1; }

.gallery-item.feature { grid-column: span 2; }
.gallery-item.feature img { height: 340px; }

/* ══════════════════════════════
   LOCATION SECTION
══════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
}

.map-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
  border-radius: 16px;
}

.map-wrap.facaded {
  background: url('images/IMG_20170111_180628-768x432.jpg') center/cover no-repeat;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-wrap.facaded::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}

.map-link-overlay {
  position: relative;
  z-index: 2;
  text-decoration: none;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  padding: 16px 24px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.map-link-overlay:hover .map-btn {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212,85,0,0.4);
}

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--glass-shadow);
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.info-row:last-of-type { border-bottom: none; }

.info-icon { 
  color: #a84600; 
  font-size: 1.2rem; 
  min-width: 24px; 
  margin-top: 4px; 
}

.info-text { font-size: 1rem; color: var(--text-main); line-height: 1.6; }
.info-label { 
  font-size: 0.75rem; 
  text-transform: uppercase; 
  letter-spacing: 0.15em; 
  color: var(--text-muted); 
  display: block; 
  margin-bottom: 4px; 
}
.info-text a { color: #a84600; text-decoration: underline; transition: color 0.2s; font-weight: 700;}
.info-text a:hover { color: var(--accent-primary); }

.directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--font-body);
  margin-top: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212,85,0,0.2);
}

.directions-btn:hover { 
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,85,0,0.4);
  opacity: 1;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #111;
  border-top: 2px solid var(--accent-primary);
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

footer p { font-size: 1.15rem; color: #ccc; margin-bottom: 8px; }
footer a { color: #ffa25f; text-decoration: none; font-weight: 600; }
footer a:hover { color: var(--accent-secondary); }

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#lightbox.open { display: flex; opacity: 1; }

#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#lightbox.open img { transform: scale(1); }

#lightbox-close {
  position: fixed;
  top: 20px; right: 25px;
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10000;
  transition: all 0.2s;
  min-width: 44px; min-height: 44px;
}

#lightbox-close:hover { color: #fff; transform: rotate(90deg); }

#lightbox-caption {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
  background: rgba(0,0,0,0.6);
  padding: 10px 24px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
  font-style: italic;
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 50%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  min-width: 48px; min-height: 48px;
}

.lb-nav:hover { color: #fff; background: rgba(0,0,0,0.8); border-color: rgba(255,255,255,0.3); transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .gallery-item.feature { grid-column: span 1; }
  .gallery-item.feature img { height: 260px; }
}

@media (max-width: 700px) {
  .section { padding: 60px 15px; }
  .map-wrap iframe { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 3vh 10px 6vh; }
  .hero-nav { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; justify-content: center; }
  .hero-nav a { padding: 10px 14px; width: auto; font-size: 0.9rem; flex: 1 1 auto; justify-content: center; }
  .info-card { padding: 25px 15px; }
  .directions-btn { padding: 14px 20px; }
  .section-heading { font-size: 1.8rem; }
}
