/* =========================================================
   PAGE LUXE ALIGNMENT
   Basis: style.css
   Doel: alleen paginaspecifieke layout/styling, volledig in lijn met de definitieve basis
   ========================================================= */:root {
  --lux-bg: #000000;
  --lux-panel: #0b0b0b;
  --lux-panel-2: #111111;
  --lux-text: #f0f0f0;
  --lux-text-soft: #e2e2e2;
  --lux-text-muted: #bfa57a;
  --lux-gold: #f3d28a;
  --lux-gold-dark: #c6a46c;
  --lux-border: rgba(198, 164, 108, 0.42);
  --lux-border-soft: rgba(198, 164, 108, 0.28);
  --lux-border-strong: rgba(243, 210, 138, 0.78);
  --lux-shadow: 0 24px 54px rgba(0, 0, 0, 0.58);
  --lux-shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.42);
  --lux-radius: 22px;
}body {
  background: var(--lux-bg);
  color: var(--lux-text);
}a {
  transition: all 0.3s ease;
}a:hover {
  color: var(--lux-gold);
  text-decoration: none;
}.topSingleBkg .inner-desc,
.topPageCustomH .inner-desc {
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.65);
}.page-card,
.lux-card {
  background: var(--lux-panel);
  border: 2px solid var(--lux-border);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow), inset 0 0 20px rgba(198, 164, 108, 0.05);
}.page-card:hover,
.lux-card:hover {
  border-color: var(--lux-border-strong);
}/* =========================================================
   CONTACT PAGINA
   ========================================================= */.contact-luxe-page {
  padding: 70px 0 40px;
}.contact-feature-card,
.contact-mini-card,
.faq-accordion-wrapper,
.faq-item {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(8, 8, 8, 0.98));
  border: 2px solid var(--lux-border);
  border-radius: 30px;
  box-shadow: var(--lux-shadow-soft);
}.contact-feature-card {
  height: 100%;
  padding: 34px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}.contact-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243, 210, 138, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}.contact-feature-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}.contact-feature-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lux-gold-dark), var(--lux-gold));
  display: flex;
  align-items: center;
  justify-content: center;
}.contact-feature-icon i {
  color: #111111;
  font-size: 30px;
}.contact-feature-label {
  color: var(--lux-gold);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}.contact-feature-head h2 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}.contact-feature-content p,
.contact-feature-list li,
.contact-mini-card p,
.contact-faq-intro p,
.faq-answer p {
  color: #ece4d8;
  font-size: 17px;
  line-height: 1.9;
}.contact-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}.contact-feature-list li {
  margin-bottom: 6px;
}.check-fa {
  color: var(--lux-gold);
  margin-right: 8px;
}.contact-feature-card a,
.contact-mini-card a,
.faq-answer a {
  color: var(--lux-gold);
}.contact-feature-card a:hover,
.contact-mini-card a:hover,
.faq-answer a:hover {
  color: #ffffff;
}.contact-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}.contact-mini-link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(198, 164, 108, 0.38);
  background: #111111;
  text-decoration: none;
}.contact-mini-cards-row {
  margin-top: 14px;
  justify-content: center;
}.contact-mini-card {
  height: 100%;
  padding: 26px 24px;
  text-align: center;
}.contact-mini-card h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 14px;
}.contact-faq-section {
  padding: 40px 0 90px;
}.contact-faq-intro {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}.faq-accordion-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
}.faq-section-title {
  color: var(--lux-gold);
  font-size: 34px;
  margin: 0 0 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}.faq-item {
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.96), rgba(8, 8, 8, 0.98));
}.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}.faq-toggle {
  color: var(--lux-gold);
  margin-left: 18px;
  font-size: 18px;
}.faq-answer {
  display: none;
  padding: 0 24px 24px;
}.faq-item.active .faq-answer {
  display: block;
}.faq-item.active .faq-toggle i:before {
  content: "\f068";
}.faq-answer p {
  margin: 0 0 14px;
}.faq-answer p:last-child {
  margin-bottom: 0;
}@media (max-width: 991px) {.contact-luxe-page {
    padding-top: 50px;
  }.contact-feature-card,
.contact-mini-card,
.faq-accordion-wrapper {
    border-radius: 24px;
  }.faq-accordion-wrapper {
    padding: 24px;
  }.contact-feature-head h2 {
    font-size: 26px;
  }
}@media (max-width: 767px) {.contact-feature-card,
.contact-mini-card,
.faq-accordion-wrapper,
.faq-item {
    border-radius: 20px;
  }.contact-feature-card {
    padding: 24px 20px;
  }.contact-feature-head {
    gap: 14px;
    align-items: flex-start;
  }.contact-feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
  }.contact-feature-icon i {
    font-size: 24px;
  }.contact-feature-head h2 {
    font-size: 22px;
  }.contact-feature-content p,
.contact-feature-list li,
.contact-mini-card p,
.contact-faq-intro p,
.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
  }.contact-mini-card h3 {
    font-size: 21px;
  }.faq-section-title {
    font-size: 28px;
  }.faq-question {
    font-size: 18px;
    padding: 18px 18px;
  }.faq-answer {
    padding: 0 18px 18px;
  }
}/* =========================================================
   PERFECT LUXE HARMONISATIE
   ========================================================= */

.contact-luxe-page {
  padding: 0 0 72px;
}.contact-feature-card,
.contact-mini-card,
.faq-accordion-wrapper,
.faq-item {
  border-radius: 24px;
}.contact-feature-card {
  padding: 32px 28px;
}.contact-mini-card {
  padding: 28px 24px;
}.contact-faq-section {
  padding: 32px 0 72px;
}.faq-accordion-wrapper {
  padding: 32px 28px;
}.contact-feature-head h2,
.faq-section-title {
  line-height: 1.2;
}.contact-feature-head h2 {
  font-size: 32px;
}.faq-section-title {
  font-size: 32px;
  margin-bottom: 24px;
}.contact-feature-content p,
.contact-feature-list li,
.contact-mini-card p,
.contact-faq-intro p,
.faq-answer p {
  font-size: 16px;
  line-height: 1.85;
}@media (max-width: 767px) {.contact-feature-card,
.contact-mini-card,
.faq-accordion-wrapper,
.faq-item {
    border-radius: 20px;
  }.contact-feature-card,
.contact-mini-card,
.faq-accordion-wrapper {
    padding: 24px 20px;
  }.contact-feature-head h2,
.faq-section-title {
    font-size: 28px;
  }
}/* =========================================================
   HTML ALIGNMENT PATCHES
   ========================================================= */

.contact-hero-cards {
  padding-bottom: 8px;
}.contact-mini-link {
  color: var(--lux-gold);
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}.contact-mini-link:hover,
.contact-mini-link:focus-visible {
  background: rgba(198, 164, 108, 0.12);
  border-color: rgba(243, 210, 138, 0.62);
  color: #ffffff;
  transform: translateY(-1px);
}.faq-question {
  transition: color 0.2s ease, background 0.2s ease;
}.faq-question:hover,
.faq-question:focus-visible {
  color: var(--lux-gold);
}.faq-item.active {
  border-color: var(--lux-border-strong);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}
/* =========================================================
   MENU BLOKKEN - DONKER/GOUD HARMONISATIE
   Bewust behouden voor bestaande HTML, maar nu in lijn met style.css
   ========================================================= */

.our-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.our-menu > li {
  background: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
  border: 1px solid rgba(243, 210, 138, 0.22);
  border-radius: 18px;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.menu-title-section {
  position: relative;
  background: linear-gradient(135deg, #0b0b0b 0%, #1a1a1a 55%, #101010 100%);
  border-bottom: 1px solid rgba(243, 210, 138, 0.16);
}

.menu-title-section::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(120, 90, 20, 0) 0%, #c79b2c 20%, #f3d28a 50%, #c79b2c 80%, rgba(120, 90, 20, 0) 100%);
  box-shadow: 0 0 10px rgba(243, 210, 138, 0.18);
}

.menu-title-section a {
  display: block;
  padding: 20px 24px;
  color: #fff4d6;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.menu-title-section a:hover {
  color: var(--lux-gold);
  background: rgba(243, 210, 138, 0.05);
  text-shadow: 0 0 12px rgba(243, 210, 138, 0.20);
}

.menu-section {
  background: linear-gradient(180deg, #101010 0%, #0b0b0b 100%);
  padding: 24px;
}

.food-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.food-menu > li {
  background: linear-gradient(180deg, #181818 0%, #121212 100%);
  border: 1px solid rgba(243, 210, 138, 0.10);
  border-radius: 14px;
  padding: 18px 18px 14px;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 8px 20px rgba(0, 0, 0, 0.22);
}

.food-menu li h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(243, 210, 138, 0.14);
}

.menu-title {
  color: #fff8ee;
  font-size: 18px;
  font-weight: 700;
}

.menu-prijs {
  color: var(--lux-gold);
  font-weight: 700;
  white-space: nowrap;
}

.menu-text {
  color: rgba(255, 245, 225, 0.92);
  line-height: 1.75;
  font-size: 15px;
}

.check-fa {
  color: var(--lux-gold-dark);
  margin-right: 6px;
  text-shadow: 0 0 6px rgba(243, 210, 138, 0.18);
}

.menu-section a {
  color: var(--lux-gold);
  font-weight: 600;
  text-decoration: none;
}

.menu-section a:hover {
  color: #fff0c2;
  text-decoration: underline;
}
