/* ============================================================
   GOLDEN HARVEST TABLE — Main Stylesheet
   Font: Prompt (local woff2 — Regular 400, Bold 700)
   ============================================================ */

/* ── FONTS ── */
@font-face {
  font-family: 'Prompt';
  src: url('../fonts/Prompt/Prompt-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Prompt';
  src: url('../fonts/Prompt/Prompt-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #080604;
  --bg2:         #0f0b08;
  --bg3:         #1a1410;
  --gold:        #c9a86a;
  --gold2:       #e0c080;
  --white:       #f5f0e8;
  --muted:       #8a7a68;
  --muted2:      #b5a890;
  --border:      rgba(201, 168, 106, 0.13);
  --border2:     rgba(255, 255, 255, 0.08);
  --radius:      16px;
  --radius-sm:   8px;
  --radius-pill: 999px;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: #080604;
  background: -webkit-linear-gradient(to bottom, #130d08, #080604);
  background: linear-gradient(to bottom, #130d08, #080604);
  background-attachment: fixed;
  color: var(--white);
  font-family: 'Prompt', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #080604;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #c9a86a, #7a5420);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #e0c080, #9b6b26);
}
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #c9a86a #080604;
}

/* ── FOCUS ── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1, .h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2, .h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3, .h3 { font-size: 1.35rem; }
h4, .h4 { font-size: 1.05rem; line-height: 1.5; }
h5, .h5 { font-size: 0.95rem; }
h6, .h6 { font-size: 0.85rem; }

p {
  color: var(--muted2);
  line-height: 1.8;
  margin-bottom: 0;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}
a:hover { color: var(--gold2); }

/* ── UTILITIES ── */
.section     { padding: 80px 0; }
.section-sm  { padding: 50px 0; }
.py-7        { padding: 7rem 0; }

.gray-bg,
.bg-gray {
  background: rgba(255, 255, 255, 0.015);
}
.bg-primary { background: var(--gold); }
.bg-dark    { background: var(--bg); }

.section-title          { margin-bottom: 50px; }
.section-title h2       { color: var(--gold); }
.section-title p        { color: var(--muted); margin-top: 0.75rem; }

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 999px;
  margin: 1rem 0;
}
.mx-auto { margin-left: auto; margin-right: auto; }

.text-color   { color: var(--gold); }
.text-color-2 { color: var(--gold2); }
.title-color  { color: var(--gold); }
.text-sm      { font-size: 0.8rem; }
.text-lg      { font-size: 2.6rem; }
.letter-spacing { letter-spacing: 3px; }
.lh-35        { line-height: 35px; }
.no-spacing   { letter-spacing: 0; }
.mb-30        { margin-bottom: 30px; }
.mt-90        { margin-top: 90px; }
.mb--80       { margin-bottom: -80px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Prompt', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-main,
.btn-main-2 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  color: #0a0806;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.2);
}
.btn-main:hover,
.btn-main-2:hover {
  background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 100%);
  color: #0a0806;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(201, 168, 106, 0.28);
}

.btn-solid-border {
  background: rgba(201, 168, 106, 0.05);
  color: var(--gold);
  border-color: rgba(201, 168, 106, 0.4);
}
.btn-solid-border:hover {
  background: var(--gold);
  color: #0a0806;
  border-color: var(--gold);
}

.btn-transparent {
  background: transparent;
  color: var(--white);
  border-color: var(--border2);
}
.btn-transparent:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: #0a0806;
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0806;
}

.btn-solid-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-solid-white:hover {
  background: var(--white);
  color: #0a0806;
}

.btn-round      { border-radius: var(--radius-sm); }
.btn-round-full { border-radius: var(--radius-pill); }
.btn-icon i {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 12px;
  margin-left: 4px;
}

/* ── NAVBAR ── */
.navigation {
  background: rgba(8, 6, 4, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease;
}

.navbar-brand {
  font-family: 'Prompt', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white) !important;
  letter-spacing: 1px;
  padding: 0.85rem 0;
}
.navbar-brand img { display: block; }
.navbar-brand .icofont-chef { color: var(--gold); }

#navbarmain { padding: 0; }

#navbarmain .nav-link {
  font-family: 'Prompt', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65) !important;
  padding: 1.35rem 1.1rem !important;
  transition: color 0.2s ease;
  position: relative;
}
#navbarmain .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.1rem;
  right: 1.1rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
#navbarmain .nav-link:hover { color: var(--white) !important; }
#navbarmain .nav-link:hover::after { transform: scaleX(1); }
#navbarmain .nav-item.active .nav-link {
  color: var(--gold) !important;
}
#navbarmain .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  color: var(--white);
  background: transparent;
}
.navbar-toggler .icofont-navigation-menu { color: var(--white); font-size: 1.1rem; }

/* ── BANNER / HERO ── */
.banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(6, 4, 2, 0.9) 0%, rgba(6, 4, 2, 0.65) 50%, rgba(6, 4, 2, 0.4) 100%),
    url('../imgs/bg.jpg') no-repeat center center / cover;
  min-height: 680px;
  display: flex;
  align-items: center;
}
.banner::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to top, #080604, transparent);
  z-index: 2;
  pointer-events: none;
}
.banner .container,
.banner .row,
.banner .block { position: relative; z-index: 3; }

.banner .block { padding: 120px 0 140px; }

.banner-eyebrow {
  display: inline-block;
  border: 1px solid rgba(201, 168, 106, 0.4);
  color: var(--gold2);
  background: rgba(201, 168, 106, 0.07);
  backdrop-filter: blur(8px);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.banner .block h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 760px;
}
.banner .block h1 em {
  color: var(--gold);
  font-style: normal;
  position: relative;
}
.banner .block h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.1em;
  background: rgba(201, 168, 106, 0.25);
  border-radius: 999px;
  z-index: -1;
}
.banner .block p {
  color: rgba(245, 240, 232, 0.7);
  max-width: 520px;
  font-size: 1.02rem;
}

.btn-container { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.5rem; }

/* ── FEATURES BAR ── */
.features { padding: 0; }
.feature-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(10px);
}
.feature-item {
  flex: 1;
  padding: 2.5rem 2rem;
  background: transparent;
  border-right: 1px solid var(--border);
  transition: background 0.25s ease;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255, 255, 255, 0.02); }
.feature-item .feature-icon i {
  font-size: 2rem;
  color: var(--gold);
}
.feature-item h4 {
  color: var(--white);
  margin: 0.75rem 0 0.5rem;
  font-size: 1rem;
}
.feature-item > span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.feature-item p { font-size: 0.88rem; color: var(--muted); }

.w-hours { list-style: none; }
.w-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted2);
}
.w-hours li:last-child { border-bottom: none; }
.w-hours li span { color: var(--white); font-weight: 700; }

/* ── ABOUT ── */
.about-img img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.about-content h2    { color: var(--white); }
.about-content .divider { background: linear-gradient(90deg, var(--gold), transparent); }

/* ── CASINO TEASER ── */
.casino-teaser { background: var(--bg2); }
.casino-teaser img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.casino-teaser h2    { color: var(--white); }
.casino-teaser .divider { background: linear-gradient(90deg, var(--gold), transparent); }

/* ── CTA / COUNTER ── */
.cta-section {
  position: relative;
  z-index: 10;
  margin-bottom: -80px;
}

.cta {
  background:
    radial-gradient(circle at top right, rgba(201, 168, 106, 0.07), transparent 25%),
    linear-gradient(135deg, #1a1208 0%, #0f0b06 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.counter-stat {
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  border-right: 1px solid var(--border);
}
.counter-stat:last-child { border-right: none; }

.counter-stat i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
}
.counter-stat span {
  font-family: 'Prompt', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.counter-stat p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── SERVICES ── */
.service { padding-top: 180px; }
.service .service-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.service .service-item:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}
.service .icon {
  float: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.service i    { color: var(--gold); font-size: 1.5rem; }
.service h4   { color: var(--white); font-size: 1rem; margin: 0; }
.service .content { clear: both; }
.service .content p { font-size: 0.88rem; color: var(--muted); }

/* ── WHY US ── */
.why-us .why-content h2 { color: var(--white); }
.why-us .list-unstyled li {
  color: var(--muted2);
  padding: 0.4rem 0;
  font-size: 0.9rem;
}
.why-us img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* ── TESTIMONIALS ── */
.testimonial-block.style-2 {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0 8px 1.5rem;
  transition: border-color 0.25s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
.testimonial-block.style-2:hover { border-color: rgba(201, 168, 106, 0.4); }
.testimonial-block .client-info h4 {
  color: var(--white) !important;
  font-size: 0.95rem;
}
.testimonial-block .client-info span {
  color: var(--gold) !important;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.testimonial-block .client-info p {
  background: transparent;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.5rem;
}
.testimonial-block i { color: var(--gold); opacity: 0.15; }

/* ── APPOINTMENT / CONTACT FORM ── */
.appoinment-wrap h2 { color: var(--white); }
.appoinment-wrap p  { color: var(--muted2); }

.appoinment-form label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
  display: block;
}

.contact-form-wrap .form-group .form-control,
.contact-form-wrap .form-group-2 textarea {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  height: 52px;
  font-family: 'Prompt', sans-serif;
}
.contact-form-wrap .form-group-2 textarea { height: auto; }
.contact-form-wrap .form-group .form-control:focus,
.contact-form-wrap .form-group-2 textarea:focus {
  border-color: rgba(201, 168, 106, 0.5);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.1);
  outline: none;
}

.contact-block {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.contact-block:hover {
  border-color: rgba(201, 168, 106, 0.4);
  transform: translateY(-3px);
}
.contact-block i { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }

/* ── FORM CONTROLS ── */
.form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: none;
  font-family: 'Prompt', sans-serif;
}
.form-control:focus {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(201, 168, 106, 0.5);
  box-shadow: 0 0 0 4px rgba(201, 168, 106, 0.1);
  color: var(--white);
  outline: none;
}
.form-control::placeholder { color: var(--muted); }

select.form-control option {
  background: var(--bg3);
  color: var(--white);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="password"] {
  height: 50px;
  font-family: 'Prompt', sans-serif;
}

/* ── PAGE TITLE ── */
.page-title {
  padding: 120px 0 70px;
  position: relative;
  background:
    linear-gradient(115deg, rgba(6,4,2,0.86) 0%, rgba(6,4,2,0.6) 100%),
    url('../imgs/bg.jpg') no-repeat center center / cover;
}
.page-title::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.page-title .block { position: relative; z-index: 2; }
.page-title .block h1 { color: var(--white); }
.page-title .block p  { color: rgba(245, 240, 232, 0.6); }
.page-title .breadcumb-nav {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 2;
}

/* ── DROPDOWN ── */
.dropdown .dropdown-menu {
  background: #13100d;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  min-width: 220px;
  padding: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.dropdown .dropdown-item {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.88rem;
  background: transparent;
  font-family: 'Prompt', sans-serif;
}
.dropdown .dropdown-item:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

/* ── FOOTER ── */
.footer {
  background: linear-gradient(180deg, #0f0b07 0%, #080604 100%);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 0;
}

.footer-brand img { display: block; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: 260px;
  line-height: 1.7;
}

.widget h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.widget .divider {
  background: linear-gradient(90deg, var(--gold), transparent);
  height: 1px;
  margin-bottom: 1.5rem;
}
.widget .footer-menu { list-style: none; }
.widget .footer-menu a {
  color: var(--muted);
  font-size: 0.88rem;
  display: inline-block;
  padding: 0.3rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.widget .footer-menu a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact-block { margin-bottom: 1.25rem; }
.footer-contact-block .icon span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-contact-block i { color: var(--gold); font-size: 1rem; }
.footer-contact-block h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--muted2);
  margin-top: 0.35rem;
}

.footer-btm {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  margin-top: 3rem;
}
.copyright { font-size: 0.8rem; color: var(--muted); }
.copyright .text-color { color: var(--gold); }

.footer-socials { list-style: none; display: flex; gap: 0.5rem; }
.footer-socials li a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.footer-socials li a:hover {
  background: var(--gold);
  color: #0a0806;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── BACK TO TOP ── */
.backtop {
  position: fixed;
  right: 28px;
  bottom: 38px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0806;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 10px 28px rgba(201, 168, 106, 0.25);
}
.backtop i { font-size: 1rem; color: #0a0806; }
.backtop.reveal { opacity: 1; }
.backtop:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 11, 8, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 860px;
  width: 90%;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}
.cookie-banner a { color: var(--gold); font-weight: 700; }
.cookie-banner a:hover { color: var(--gold2); }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-buttons button {
  font-family: 'Prompt', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}
#accept-cookies {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0806;
  border: 1px solid transparent;
}
#accept-cookies:hover {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
}
#decline-cookies {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
}
#decline-cookies:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

/* ── LEGAL PAGES ── */
.legal-page h1 {
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.legal-page h2 {
  font-size: 1.2rem;
  color: var(--white);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-page p,
.legal-page ul {
  color: var(--muted2);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-page ul { padding-left: 1.5rem; }
.legal-page ul li { margin-bottom: 0.4rem; }
.legal-page strong { color: var(--white); font-weight: 700; }
.legal-page a { color: var(--gold); }
.legal-page a:hover { color: var(--gold2); }
.legal-page .footer-note {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
}
.legal-page .footer-note a { color: var(--gold); }

/* ── GOOGLE MAP ── */
.google-map #map {
  width: 100%;
  height: 460px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ── OVERLAYS ── */
.overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.overly-2 { position: relative; }
.overly-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

/* ── SUBSCRIBE ── */
.subscribe { position: relative; }
.subscribe .form-control {
  border-radius: var(--radius-pill);
  height: 56px;
  padding-left: 1.5rem;
  padding-right: 170px;
}
.subscribe .btn { position: absolute; right: 6px; top: 6px; }

/* ── SIDEBAR ── */
.sidebar-widget {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget:last-child { border-bottom: none; }
.sidebar-widget h5 {
  font-family: 'Prompt', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget.tags a {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--muted2);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  padding: 0.3rem 1rem;
  display: inline-block;
  margin: 0 4px 8px 0;
  transition: all 0.2s ease;
}
.sidebar-widget.tags a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0806;
}
.sidebar-widget.schedule-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-widget.schedule-widget ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.9rem;
}
.sidebar-widget.schedule-widget ul li:last-child { border-bottom: none; }

/* ── BLOG ── */
.blog-item-content h2 { font-size: 2rem; }
.quote {
  font-size: 1.1rem;
  color: var(--gold2);
  padding: 1.5rem 2rem;
  font-style: italic;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2rem 0;
}

/* ── SLICK ── */
.slick-slide:focus, .slick-slide a { outline: none; }
.slick-dots li button:before { color: rgba(255, 255, 255, 0.15); }
.slick-dots li.slick-active button:before { color: var(--gold); }

/* ── THANK YOU PAGE ── */
.thankyou-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.thankyou-section h1 { color: var(--gold); }
.thankyou-section p  { color: var(--muted2); font-size: 1.05rem; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .navigation { position: relative; }
  .banner { min-height: 540px; }
  #navbarmain {
    background: rgba(12, 9, 6, 0.97);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
  }
  #navbarmain .nav-link {
    padding: 0.7rem 1rem !important;
  }
  #navbarmain .nav-link::after { display: none; }
}

@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.6rem; }
  .banner { min-height: 460px; }
  .banner .block { padding: 80px 0 100px; }
  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .section { padding: 60px 0; }
  .cta-section { margin-bottom: 0; }
  .counter-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .counter-stat:last-child { border-bottom: none; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px 16px 0 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
  }
  .btn-container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  h1, .h1 { font-size: 1.75rem; }
  h2, .h2 { font-size: 1.4rem; }
  .btn { font-size: 0.74rem; padding: 0.7rem 1.5rem; }
  .text-lg { font-size: 1.8rem; }
  .banner .block h1 { font-size: 2rem; }
}
