/* ============================================
   LATINOS BISTRO - Main Stylesheet
   Theme: Botanical Elegance
   Palette: Cream, Forest Green, Charcoal, Gold
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --cream: #F5F0E8;
  --cream-light: #FAF8F4;
  --green-deep: #2D5016;
  --green-mid: #3A6B22;
  --green-leaf: #4A7C30;
  --green-light: #6B9E4F;
  --green-pale: #E8F0E2;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-dark: #A68845;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --overlay: rgba(26, 26, 26, 0.6);

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-y: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loaded {
  overflow-y: auto;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

::selection {
  background: var(--green-deep);
  color: var(--white);
}

/* ---------- Utility ---------- */
.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;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--charcoal);
  position: relative;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  text-align: center;
  color: var(--charcoal-light);
  max-width: 600px;
  margin: 0 auto 60px;
  font-style: italic;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

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

.section-divider .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
}

.navbar.scrolled .nav-logo-text {
  color: var(--charcoal);
}

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

.nav-links a:not(.btn) {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-smooth);
}

.navbar.scrolled .nav-links a:not(.btn) {
  color: var(--charcoal);
}

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

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

.nav-links a:not(.btn):hover {
  color: var(--gold-light);
}

.navbar.scrolled .nav-links a:not(.btn):hover {
  color: var(--gold-dark);
}

.nav-menu-btn {
  padding: 10px 24px !important;
  font-size: 0.8rem !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.navbar.scrolled .hamburger span {
  background: var(--charcoal);
}

.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 Sidebar ---------- */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  z-index: 1060;
  transition: right var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.sidebar-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sidebar-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--charcoal);
  transition: all var(--transition-fast);
}

.sidebar-close:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

.sidebar-nav {
  padding: 20px 0;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover {
  background: var(--green-pale);
  color: var(--green-deep);
  border-left-color: var(--green-deep);
}

.sidebar-nav a svg {
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.sidebar-nav a:hover svg {
  opacity: 1;
}

.sidebar-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-footer .sidebar-hours {
  font-size: 0.82rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.sidebar-footer .sidebar-hours strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.sidebar-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition-fast);
}

.sidebar-cta:hover {
  background: var(--gold-dark);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  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;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.45) 0%,
    rgba(26, 26, 26, 0.3) 40%,
    rgba(26, 26, 26, 0.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-logo-wrapper {
  margin-bottom: 32px;
}

.hero-logo-wrapper svg {
  max-width: 480px;
  width: 100%;
  height: auto;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 162, 101, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

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

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

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ---------- About Section ---------- */
.about {
  background: var(--cream);
}

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

.about-images {
  position: relative;
  overflow: hidden;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

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

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: 0px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 4px solid var(--cream);
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.about-text .accent-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--charcoal-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream-light);
  border-radius: var(--radius);
  transition: transform var(--transition-fast);
}

.about-highlight-item:hover {
  transform: translateY(-2px);
}

.about-highlight-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
}

.about-highlight-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ---------- Gallery Slideshow ---------- */
.gallery {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.gallery .section-title {
  color: var(--white);
}

.gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.gallery .section-divider .line {
  background: var(--gold);
}

.gallery .section-divider .dot {
  background: var(--gold);
}

.gallery-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.gallery-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
  min-width: 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
}

.gallery-slide-caption h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-slide-caption p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.gallery-dots {
  display: flex;
  gap: 8px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ---------- Menu CTA Section ---------- */
.menu-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, #1a3a0a 100%);
  text-align: center;
  overflow: hidden;
}

.menu-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
  animation: slowRotate 30s linear infinite;
}

.menu-cta-content {
  position: relative;
  z-index: 1;
}

.menu-cta .section-title {
  color: var(--white);
  font-size: 2.8rem;
}

.menu-cta .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.menu-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 48px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition-smooth);
  border: 2px solid var(--gold);
}

.menu-cta-btn:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 162, 101, 0.3);
}

.menu-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-fast);
}

.menu-cta-btn:hover svg {
  transform: translateX(4px);
}

/* ---------- Hours & Info ---------- */
.info {
  background: var(--cream-light);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-smooth);
}

.info-card:hover {
  transform: translateY(-4px);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.info-card .card-divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* Hours table */
.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.hours-row .time {
  font-size: 0.95rem;
  color: var(--charcoal-light);
}

.hours-row .time.closed {
  color: #c0392b;
  font-weight: 600;
}

.hours-row.today {
  background: var(--green-pale);
  margin: 0 -16px;
  padding: 12px 16px;
  border-radius: var(--radius);
}

.hours-row.today .day::after {
  content: ' (Today)';
  font-size: 0.75rem;
  color: var(--green-deep);
  font-weight: 400;
}

/* Contact info */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-deep);
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal-light);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-detail p,
.contact-detail a {
  font-size: 1rem;
  color: var(--charcoal);
}

.contact-detail a:hover {
  color: var(--green-deep);
}

/* ---------- Map Section ---------- */
.map-section {
  background: var(--cream);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

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

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

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth), background var(--transition-fast);
  border: none;
  box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--green-mid);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(8px);
  }
  60% {
    transform: translateX(-50%) translateY(4px);
  }
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

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

.loader-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 6px;
  color: var(--charcoal);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

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

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .about-img-accent {
    bottom: -20px;
    right: 0;
    width: 150px;
    height: 150px;
  }

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

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

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

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

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

  .hero {
    min-height: auto;
  }

  .hero-logo-wrapper svg {
    max-width: 320px;
  }

  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 260px;
    justify-content: center;
  }

  .gallery-slide img {
    height: 350px;
  }

  .info-card {
    padding: 32px;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero-logo-wrapper svg {
    max-width: 260px;
  }

  .gallery-slide img {
    height: 280px;
  }

  .gallery-slide-caption {
    padding: 30px 20px 16px;
  }

  .gallery-slide-caption h3 {
    font-size: 1.1rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 24px;
  }

  .menu-cta {
    padding: 80px 0;
  }

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

  .hero-scroll-indicator {
    display: none;
  }
}
