/* ============================================
   Ristorante Bella Vista — Stylesheet
   Kleuren: Italiaans rood, goud, crème, donkerbruin
   ============================================ */

:root {
  --red:        #C41E3A;
  --red-dark:   #9B1528;
  --red-light:  #E8384F;
  --gold:       #C9A84C;
  --gold-light: #E8C97E;
  --gold-dark:  #9B7D35;
  --cream:      #FDF6E3;
  --cream-dark: #F5EDD0;
  --brown:      #2C1A0E;
  --brown-mid:  #5C3D2E;
  --white:      #FFFFFF;
  --text:       #3D2B1F;
  --text-light: #7A5C4A;
  --border:     #E8D5C0;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(44, 26, 14, 0.08);
  --shadow-md:  0 8px 32px rgba(44, 26, 14, 0.14);
  --shadow-lg:  0 20px 60px rgba(44, 26, 14, 0.20);

  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.25; }
h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--brown); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--brown); }

p { color: var(--text-light); }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

/* ---- Section Labels ---- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

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

#navbar.scrolled {
  background: rgba(44, 26, 14, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  font-weight: 700;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 201, 126, 0.7);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

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

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--brown);
}

/* Real photo as background — extended for parallax */
.hero-bg {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  will-change: transform;
}

/* Atmospheric colour grading on top of photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(196, 30, 58, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 10%, rgba(201, 168, 76, 0.10) 0%, transparent 50%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 5, 2, 0.50) 0%,
    rgba(20, 8, 2, 0.35) 45%,
    rgba(15, 5, 2, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
}

.hero-scroll { z-index: 2; }

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-content h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-content h1 em {
  color: var(--gold-light);
  display: block;
  font-style: italic;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  margin: 0.5rem auto 0;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 6rem 0;
  background: var(--white);
}

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

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { margin-bottom: 1rem; font-size: 1.05rem; }

.about-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.highlight { text-align: center; }
.highlight-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.highlight-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.about-image { position: relative; }
.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
  display: block;
}
.image-frame:hover img { transform: scale(1.04); }

.image-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--gold);
  color: var(--brown);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.image-badge span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.image-badge strong {
  font-family: var(--font-serif);
  font-size: 1rem;
}

/* ============================================
   PHOTO STRIP
   ============================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
  overflow: hidden;
}

.photo-strip-item {
  overflow: hidden;
  position: relative;
}
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  display: block;
}
.photo-strip-item:hover img { transform: scale(1.08); }

@media (max-width: 640px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }
}

/* ============================================
   MENU
   ============================================ */
.menu-section {
  padding: 6rem 0;
  background: var(--cream);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 0.65rem 1.4rem;
  border: none;
  background: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--red); }
.tab-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.menu-card-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.menu-card:hover .menu-card-img img { transform: scale(1.07); }

.menu-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.menu-card-header h3 {
  font-size: 1.05rem;
  flex: 1;
}

.price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.menu-card-body p { font-size: 0.9rem; margin-bottom: 0.75rem; }

.menu-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

/* Wine banner */
.wine-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
}
.wine-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.wine-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,8,2,0.75) 0%, rgba(20,8,2,0.25) 100%);
  display: flex;
  align-items: center;
  padding: 2rem 3rem;
}
.wine-banner-overlay p {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  max-width: 400px;
}

/* Wine list */
.wine-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.wine-category h3 {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
.wine-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--border);
  gap: 1rem;
}
.wine-item strong { display: block; color: var(--brown); }
.wine-item span { font-size: 0.85rem; color: var(--text-light); }
.wine-item .price { flex-shrink: 0; }

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
  padding: 6rem 0;
  background: var(--cream);
}

/* Summary bar */
.reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.summary-score { text-align: center; }
.score-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.score-stars {
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin: 0.25rem 0;
}
.score-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

.summary-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.bar-row > span:first-child { min-width: 2.5rem; text-align: right; font-weight: 600; color: var(--text); }
.bar-row > span:last-child { min-width: 2.5rem; }
.bar {
  flex: 1;
  height: 8px;
  background: var(--cream-dark);
  border-radius: 50px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 50px;
}

.summary-platforms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.platform-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 110px;
}
.platform-score {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.platform-name { font-size: 0.75rem; font-weight: 700; color: var(--brown); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }
.platform-count { font-size: 0.7rem; color: var(--text-light); }

/* Reviews grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.review-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(44,26,14,0.03), rgba(201,168,76,0.05));
  border-color: rgba(201,168,76,0.35);
  position: relative;
  overflow: hidden;
}
.review-card.featured::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  pointer-events: none;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.reviewer-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; color: var(--brown); font-size: 0.95rem; }
.reviewer-info span { font-size: 0.8rem; color: var(--text-light); }
.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-top: 0.1rem;
}

.review-platform {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  flex-shrink: 0;
  align-self: flex-start;
}
.review-platform.google    { background: #e8f0fe; color: #1a73e8; }
.review-platform.tripadvisor { background: #e8f5e9; color: #00aa6c; }
.review-platform.iens      { background: #fff3e0; color: #e65100; }

.review-card blockquote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}
.review-card.featured blockquote { font-size: 0.95rem; }

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.review-dish {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
}
.review-date { font-size: 0.75rem; color: var(--text-light); }

.reviews-cta {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.reviews-cta p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card.featured { grid-column: span 2; }
  .reviews-summary { grid-template-columns: auto 1fr; }
  .summary-platforms { flex-direction: row; grid-column: 1 / -1; justify-content: center; }
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.featured { grid-column: span 1; }
  .reviews-summary { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
  .summary-score { display: flex; align-items: center; gap: 1rem; }
  .score-number { font-size: 3rem; }
  .summary-platforms { flex-wrap: wrap; justify-content: center; }
}

/* ============================================
   OPENINGSTIJDEN
   ============================================ */
.hours-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--brown) 0%, #4A1C0D 100%);
  position: relative;
  overflow: hidden;
}

.hours-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath fill-rule='evenodd' d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2l-2 2-34 34v-2zm4 4L80 0h2L44 40h-2zm4 0L80 4h2L48 40h-2zm4 0L80 8h2L52 40h-2zm4 0L80 12h2L56 40h-2zm4 0L80 16h2L60 40h-2zm4 0L80 20h2L64 40h-2zm4 0L80 24h2L68 40h-2zm4 0L80 28h2L72 40h-2zm4 0L80 32h2L76 40h-2zm4 0L80 36h2L80 38 78 40h-2zm4 0h-2l2-2v2z'/%3E%3C/g%3E%3C/svg%3E");
}

.hours-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.hours-content .section-label { color: var(--gold-light); opacity: 0.8; }
.hours-content h2 { color: var(--white); margin-bottom: 1rem; }
.hours-content > p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }

.hours-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
}
.hours-row.closed {
  opacity: 0.45;
}
.hours-row.highlight-row {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.25);
}

.day {
  color: var(--white);
  font-weight: 600;
  min-width: 160px;
  font-size: 0.95rem;
}
.time { color: var(--gold-light); font-weight: 600; }
.time-slots {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}
.time-slots span {
  color: var(--gold-light);
  font-size: 0.88rem;
}

.hours-notice {
  margin-top: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(196, 30, 58, 0.2);
  border: 1px solid rgba(196, 30, 58, 0.3);
  border-radius: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
}

.hours-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hours-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  backdrop-filter: blur(10px);
}
.hours-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.hours-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.15rem; }
.hours-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ============================================
   CONTACT — Luxe redesign
   ============================================ */
.contact-section {
  padding: 0 0 6rem;
  background: linear-gradient(170deg, #1a0a04 0%, #2a0d0d 50%, #1e0808 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.contact-top-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  margin-bottom: 4rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.contact-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}

.contact-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.contact-ornament {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.6em;
  opacity: 0.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  position: relative;
}

/* Contact info kolom */
.contact-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.contact-item:last-of-type { border-bottom: none; }

.contact-icon-wrap {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201,168,76,0.07);
}
.contact-icon-wrap svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.contact-item strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-family: var(--font-sans);
}
.contact-item p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.7; }
.contact-item em { color: rgba(255,255,255,0.35); font-style: italic; }
.contact-item a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.contact-item a:hover { color: var(--gold-light); }

/* Social buttons */
.contact-social-wrap { margin-top: 0.5rem; }
.contact-social-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.contact-social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.contact-social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  transition: var(--transition);
  background: rgba(255,255,255,0.03);
}
.contact-social-btn svg { width: 14px; height: 14px; color: var(--gold); opacity: 0.8; }
.contact-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}

/* Form kolom */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.contact-form-wrap h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.contact-form-wrap h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: rgba(255,255,255,0.09);
}

.form-group select option { background: #1e0808; color: rgba(255,255,255,0.85); }

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a84c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form .btn-primary { margin-top: 0.5rem; font-size: 1rem; padding: 1rem 2rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(196,30,58,0.08));
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.25);
}
.success-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}
.form-success h3 { color: var(--brown); margin-bottom: 0.75rem; }
.form-success p { color: var(--text-light); }

/* ============================================
   FOOTER
   ============================================ */
/* Copyright balk */
.site-copyright {
  background: #110505;
  text-align: center;
  padding: 1.25rem 1rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.site-copyright p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-sans);
}
.site-copyright em {
  font-family: var(--font-serif);
  color: rgba(201,168,76,0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .about-image { order: -1; }
  .image-badge { bottom: 0.5rem; right: 0.5rem; }

}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 8, 2, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; padding: 0.75rem 1.5rem; }

  .hamburger { display: flex; z-index: 1001; position: relative; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

  .menu-tabs { gap: 0.3rem; padding: 0.4rem; }
  .tab-btn { padding: 0.5rem 0.9rem; font-size: 0.8rem; }

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

  .hours-row { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .time-slots { align-items: flex-start; }
  .day { min-width: auto; }


  .about-highlights { gap: 1rem; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   GSAP ANIMATION ADDITIONS
   ============================================ */

/* 5 — Reserveren knop pulse */
@keyframes bv-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.55); }
  65%       { box-shadow: 0 0 0 10px rgba(196, 30, 58, 0); }
}
.nav-cta {
  animation: bv-pulse 2.6s ease-in-out infinite !important;
}

/* 7 — Photo strip: flex + drag/swipe */
.photo-strip {
  display: flex !important;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  -webkit-user-select: none;
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip.is-dragging { cursor: grabbing !important; }
.photo-strip-item {
  flex: 1 0 25%;
  min-width: 260px;
  scroll-snap-align: start;
}

/* 6 — Reviews auto-scroll carousel */
.rev-carousel-outer {
  overflow: hidden;
  margin-bottom: 3rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.rev-carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
  padding: 0.5rem 0 1.5rem;
}
.rev-carousel-track .review-card {
  width: 360px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 640px) {
  .rev-carousel-track .review-card {
    width: calc(100vw - 5rem);
  }
}

/* ============================================
   HERO ENTRANCE ANIMATIONS
   ============================================ */

/* Char spans produced by JS split */
.bv-char {
  display: inline-block;
}

/* ── Golden shimmer on "Bella Vista" ── */
/* position + overflow are set inline by JS after entrance so chars
   don't get clipped during the y-animation */
.hero-content h1 em.bv-shimmer-active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent  0%,
    rgba(255, 248, 195, 0.7) 45%,
    transparent 100%
  );
  transform: translateX(-200%) skewX(-8deg);
  pointer-events: none;
  animation: bv-shimmer 4s ease-in-out infinite;
  animation-delay: 0.15s;
}

@keyframes bv-shimmer {
  0%   { transform: translateX(-200%) skewX(-8deg); }
  38%  { transform: translateX(280%)  skewX(-8deg); }
  100% { transform: translateX(280%)  skewX(-8deg); }
}

/* ── Scroll arrow — softer, deeper bounce ── */
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0);    opacity: 0.42; }
  45%       { transform: rotate(45deg) translateY(10px); opacity: 0.9;  }
}
.scroll-arrow {
  animation: bounce 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
