/* ========================================
   SEBA SEBA — Colombian Bakery & Restaurant
   Warm Artisan Heritage Aesthetic
   ======================================== */

:root {
  /* Core palette — warm bakery tones */
  --color-primary: #9e5a2a;
  --color-primary-dark: #7a3f18;
  --color-primary-light: #c4844e;
  --color-gold: #c9933a;
  --color-gold-light: #ddb76a;
  --color-gold-muted: #b8944f;
  --color-accent: #b22234;
  --color-accent-soft: #d4566350;

  /* Backgrounds */
  --color-bg: #faf5ed;
  --color-bg-warm: #f3ebe0;
  --color-bg-card: #fff9f2;
  --color-bg-dark: #231711;
  --color-bg-darker: #19100a;

  /* Text */
  --color-text: #3d2814;
  --color-text-soft: #6b5340;
  --color-text-muted: #907a65;
  --color-text-on-dark: #e8ddd0;
  --color-text-on-dark-muted: #a89480;

  /* Utility */
  --color-border: #ddd0c0;
  --color-border-light: #ece3d6;
  --color-shadow: rgba(62, 38, 18, 0.08);
  --color-shadow-lg: rgba(62, 38, 18, 0.14);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;

  /* Spacing & Sizing */
  --nav-height: 72px;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

.section {
  padding: 100px 0;
  position: relative;
}

/* Grain texture overlay — bakery patina feel */
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section > .container { position: relative; z-index: 1; }

/* ========================================
   SECTION HEADERS
   ======================================== */

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

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--color-gold-muted);
}
.section-tag::before { left: 0; }
.section-tag::after { right: 0; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 14px;
}

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

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 90, 42, 0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  border-radius: var(--radius);
}
.btn-small:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(158, 90, 42, 0.25);
}

.btn-full { width: 100%; justify-content: center; }

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(35, 23, 17, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  transition: border-color var(--transition);
}
.nav-logo-img:hover { border-color: var(--color-gold); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
  letter-spacing: 0.01em;
  border-radius: 6px;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
}
.nav-link.active {
  background: rgba(255,255,255,0.08);
}

.lang-toggle {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lang-toggle:hover {
  border-color: rgba(201, 147, 58, 0.4);
  box-shadow: 0 0 16px rgba(201, 147, 58, 0.12);
}

.lang-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gold) 100%);
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  box-shadow: 0 2px 8px rgba(158, 90, 42, 0.35);
}
.lang-toggle.es .lang-slider {
  transform: translateX(100%);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
  transition: color 0.35s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
  user-select: none;
  -webkit-user-select: none;
}
.lang-option.active {
  color: #fff;
}

/* Mobile backdrop overlay */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-backdrop.visible {
  opacity: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/hero-bg.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(25, 16, 10, 0.7) 0%,
      rgba(25, 16, 10, 0.4) 40%,
      rgba(25, 16, 10, 0.5) 70%,
      rgba(25, 16, 10, 0.85) 100%
    );
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 147, 58, 0.4);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-family: 'Titan One', var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s 0.2s ease both;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.title-seba {
  color: #fff;
  display: inline-block;
}

.title-seba-accent {
  color: var(--color-gold-light);
  display: inline-block;
  font-style: normal;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.35s ease both;
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.65s ease both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.3);
  animation: bounce 2s infinite;
}

/* ========================================
   MENU
   ======================================== */

.menu {
  background: var(--color-bg) url('/images/IMG_8023.PNG') center/cover no-repeat;
  background-attachment: fixed;
}

.menu > .container,
.locations > .container {
  background: rgba(250, 245, 237, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 4px 30px var(--color-shadow);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 0;
}

.menu-tab {
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: all var(--transition);
  background: transparent;
  border: 1px solid transparent;
}
.menu-tab:hover {
  color: var(--color-text);
  background: var(--color-bg-warm);
}
.menu-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.menu-category { display: none; }
.menu-category.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

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

.sides-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.menu-item {
  background: var(--color-bg-card);
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  position: relative;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--color-shadow);
  border-color: var(--color-border);
}

.menu-item.featured {
  border-color: var(--color-gold-light);
  background: linear-gradient(135deg, var(--color-bg-card) 0%, #fff5e6 100%);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.menu-item-header h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--color-text);
}

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

.menu-item p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.menu-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 20px;
  background: var(--color-gold);
  color: #fff;
}

.badge-heritage {
  background: var(--color-accent);
}

.badge-fresh {
  background: #4a8c5c;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery {
  background: var(--color-bg-warm);
}

.gallery-wrapper {
  position: relative;
  height: 440px;
  overflow: hidden;
}

.gallery-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 380px;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.gallery-item.visible { opacity: 1; }
.gallery-item.focused {
  box-shadow: 0 16px 50px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(35, 23, 17, 0.7);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
.gallery-btn:hover {
  background: var(--color-primary);
  transform: translateY(-50%) scale(1.08);
}
.gallery-btn.prev { left: 16px; }
.gallery-btn.next { right: 16px; }

/* ========================================
   REVIEWS
   ======================================== */

.reviews {
  background: var(--color-bg-dark);
  overflow: hidden;
}

.reviews .section-tag { color: var(--color-gold-light); }
.reviews .section-tag::before,
.reviews .section-tag::after { background: var(--color-gold-muted); }
.reviews .section-title { color: var(--color-text-on-dark); }
.reviews .section-desc { color: var(--color-text-on-dark-muted); }

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

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
  border-color: rgba(201, 147, 58, 0.2);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-on-dark);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}

.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold-muted);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-source {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--color-text-on-dark-muted);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.02em;
}

.review-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.review-card-link:hover {
  border-color: var(--color-gold);
}

.reviews-cta {
  text-align: center;
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-reviews {
  background: transparent;
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 147, 58, 0.4);
  padding: 12px 28px;
}
.btn-reviews:hover {
  background: rgba(201, 147, 58, 0.15);
  border-color: var(--color-gold);
  color: #fff;
}

/* ========================================
   LOCATIONS
   ======================================== */

.locations {
  background: var(--color-bg) url('/images/IMG_8023.PNG') center/cover no-repeat;
  background-attachment: fixed;
}

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

.location-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all var(--transition);
  text-align: center;
  padding-bottom: 28px;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--color-shadow-lg);
  border-color: var(--color-gold-light);
}

.location-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.location-card:hover .location-image img {
  transform: scale(1.05);
}

.location-label {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
}

.location-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 20px 24px 4px;
  color: var(--color-text);
}

.location-details {
  padding: 8px 24px 20px;
}

.location-address {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  margin-bottom: 8px;
  line-height: 1.5;
}

.location-phone {
  margin-bottom: 10px;
}
.location-phone a {
  font-weight: 600;
  color: var(--color-primary);
  transition: color var(--transition);
}
.location-phone a:hover { color: var(--color-primary-dark); }

.location-hours p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ========================================
   INSTAGRAM
   ======================================== */

.instagram-section {
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, #f0e4d4 100%);
  text-align: center;
  padding: 80px 0;
}

.instagram-cta { margin-top: 32px; }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  transition: all var(--transition);
  border: none;
}
.btn-instagram:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(131, 58, 180, 0.35);
}

.instagram-icon {
  width: 22px;
  height: 22px;
}

/* ========================================
   ABOUT
   ======================================== */

.about {
  background: var(--color-bg);
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 50px var(--color-shadow-lg);
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
}
.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-content .section-tag {
  padding: 0;
}
.about-content .section-tag::before,
.about-content .section-tag::after { display: none; }

.about-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--color-text-soft);
  margin-bottom: 18px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

/* ========================================
   CONTACT
   ======================================== */

.contact { background: var(--color-bg-warm); }

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

.contact-info h3,
.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--color-text);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-primary);
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}
.contact-item a {
  color: var(--color-primary);
  font-weight: 600;
}
.contact-item a:hover { color: var(--color-primary-dark); }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-text-soft);
  fill: none;
}
.social-link:last-child svg { fill: var(--color-text-soft); stroke: none; }

.social-link:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.social-link:hover svg { stroke: #fff; }
.social-link:last-child:hover svg { fill: #fff; stroke: none; }

/* Form */
.contact-form-wrapper {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border-light);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(158, 90, 42, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--color-bg-darker);
  padding: 64px 0 32px;
  color: var(--color-text-on-dark);
}

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

.footer-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 2px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-locations h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-on-dark);
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-on-dark-muted);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-gold-light); }

.footer-locations p {
  font-size: 0.88rem;
  color: var(--color-text-on-dark-muted);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--color-text-on-dark-muted);
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

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

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

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

/* --- Tablet ----------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-image img { height: 360px; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { text-align: center; display: block; }
  .about-content p { text-align: center; }
  .about-stats { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* --- Mobile ----------------------------------------------------------- */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* Fix: background-attachment: fixed is broken on iOS */
  .menu,
  .locations {
    background-attachment: scroll;
  }

  /* Navbar — always dark on mobile for legibility */
  .navbar {
    background: rgba(25, 16, 10, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 0 16px;
    gap: 12px;
  }

  .nav-logo-img {
    height: 40px;
    width: 40px;
  }

  /* Hamburger — bigger touch target */
  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    -webkit-tap-highlight-color: transparent;
  }

  /* Mobile slide-out menu with backdrop */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 280px;
    height: calc(100dvh - var(--nav-height));
    background: rgba(25, 16, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 24px 40px;
    gap: 0;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }

  .nav-backdrop { display: block; pointer-events: none; }
  .nav-backdrop.visible { pointer-events: auto; }

  .nav-link {
    padding: 16px 0;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav-link.active {
    background: none;
    color: var(--color-gold-light);
  }

  /* Lang toggle — ensure it's always accessible */
  .lang-toggle {
    margin-left: auto;
  }

  /* Sections */
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .section-desc { font-size: 0.95rem; }

  /* Hero */
  .hero { min-height: 100dvh; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-subtitle { font-size: 1rem; letter-spacing: 0.04em; margin-bottom: 14px; }
  .hero-text { font-size: 0.92rem; margin-bottom: 28px; line-height: 1.6; }
  .hero-badge { font-size: 0.65rem; padding: 7px 20px; margin-bottom: 20px; }
  .hero-buttons { gap: 12px; }
  .hero-buttons .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
    min-height: 48px;
  }
  .hero-scroll-hint { bottom: 20px; }

  /* Menu card container */
  .menu > .container,
  .locations > .container {
    padding: 28px 16px;
    border-radius: var(--radius);
    margin: 0 8px;
  }

  /* Menu tabs — horizontal scroll strip */
  .menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 8px;
    margin: 0 -16px 28px;
    padding: 0 16px 12px;
    justify-content: flex-start;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }

  .menu-tab {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 10px 20px;
    font-size: 0.84rem;
    min-height: 44px;
    white-space: nowrap;
  }

  /* Menu grid */
  .menu-grid { grid-template-columns: 1fr; gap: 12px; }
  .sides-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .menu-item { padding: 16px 18px; }
  .menu-item-header h3 { font-size: 0.98rem; }
  .menu-price { font-size: 0.92rem; }
  .menu-item p { font-size: 0.82rem; }

  /* Gallery */
  .gallery-wrapper { height: 320px; }
  .gallery-item { width: 280px; height: 220px; }
  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .gallery-btn.prev { left: 8px; }
  .gallery-btn.next { right: 8px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .review-card { padding: 22px 20px; }
  .review-text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
  .review-stars { margin-bottom: 10px; }
  .reviews-cta { gap: 10px; }
  .btn-reviews { padding: 12px 20px; font-size: 0.82rem; }

  /* Locations */
  .locations-grid { grid-template-columns: 1fr; gap: 20px; }
  .location-card { padding-bottom: 24px; }
  .location-image { height: 180px; }
  .location-card h3 { font-size: 1.15rem; padding: 16px 20px 4px; }
  .location-details { padding: 6px 20px 16px; }
  .location-address { font-size: 0.85rem; }
  .location-hours p { font-size: 0.82rem; }

  /* Instagram */
  .instagram-section { padding: 60px 0; }
  .btn-instagram { padding: 14px 28px; font-size: 0.95rem; }

  /* About */
  .about-image img { height: 300px; }
  .about-content p { font-size: 0.92rem; }
  .about-stats { gap: 28px; margin-top: 28px; padding-top: 24px; }
  .stat-number { font-size: 1.9rem; }

  /* Contact */
  .contact-form-wrapper { padding: 24px 20px; }
  .contact-info h3,
  .contact-form-wrapper h3 { font-size: 1.2rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 14px 16px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  /* Form row — stack on mobile */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 48px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-brand p { max-width: none; text-align: center; }
  .footer-links { text-align: center; }
  .footer-links a { padding: 6px 0; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .footer-locations { text-align: center; }
  .footer-bottom { padding-top: 20px; }
  .footer-bottom p { font-size: 0.78rem; }

  /* Buttons — enforce minimum touch target */
  .btn { min-height: 48px; }
  .btn-small { min-height: 44px; display: inline-flex; align-items: center; }
}

/* --- Small phones ----------------------------------------------------- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }

  .hero-title { font-size: clamp(2.4rem, 16vw, 3.5rem); }
  .hero-text { font-size: 0.88rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  .menu > .container,
  .locations > .container {
    padding: 20px 12px;
    margin: 0 4px;
    border-radius: 10px;
  }

  .sides-grid { grid-template-columns: 1fr; }
  .menu-item { padding: 14px 14px; }

  .gallery-wrapper { height: 260px; }
  .gallery-item { width: 230px; height: 175px; border-radius: 10px; }

  .about-image img { height: 240px; }
  .about-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.72rem; }

  .review-card { padding: 18px 16px; }
  .review-text { font-size: 0.86rem; }

  .contact-form-wrapper { padding: 20px 14px; }

  .location-image { height: 160px; }

  .instagram-section { padding: 48px 0; }
  .btn-instagram { padding: 12px 24px; font-size: 0.88rem; }

  .footer-grid { gap: 24px; }
}

/* --- Very small screens (iPhone SE, etc.) ------------------------------ */
@media (max-width: 375px) {
  .hero-title { font-size: 2.2rem; }
  .hero-badge { padding: 5px 14px; font-size: 0.6rem; }
  .hero-subtitle { font-size: 0.88rem; }
  .section-title { font-size: 1.5rem; }
  .menu-tab { padding: 8px 14px; font-size: 0.78rem; }
  .gallery-wrapper { height: 230px; }
  .gallery-item { width: 200px; height: 155px; }
  .gallery-btn { width: 36px; height: 36px; font-size: 1.1rem; }
  .stat { min-width: 0; }
}

/* --- Landscape phones -------------------------------------------------- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-title { font-size: 2.5rem; }
  .hero-text { display: none; }
  .hero-scroll-hint { display: none; }
}
