/* ============================================
   BOSSA NOVA CAFE — PREMIUM DESIGN SYSTEM
   Cinematic Noir × Warm Gold
   ============================================ */

:root {
  /* ── Color Palette ── */
  --gold:         #cca876;
  --gold-light:   #e8d5b7;
  --gold-dark:    #a8854f;
  --bg-color:     #0d0d0d;
  --bg-secondary: #121212;
  --bg-elevated:  #1a1a1a;
  --text-main:    #f0ece4;
  --text-light:   #9a958d;
  --text-muted:   #5a564f;
  --primary-dark: #cca876;
  --border-color: rgba(204, 168, 118, 0.12);
  --border-hover: rgba(204, 168, 118, 0.35);

  /* ── Typography ── */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Spacing ── */
  --section-pad:  clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5%);
  --border-radius: 16px;

  /* ── Shadows ── */
  --shadow-sm:  0 4px 20px rgba(0,0,0,0.3);
  --shadow-md:  0 12px 40px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(204,168,118,0.06);

  /* ── Transitions ── */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition:    all 0.4s var(--ease-out-expo);
}

/* ── Reset & Base ───────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: clip;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
}

/* Clean background — no grain */

/* ── Typography ─────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  object-fit: cover;
  display: block;
}

::selection {
  background: var(--gold);
  color: var(--bg-color);
}

/* ── Typography Utilities ───────────────────────────────────────── */

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, var(--text-main) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

/* ── Buttons ────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.25rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo),
              box-shadow 0.35s var(--ease-out-expo),
              background-color 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
}

.btn:hover::before { width: 350px; height: 350px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0a;
  font-weight: 600;
}

.btn-primary:hover {
  box-shadow: 0 10px 35px rgba(204,168,118,0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 10px 35px rgba(204,168,118,0.08);
}

/* ── Header & Navigation ───────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 5%;
  transition: padding 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo),
              background 0.5s ease;
}

.header.scrolled {
  padding: 0.6rem 5%;
  background: rgba(10, 10, 10, 0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6), 0 1px 0 var(--border-color);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.logo img {
  height: 64px;
  width: auto;
  border-radius: 0;
  transition: opacity 0.3s ease;
}

.logo:hover img { opacity: 0.8; }

.main-nav .nav-list {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  position: relative;
  transition: var(--transition);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: var(--text-main);
  left: 0;
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after  { bottom: -7px; }

.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* ── Sections ───────────────────────────────────────────────────── */

section {
  padding: var(--section-pad);
  max-width: 1600px;
  margin: 0 auto;
}

section:last-of-type {
  margin-bottom: 4rem;
}

/* ── Hero Section ───────────────────────────────────────────────── */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 75vh;
  gap: 3rem;
  padding-top: 2rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
              url('bossa_hero_bg.jpg') center/cover no-repeat;
  border-radius: 24px;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Subtle animated shimmer on hero */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%,
    rgba(204,168,118,0.04) 0%,
    transparent 60%);
  animation: heroShimmer 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroShimmer {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(5%, 3%); }
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 460px;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: clamp(320px, 40vw, 480px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

/* ── Split Section ──────────────────────────────────────────────── */

.split-section {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.split-section.reversed {
  flex-direction: row-reverse;
}

.split-image { flex: 1; }

.split-image img {
  width: 100%;
  height: clamp(280px, 35vw, 440px);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.7s var(--ease-out-expo),
              box-shadow 0.7s var(--ease-out-expo),
              border-color 0.7s ease;
}

.split-image:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: var(--border-hover);
}

.split-content { flex: 1; }

.split-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.split-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.split-text {
  color: var(--text-light);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.image-banner {
  background-color: var(--bg-secondary);
  padding: 5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* ── Cards & Grid ───────────────────────────────────────────────── */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  padding: 2rem;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out-expo),
              box-shadow 0.45s var(--ease-out-expo),
              border-color 0.45s ease;
}

/* Gradient shimmer on card hover */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(204,168,118,0) 0%,
    rgba(204,168,118,0.03) 50%,
    rgba(204,168,118,0) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  border-color: var(--border-hover);
}

.card:hover::before { opacity: 1; }

.card-img {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  transition: transform 0.5s var(--ease-out-expo);
}

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

.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.card-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Footer ─────────────────────────────────────────────────────── */

.footer {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, #080808 100%);
  color: var(--text-main);
  padding: 5rem 5% 2rem;
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  position: relative;
}

/* Top gold accent line */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.footer-col p, .footer-col li {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col a {
  color: var(--text-light);
  transition: color 0.3s ease, padding-left 0.3s var(--ease-out-expo);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

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

/* ── Mobile Responsiveness ──────────────────────────────────────── */

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.25rem 2rem;
    min-height: auto;
    margin-top: 0.75rem;
    border-radius: 16px;
    gap: 2rem;
  }

  .hero-content { width: 100%; }

  .hero-title { font-size: clamp(2rem, 7vw, 2.75rem); }
  .hero-subtitle {
    margin: 0 auto 1.5rem;
    font-size: 1rem;
    max-width: 100%;
  }

  .button-group {
    justify-content: center;
    width: 100%;
  }

  .split-section, .split-section.reversed {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .split-content .btn { margin-left: auto; margin-right: auto; }

  .split-image { width: 100%; }
  .split-image img { height: clamp(220px, 50vw, 320px); }

  .image-banner {
    padding: 2.5rem 1.25rem;
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    width: auto;
  }

  .grid-3 { grid-template-columns: 1fr; gap: 1.25rem; }

  .inner-page { padding-top: 5rem; }

  .page-hero {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
    min-height: 32vh;
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.75rem max(1.25rem, env(safe-area-inset-right)) 0.75rem max(1.25rem, env(safe-area-inset-left));
  }

  .header-container {
    position: relative;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    padding: calc(5rem + env(safe-area-inset-top)) 1.5rem calc(2rem + env(safe-area-inset-bottom));
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: none;
    clip-path: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    max-width: 320px;
    margin: 0 auto;
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    display: block;
    text-align: center;
    border-radius: 8px;
  }

  .nav-link:active {
    background: rgba(204, 168, 118, 0.1);
  }

  section {
    padding: clamp(2.5rem, 8vw, 3.5rem) max(1.25rem, env(safe-area-inset-right)) clamp(2.5rem, 8vw, 3.5rem) max(1.25rem, env(safe-area-inset-left));
  }

  .hero { margin-left: 0; margin-right: 0; border-radius: 0; }

  .card {
    padding: 1.5rem;
  }

  .card-img { height: 200px; }

  .image-banner {
    padding: 2rem 1.25rem;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }

  .btn {
    min-height: 48px;
    padding: 0.85rem 1.5rem;
    width: 100%;
    max-width: 320px;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .button-group .btn { max-width: 100%; width: 100%; }

  .section-title { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .section-subtitle { margin-bottom: 2rem; font-size: 1rem; }

  .split-title { font-size: clamp(1.75rem, 5vw, 2.25rem); }

  .footer {
    padding: 2.5rem max(1.25rem, env(safe-area-inset-right)) calc(1.5rem + env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-section { padding: 1rem max(1.25rem, env(safe-area-inset-right)) 2rem max(1.25rem, env(safe-area-inset-left)); }

  .contact-form-panel { padding: 2rem 1.25rem; }

  .contact-image-overlay { padding: 1.5rem; }

  .contact-heading { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  .contact-title { font-size: 1.75rem; }

  .contact-input {
    font-size: 16px;
    min-height: 48px;
  }

  .contact-btn { min-height: 52px; }

  .content-page { padding: 0 max(1.25rem, env(safe-area-inset-right)) 3rem max(1.25rem, env(safe-area-inset-left)); }

  .faq-item summary { font-size: 1rem; padding-right: 0.5rem; }

  /* Tailwind / editorial pages */
  .editorial-hero {
    height: auto !important;
    min-height: min(72vh, 520px) !important;
    padding: 5.5rem 1.25rem 2rem !important;
    align-items: flex-end !important;
  }

  .editorial-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem) !important;
    line-height: 0.95 !important;
  }

  main[class*="pt-"] {
    padding-top: 5.5rem !important;
  }

  main section[class*="px-20"],
  main section[class*="px-32"] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .logo img { height: 48px; }

  main h1[class*="text-["] {
    font-size: clamp(2rem, 11vw, 3.25rem) !important;
    line-height: 1 !important;
  }

  .hero-image img { height: min(280px, 55vw); }

  .split-image img { height: min(240px, 50vw); }

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

  .map-container { height: 160px; }

  .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}

/* ============================================
   ANIMATION SYSTEM
   ============================================ */

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

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

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

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-2px); }
}

body > *:not(.header):not(#stripePaymentModal):not(#stripePaymentModalOverlay):not(#errorToast) { animation: pageFadeIn 0.6s ease forwards; }

.logo img, .logo h2 { animation: fadeDown 0.6s ease 0.1s both; }
.logo:hover img, .logo:hover h2 { animation: logoFloat 3s ease infinite; }

.nav-list li:nth-child(1) { animation: fadeDown 0.5s ease 0.10s both; }
.nav-list li:nth-child(2) { animation: fadeDown 0.5s ease 0.15s both; }
.nav-list li:nth-child(3) { animation: fadeDown 0.5s ease 0.20s both; }
.nav-list li:nth-child(4) { animation: fadeDown 0.5s ease 0.25s both; }
.nav-list li:nth-child(5) { animation: fadeDown 0.5s ease 0.30s both; }
.nav-list li:nth-child(6) { animation: fadeDown 0.5s ease 0.35s both; }
.nav-list li:nth-child(7) { animation: fadeDown 0.5s ease 0.40s both; }

/* ── Scroll Reveal ──────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-expo),
              transform 0.8s var(--ease-out-expo);
}

.reveal.from-left  { transform: translateX(-35px); }
.reveal.from-right { transform: translateX(35px); }
.reveal.scale-in   { transform: scale(0.95); }
.reveal.visible    { opacity: 1; transform: none; }

.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ── Custom Scrollbar ───────────────────────────────────────────── */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ── Utility: Image loading fade (enhancement only) ─────────────── */

img.img-fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}

img.img-fade.loaded {
  opacity: 1;
}

/* ── Utilities & Layout ─────────────────────────────────────────── */
.button-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.mt-3 { margin-top: 3rem; }

/* ── Map ────────────────────────────────────────────────────────── */
.map-container {
  margin-top: 1.5rem;
  height: 180px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.map-iframe { border: 0; width: 100%; height: 100%; }

/* ── Social Links ───────────────────────────────────────────────── */
.social-links { display: flex; gap: 15px; margin-top: 10px; }
.social-link { opacity: 0.7; transition: opacity 0.3s ease; display: inline-block; }
.social-link:hover { opacity: 1; }
.social-link img { width: 24px; height: 24px; filter: invert(1); }

/* ── Menu Categories (From injected style) ──────────────────────── */
.menu-page-cat {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}
.menu-page-cat-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}
.menu-item-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  align-items: center;
}
.menu-item-name { font-weight: 600; font-family: var(--font-heading); font-size: 1.25rem; }
.menu-item-desc { color: var(--text-light); font-size: 0.95rem; margin-top: 0.25rem; }
.menu-item-price { font-weight: 600; color: var(--gold); font-size: 1.25rem; }
.content-wrapper { max-width: 1100px; margin: 0 auto; }

.page-hero {
  background: linear-gradient(rgba(10,10,10,0.75), rgba(10,10,10,0.55)),
              url('bossa_hero_bg.jpg') center/cover no-repeat;
  min-height: 38vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 1.5rem 5% 0;
  border-radius: var(--border-radius);
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

.page-hero p {
  color: var(--text-light);
  margin-top: 0.75rem;
  font-size: 1.05rem;
}

.inner-page {
  padding-top: 6rem;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5% 4rem;
}

.content-page h2 {
  font-size: 1.35rem;
  color: var(--gold-light);
  margin: 2rem 0 0.75rem;
}

.content-page p,
.content-page li {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-main);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item[open] summary { color: var(--gold-light); }

.faq-item p {
  margin-top: 0.75rem;
  padding-left: 0.25rem;
}

.content-page a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-page a:hover {
  color: var(--gold);
}

span.split-tag.text-center { display: block; }


/* ── Misc Component Utilities ───────────────────────────────────── */
.logo-text {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.hero-card {
  background: rgba(255,255,255,0.9);
  padding: 2rem;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
}
.hero-card .hero-title { color: var(--bg-color); font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero-card .hero-subtitle { color: var(--text-muted); font-size: 1.1rem; }


/* ── Contact Section ────────────────────────────────────────────── */
.contact-section { padding: 2rem 5%; max-width: 1600px; margin: 0 auto; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--bg-secondary);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.contact-image-panel { position: relative; min-height: 400px; }
.contact-image-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.contact-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.contact-form-panel { padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.contact-input-wrapper { margin-bottom: 1.5rem; }
.contact-input {
    width: 100%; 
    padding: 1rem 1.25rem; 
    background: rgba(255,255,255,0.03); 
    border: 1px solid rgba(255,255,255,0.1); 
    color: white; 
    border-radius: 12px; 
    font-family: var(--font-body); 
    transition: all 0.3s;
}
.contact-input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.05); }

.contact-title { font-size: 2.5rem; color: white; margin-bottom: 0.5rem; font-family: var(--font-heading); text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.contact-subtitle { color: rgba(255,255,255,0.9); font-size: 1.1rem; text-shadow: 1px 1px 2px rgba(0,0,0,0.5); }
.contact-tag { color: var(--gold); font-size: 0.875rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.contact-heading { font-size: 3rem; margin-top: 1rem; margin-bottom: 1.5rem; line-height: 1.1; font-family: var(--font-heading); }
.contact-desc { color: var(--text-light); font-size: 1.125rem; }
.contact-grid-small { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.contact-label { display: block; font-size: 0.875rem; color: var(--text-light); margin-bottom: 0.5rem; }
.contact-textarea { resize: vertical; }
.contact-btn {
    background-color: var(--gold); color: #000; padding: 1.25rem; border: none; border-radius: 12px; 
    font-family: var(--font-heading); font-weight: 600; font-size: 1rem; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; 
    width: 100%; box-shadow: 0 4px 15px rgba(204,168,118,0.1);
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(204,168,118,0.2); }
.contact-info-grid {
    margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem;
}
.contact-info-label { color: var(--text-light); font-size: 0.875rem; margin-bottom: 0.25rem; font-weight: 500; }
.contact-info-text { font-weight: 400; line-height: 1.6; }
.contact-info-link { font-weight: 400; text-decoration: underline; text-underline-offset: 4px; color: white; transition: color 0.3s; }
.contact-info-link:hover { color: var(--gold); }
.mb-4 { margin-bottom: 3rem; }

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-image-panel { min-height: 280px; }
    .contact-form-panel { padding: 3rem 2rem; }
    .contact-image-overlay { padding: 2rem; }
    .contact-heading { font-size: 2.25rem; }
}

/* ── Menu page tabs (menu.html) ─────────────────────────────────── */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.menu-tab {
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  transition: var(--transition);
  position: relative;
}

.menu-tab:hover {
  color: var(--gold-light);
}

.menu-tab.active {
  color: var(--gold);
}

.menu-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold);
}

@media (max-width: 480px) {
  .menu-tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .menu-tab {
    width: 100%;
    padding: 0.75rem;
    text-align: center;
  }

  .menu-tab.active::after {
    bottom: 0;
    width: 30%;
  }
}

.content-wrapper-centered { padding: 4rem 1rem; text-align: center; }

