/* ==========================================================
   VastByte Volt Bistro UI Style
   'geometric_structured' | Responsive | Flexbox Only
   Brand: #30343F (primary), #799351 (secondary), #FFCC80 (accent)
   Fonts: Montserrat (display, angular), Roboto (body)
   ========================================================== */

/* === Reset and Normalize === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #FAFAFA;
  color: #30343F;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #30343F;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #FFCC80;
  outline-offset: 2px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}


/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #30343F;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h2 {
  font-size: 2rem;
  text-transform: capitalize;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #30343F;
  margin-bottom: 8px;
  line-height: 1.56;
}
strong {
  font-weight: 700;
  color: #799351;
}

/* --- Typography scaling for desktop --- */
@media (min-width: 600px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.7rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.8rem; }
  h3 { font-size: 2rem; }
}

/* === Layout Containers === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(48,52,63,0.06);
  position: relative;
}

@media (min-width: 768px) {
  .content-wrapper {
    gap: 36px;
  }
  .section {
    padding: 50px 36px;
  }
}

/* === Flexbox Grids & Content === */
.card-container, .feature-grid, .popular-dishes-list, .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 8px;
}
.card, .feature-item, .benefit-item {
  margin-bottom: 20px;
  background: #FAFAFA;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(48,52,63,0.04);
  padding: 28px 20px 25px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 330px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2px solid #e8e8e8;
  transition: border-color .2s, box-shadow .3s, transform .2s;
}
.card:hover, .feature-item:hover, .benefit-item:hover {
  border-color: #FFCC80;
  box-shadow: 0 4px 20px rgba(121, 147, 81, 0.12);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-container, .feature-grid, .benefits {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
  }
}

.feature-item, .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === Testimonial Cards === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(48,52,63,0.09);
  border: 2px solid #FFCC80;
  margin-bottom: 20px;
  max-width: 540px;
  transition: box-shadow .25s, border-color .2s;
}
.testimonial-card p {
  color: #202230;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  font-size: 1rem;
  color: #30343F;
  align-items: center;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
@media (min-width: 800px) {
  .testimonial-slider {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .testimonial-card {
    min-width: 320px;
    flex: 1 1 0;
  }
}

/* === Buttons / CTAs === */
.cta-btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #799351;
  color: #FAFAFA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.85em 2.2em;
  border: none;
  border-radius: 48px;
  letter-spacing: 0.03em;
  transition: background .22s, box-shadow .23s, transform .18s;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(121,147,81,0.09);
  outline: none;
}
.cta-btn:hover, .cookie-btn:hover, .cta-btn:focus, .cookie-btn:focus {
  background: #30343F;
  color: #FFCC80;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 16px rgba(255,204,128,0.18);
}
.cta-btn:active {
  background: #607a41;
  color: #fff;
}

/* --- Cookie Settings / Choices Buttons --- */
.cookie-banner .cookie-btn {
  margin-right: 16px;
  margin-top: 10px;
  min-width: 120px;
}
.cookie-btn.reject {
  background: #30343F;
  color: #FFCC80;
}
.cookie-btn.reject:hover {
  background: #799351;
  color: #fff;
}
.cookie-btn.settings {
  background: #FFCC80;
  color: #30343F;
}
.cookie-btn.settings:hover {
  background: #799351;
  color: #fff;
}

/* === Header & Navigation === */
header {
  width: 100%;
  background: #30343F;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 998;
  box-shadow: 0 1px 16px rgba(121,147,81,0.14);
  display: flex;
  align-items: center;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.logo img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  margin-left: 36px;
}
.main-nav a {
  color: #FAFAFA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 9px 12px;
  border-radius: 8px;
  position: relative;
  transition: background .17s, color .19s, box-shadow .16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #799351;
  color: #FFCC80;
}
.cta-btn {
  margin-left: 24px;
}
/* --- Hide main navigation and CTA on mobile --- */
@media (max-width: 900px) {
  .main-nav,
  .cta-btn {
    display: none !important;
  }
}

/* === Mobile Menu === */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #799351;
  color: #fff;
  font-size: 2.15rem;
  padding: 0 12px;
  border-radius: 8px;
  height: 44px;
  width: 48px;
  margin-left: auto;
  border: none;
  z-index: 1202;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFCC80;
  color: #30343F;
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 90vw;
  max-width: 375px;
  background: #30343F;
  box-shadow: 2px 0 18px rgba(48,52,63,0.25);
  z-index: 1201;
  transform: translateX(-110%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  padding: 0 0 36px 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 22px 0 auto;
  font-size: 2.1rem;
  color: #FFCC80;
  background: none;
  border: none;
  transition: color .18s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #799351;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 36px;
  padding-left: 30px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 15px 0 15px 0;
  margin: 0;
  border-bottom: 1px solid #4b4f5c;
  transition: background .1s, color .16s;
  border-radius: 0 22px 22px 0;
  min-width: 160px;
  width: 80%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #799351;
  color: #FFCC80;
}

/* --- Overlay for mobile menu --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(48,52,63,0.54);
  z-index: 1190;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  opacity: 1;
  pointer-events: all;
}

/* === Footer === */
footer {
  padding: 38px 0 18px 0;
  background: #30343F;
  color: #FAFAFA;
  border-top: 5px solid #FFCC80;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.footer-nav a {
  color: #FFCC80;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #799351;
}
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .98rem;
}
.footer-info img {
  height: 48px;
  width: auto;
}
.footer-info p {
  color: #FAFAFA;
  margin-bottom: 1px;
}
@media (max-width: 680px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
  }
}


/* === Service, Features, Benefits, USP lists === */
.service-list, .unique-selling-points, .popular-dishes-list, .event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-list li, .unique-selling-points li, .event-list li, .popular-dishes-list li {
  flex: 1 1 225px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(48,52,63,0.08);
  padding: 24px 18px 18px 18px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 322px;
  border-left: 5px solid #799351;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.service-list li:hover, .unique-selling-points li:hover, .event-list li:hover, .popular-dishes-list li:hover {
  border-color: #FFCC80;
  box-shadow: 0 6px 18px rgba(255,204,128,0.13);
  transform: scale(1.019);
}

@media (max-width: 900px) {
  .service-list,
  .unique-selling-points,
  .event-list,
  .popular-dishes-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- Category Tabs --- */
.category-tabs {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin: 12px 0 24px 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  color: #799351;
  font-weight: bold;
}
.category-tabs span {
  padding: 0 18px 6px 0;
  border-bottom: 3px solid #30343F;
  border-radius: 0 0 12px 12px;
  margin-right: 8px;
  cursor: pointer;
  transition: color .18s, border-color .2s;
}
.category-tabs span:hover {
  color: #FFCC80;
  border-color: #799351;
}

/* --- Dietary Icons --- */
.dietary-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.dietary-icons span {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #799351;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  gap: 8px;
}
.dietary-icons img {
  height: 24px;
  width: auto;
}

/* === Other Content blocks (Wine tasting, etc) === */
.wine-tasting-teaser, .themed-dinners-info, .ambience-highlights, .interior-experience, .service-overview, .corporate-catering-details, .wedding-catering-details, .custom-menu-info {
  background: #FAFAFA;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(121,147,81,0.07);
  padding: 22px 20px 16px 20px;
  margin-bottom: 20px;
}

/* === Spacing Utility Classes === */
.mb-8 { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mt-24 { margin-top:24px; }
.mt-40 { margin-top:40px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* === Microinteractions & Transitions === */
.section, .card, .feature-item, .testimonial-card, .benefit-item, .cta-btn, .service-list li, .unique-selling-points li, .event-list li, .popular-dishes-list li, .mobile-menu, .mobile-nav a, .cookie-btn {
  transition-property: background, color, border, box-shadow, transform;
  transition-duration: .18s, .18s, .19s, .22s, .16s;
  transition-timing-function: cubic-bezier(.61,.01,.31,.99);
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #30343F;
  color: #FAFAFA;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2100;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -4px 24px rgba(48,52,63,0.16);
  border-top: 4px solid #FFCC80;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  animation: slide-up .55s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes slide-up {
  from { transform: translateY(92px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0.5em;
  color: #FFCC80;
}
.cookie-banner .cookie-btn {
  margin-top: 0;
}

/* --- Cookie Settings Modal --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2200;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(48,52,63,0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fade-in .26s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  min-width: 340px;
  max-width: 95vw;
  padding: 36px 26px;
  color: #30343F;
  box-shadow: 0 4px 32px rgba(48,52,63,0.17);
  position: relative;
  z-index: 2220;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  animation: pop-in .28s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes pop-in {
  from { transform: scale(.89); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  flex: 1;
  color: #30343F;
}
.cookie-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #799351;
  margin-right: 7px;
}
.cookie-modal input[type="checkbox"]:disabled {
  accent-color: #FFCC80;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin: 0;
}

/* === Responsive Misc === */
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 26px 5px;
  }
}

/* === Geometric Structured Decorative Touches === */
h1, h2, h3, h4 {
  /* Slightly angular, geometric sans-serif family */
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-stretch: expanded;
}
.card:before, .feature-item:before, .unique-selling-points li:before, .service-list li:before, .benefit-item:before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  background: #FFCC80;
  border-radius: 2px 12px 2px 2px;
  margin-bottom: 10px;
  margin-left: -4px;
}
.popular-dishes-list li:before {
  content: none;
}
@media (max-width: 600px) {
  .card:before, .feature-item:before, .unique-selling-points li:before, .service-list li:before, .benefit-item:before {
    width: 30px;
  }
}

/* === Utility and Focus === */
:focus-visible {
  outline: 2px solid #FFCC80;
  outline-offset: 3px;
}
::-webkit-input-placeholder { color: #b9bfc7; }
::-moz-placeholder { color: #b9bfc7; }
:-ms-input-placeholder { color: #b9bfc7; }
::placeholder { color: #b9bfc7; }

/* --- Hide content overlapping --- */
.card, .feature-item, .service-list li, .benefit-item, .unique-selling-points li, .testimonial-card {
  z-index: 2;
}

/* --- Misc Minor --- */
strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}


/* === Custom Scrollbar === */
body, .mobile-menu {
  scrollbar-color: #799351 #FAFAFA;
  scrollbar-width: thin;
}
body::-webkit-scrollbar, .mobile-menu::-webkit-scrollbar {
  width: 9px;
  background: #FAFAFA;
}
body::-webkit-scrollbar-thumb, .mobile-menu::-webkit-scrollbar-thumb {
  background: #799351;
  border-radius: 9px;
}

/* === Z-index for floating containers === */
header { z-index: 998; }
.mobile-menu { z-index: 1201; }
.mobile-menu-toggle { z-index: 1202; }
.mobile-menu-overlay { z-index: 1190; }
.cookie-banner { z-index: 2100; }
.cookie-modal-overlay { z-index: 2200; }
.cookie-modal { z-index: 2220; }

/* --- Hide visually (accessibility utility) --- */
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

/* === END VastByte Volt Bistro === */
