/* ============================================================
   NESTAVON — Premium Restaurant CSS
   Fonts: Playfair Display (serif) + Inter (sans)
   Add to <head>:
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
   ============================================================ */

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

:root {
  --bg:       #360c79;
  --bg2:      #360c79;
  --bg3:      #360c79;
  --gold:     #C9A96E;
  --gold2:    #E8C88A;
  --white:    #FFFFFF;
  --muted:    #888888;
  --muted2:   #AAAAAA;
  --border:   #222222;
  --border2:  #2A2A2A;
  --radius:   12px;
  --radius-sm: 6px;
  --radius-pill: 50px;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

h1, .h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
h2, .h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3, .h3 { font-size: 1.4rem; }
h4, .h4 { font-size: 1.1rem; line-height: 1.5; }
h5, .h5 { font-size: 1rem; }
h6, .h6 { font-size: 0.9rem; }

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); }
a:focus { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── UTILITY ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.gray-bg { background: var(--bg2); }

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

.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  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.8rem; }
.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; }
.py-7 { padding: 7rem 0; }
.bg-gray { background: var(--bg3); }
.bg-primary { background: var(--gold); }
.bg-dark { background: var(--bg); }

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

.btn-main,
.btn-main-2 {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}
.btn-main:hover,
.btn-main-2:hover {
  background: var(--gold2);
  border-color: var(--gold2);
  color: #0A0A0A;
}

.btn-solid-border {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-solid-border:hover {
  background: var(--gold);
  color: #0A0A0A;
}

.btn-transparent {
  background: transparent;
  color: var(--white);
  border-color: var(--border2);
}
.btn-transparent:hover {
  background: var(--bg3);
  color: var(--white);
}

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

.btn-solid-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-solid-white:hover {
  background: var(--white);
  color: #0A0A0A;
}

.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; }
.btn:active { transform: scale(0.98); }

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

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white) !important;
  letter-spacing: 2px;
  padding: 1rem 0;
}
.navbar-brand .icofont-chef { color: var(--gold); }

#navbarmain { padding: 0; }

#navbarmain .nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted) !important;
  padding: 1.4rem 1.2rem !important;
  transition: color 0.2s ease;
  position: relative;
}
#navbarmain .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 1px;
  background: var(--gold);
  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; }

.navbar-toggler {
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.7rem;
  color: var(--white);
}

/* ── BANNER / HERO ── */
.banner {
  position: relative;
  overflow: hidden;
  background: url('../img/bg.jpg') no-repeat center center / cover;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;
}
.banner::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 2;
}
.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 var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.banner .block h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.banner .block h1 em {
  color: var(--gold);
  font-style: italic;
}
.banner .block p { color: rgba(255,255,255,0.65); max-width: 480px; }

/* ── FEATURES BAR ── */
.features { padding: 0; }
.feature-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  flex: 1;
  padding: 2.5rem 2rem;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}
.feature-item:last-child { border-right: none; }
.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 p { font-size: 0.88rem; color: var(--muted); }

.w-hours { list-style: none; }
.w-hours li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted2);
}
.w-hours li:last-child { border-bottom: none; }
.w-hours li span { color: var(--white); font-weight: 500; }

/* ── ABOUT ── */
.about-img img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.about-content h2 { color: var(--white); }
.about-content .divider { background: var(--gold); }

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

.cta {
  background: linear-gradient(135deg, var(--bg3) 0%, #0f0f0f 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.cta::before { display: none; }

.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: 4rem;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  transform: none;
}
.counter-stat span {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
}
.counter-stat p {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── SERVICES ── */
.service { padding-top: 180px; }
.service .service-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.service .service-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.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 { padding-left: 0; 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);
}

/* ── TESTIMONIALS ── */
.testimonial-block.style-2 {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0 6px 1.5rem;
  transition: border-color 0.25s ease;
}
.testimonial-block.style-2:hover { border-color: var(--gold); }
.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; }
.testimonial-block .client-info p {
  background: transparent;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
}
.testimonial-block i { color: var(--gold); opacity: 0.2; }

/* ── CONTACT ── */
.contact-form-wrap .form-group .form-control,
.contact-form-wrap .form-group-2 textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  height: 52px;
  font-family: 'Inter', 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: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
  outline: none;
}

.contact-block {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s ease;
}
.contact-block:hover { border-color: var(--gold); }
.contact-block i { font-size: 2rem; color: var(--gold); margin-bottom: 0.75rem; }

/* ── FORM CONTROLS ── */
.form-control {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: none;
}
.form-control:focus {
  background: var(--bg2);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
  color: var(--white);
  outline: none;
}
.form-control::placeholder { color: var(--muted); }

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

/* ── PAGE TITLE ── */
.page-title {
  padding: 120px 0 70px;
  position: relative;
  background: url('../img/bg.jpg') no-repeat center center / cover;
}
.page-title::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 1;
}
.page-title .block { position: relative; z-index: 2; }
.page-title .block h1 { color: var(--white); }
.page-title .block p { color: rgba(255,255,255,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: var(--bg2);
  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 16px 40px rgba(0,0,0,0.5);
}
.dropdown .dropdown-item {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted2);
  font-size: 0.88rem;
  background: transparent;
}
.dropdown .dropdown-item:hover { color: var(--gold); background: var(--bg3); }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: 60px;
  padding-bottom: 0;
}

.widget h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.widget .divider { background: var(--gold); height: 1px; margin-bottom: 1.5rem; }
.widget .footer-menu { list-style: none; }
.widget .footer-menu a {
  color: var(--muted);
  font-size: 0.9rem;
  display: inline-block;
  padding: 0.25rem 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.widget .footer-menu a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-block {
  margin-bottom: 1.2rem;
}
.footer-contact-block .icon span { color: var(--muted); font-size: 0.75rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.footer-contact-block i { color: var(--gold); font-size: 1rem; }
.footer-contact-block h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; 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.82rem; color: var(--muted); }
.copyright .text-color { color: var(--gold); }

.footer-socials li a {
  width: 40px;
  height: 40px;
  background: var(--bg2);
  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: #0A0A0A;
  border-color: var(--gold);
}

/* ── BACK TO TOP ── */
.backtop {
  position: fixed;
  right: 30px;
  bottom: 40px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #0A0A0A;
  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;
}
.backtop i { font-size: 1rem; color: #0A0A0A; }
.backtop.reveal { opacity: 1; }
.backtop:hover { transform: translateY(-3px); background: var(--gold2); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  display: flex;
  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.6);
}
.cookie-banner p { font-size: 0.85rem; color: var(--muted); flex: 1; line-height: 1.6; }
.cookie-banner a { color: var(--gold); font-weight: 500; }
.cookie-banner a:hover { color: var(--gold2); }
.cookie-buttons { display: flex; gap: 0.75rem; }
.cookie-buttons button {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  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: var(--gold);
  color: #0A0A0A;
  border: 1px solid var(--gold);
}
#accept-cookies:hover { background: var(--gold2); border-color: var(--gold2); }
#decline-cookies {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border2);
}
#decline-cookies:hover { border-color: var(--muted); color: var(--white); }

/* ── 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: 160px;
}
.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: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  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 h5::before { display: none; }
.sidebar-widget.tags a {
  background: var(--bg3);
  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: #0A0A0A; }

.sidebar-widget.schedule-widget {
  background: var(--bg2);
  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.15rem;
  color: var(--gold);
  padding: 1.5rem 2rem;
  font-style: italic;
  border-left: 3px solid var(--gold);
  background: var(--bg3);
  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: var(--border2); }
.slick-dots li.slick-active button:before { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .banner { min-height: 520px; }
  .navigation { position: relative; }
  #navbarmain { background: var(--bg2); border-top: 1px solid var(--border); padding: 1rem 0; }
  #navbarmain .nav-link { padding: 0.65rem 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: 440px; }
  .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; }
}

@media (max-width: 480px) {
  h1, .h1 { font-size: 1.75rem; }
  h2, .h2 { font-size: 1.4rem; }
  .btn { font-size: 0.75rem; padding: 0.65rem 1.5rem; }
  .text-lg { font-size: 1.8rem; }
  .cookie-banner { bottom: 0; border-radius: var(--radius) var(--radius) 0 0; }
}