/* ================================================================
   Cyberic Surge Kulinarik Premium CSS
   Luxury Premium: Gold Accents, Deep Blue, Refined Typography, Flexbox
   Only Flexbox for Layouts – No Grid/Columns! Mobile-first Responsive
   Brand: #234B5F (primary), #F7AA1C (gold/secondary), #FFFFFF (accent)
   Fonts: Montserrat (display), Roboto (body)
================================================================== */

/* Reset & Normalize */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  display: block;
}
:focus {
  outline: none;
}

/* Font Imports (use fallback for self-host scenario) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

:root {
  --brand-primary: #234B5F;
  --brand-secondary: #F7AA1C;
  --brand-accent: #FFFFFF;
  --brand-bg: #FAFAFA;
  --text-main: #222B33;
  --text-secondary: #516070;
  --gold: #F7AA1C;
  --nav-link: #FFFFFF;
  --shadow-main: 0 4px 24px rgba(35,75,95,0.08);
  --card-bg: #FFFFFF;
  --border-radius: 18px;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Helvetica, Arial, sans-serif;
}
html, body {
  background: var(--brand-bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}

/* --- Container and Global Spacing --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 8px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
main > section:not(:last-child) {
  border-bottom: 1px solid #e3e6ea;
}

/* --- Typography --- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--brand-primary);
  margin-bottom: 8px;
  line-height: 1.17;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.25px;
  margin-bottom: 4px;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 0px;
}
.hero .subheadline, .subheadline {
  font-size: 1.18rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 20px;
}
p, li, span, .text-section {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-main);
}
.text-section p,
.text-section ul,
.text-section ol {
  margin-bottom: 10px;
}
.text-section ul,
.text-section ol {
  padding-left: 20px;
}
.text-section li {
  margin-bottom: 6px;
  list-style-type: disc;
  color: var(--text-secondary);
}
.text-section ol > li {
  list-style-type: decimal;
}
.text-section a {
  color: var(--brand-primary);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.text-section a:hover {
  color: var(--gold);
}

@media (max-width: 768px) {
  h1, .hero h1 {font-size: 2rem;}
  h2 {font-size: 1.4rem;}
}

/* --- Header & Navigation --- */
header {
  background: var(--brand-primary);
  padding: 0 0;
  min-height: 68px;
  box-shadow: 0 2px 12px rgba(35,75,95,0.06);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .logo {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 12px 0 8px;
  z-index: 12;
}
header .logo img {
  height: 45px;
  width: auto;
  transition: filter 0.22s;
}
.main-menu {
  display: flex;
  gap: 0 18px;
  align-items: center;
  flex: 1 1 auto;
  margin-left: 16px;
  margin-right: 18px;
}
.main-menu a {
  color: var(--nav-link);
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 600;
  padding: 14px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
  position: relative;
}
.main-menu a:hover, .main-menu a:focus {
  background: rgba(247,170,28,0.16);
  color: var(--gold);
}

/* --- Call to action button --- */
.cta-btn {
  color: var(--brand-primary);
  background: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  border-radius: 24px;
  padding: 12px 30px;
  margin-left: 8px;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(35,75,95,0.07);
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.15s, box-shadow 0.15s;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #e6a300;
  color: var(--brand-accent);
  box-shadow: 0 4px 16px rgba(247,170,28,0.23);
}

/* --- Mobile Burger Menu --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: var(--gold);
  border: none;
  margin-left: 6px;
  margin-right: 8px;
  cursor: pointer;
  z-index: 22;
  line-height: 1;
  width: 42px;
  height: 42px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #fffbe7;
}

@media (max-width: 1050px) {
  .main-menu {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
}

/* --- Mobile Slide-in Overlay Menu --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,75,95,0.98);
  z-index: 1100;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.36,1.07,.76,1.01);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--gold);
  font-size: 2.4rem;
  border: none;
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  z-index: 1111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 96px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 48px;
}
.mobile-nav a {
  color: #fffbe7;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 16px 0;
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
  margin: 0 0 0.5rem 0;
  transition: background 0.17s, color 0.17s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(247,170,28,0.32);
  color: var(--gold);
}
@media (min-width: 1051px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(100deg, #f7f7f9 0%, #fafafa 60%, #f5efe0 100%);
  min-height: 240px;
  display: flex;
  align-items: center;
  padding: 0 0 32px 0;
}
.hero .container {
  justify-content: center;
}
.hero .content-wrapper {
  padding-top: 64px;
  padding-bottom: 48px;
  gap: 18px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hero .content-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: flex-start;
  }
}

/* --- Offers/Services Lists --- */
.offers-list, .service-list, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
  margin-bottom: 0;
}
.offers-list li, .service-list li, .usp-list li {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  padding: 28px 24px 22px 24px;
  min-width: 230px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  gap: 10px;
  border: 1.7px solid #e9e5d6;
  transition: box-shadow 0.2s, border 0.2s;
}
.offers-list li:hover, .service-list li:hover {
  box-shadow: 0 8px 36px rgba(35,75,95,0.09);
  border-color: var(--gold);
}
.offers-list li img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
  filter: drop-shadow(0 0 2px #ecd471) saturate(1.12);
}
.price {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  font-size: 1.07rem;
  margin-top: 10px;
}

@media (max-width: 900px) {
  .offers-list, .service-list, .usp-list {
    gap: 18px;
  }
}
@media (max-width: 650px) {
  .offers-list, .service-list, .usp-list {
    flex-direction: column;
    gap: 15px;
  }
  .offers-list li, .service-list li {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }
}

/* --- Testimonial Card --- */
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f9f6f1;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px rgba(35,75,95,0.05);
  border: 1.5px solid #e6e2d3;
  margin-bottom: 20px;
  max-width: 700px;
  transition: box-shadow 0.2s;
}
.testimonial-card .text-section {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--brand-primary);
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #22211c;
  font-weight: 500;
  margin-bottom: 2px;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #48442f;
  opacity: 0.83;
}
.star-rating {
  color: var(--gold);
  font-size: 1.09rem;
  font-family: var(--font-display);
  letter-spacing: 2px;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    max-width: 98vw;
    padding: 18px 10px;
  }
}

/* --- Card Spacing Patterns --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-main);
  padding: 28px 20px;
  border: 1.5px solid #efd7ab;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, border 0.18s;
}
.card:hover {
  border-color: var(--gold);
  box-shadow: 0 7px 32px rgba(247,170,28,0.13);
}
.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;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Forms --- */
input, textarea, select {
  background: #fff;
  border: 1.5px solid #ded6bb;
  border-radius: 7px;
  padding: 12px 15px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  color: #292d32;
  font-size: 1rem;
  box-shadow: 0 2px 9px #e3e0d8;
  transition: border-color 0.19s;
  width: 100%;
  max-width: 440px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
}
label {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

/* --- Footer --- */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  font-family: var(--font-display);
  padding: 48px 0 27px 0;
  margin-top: 90px;
  border-top: 5px solid var(--gold);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  opacity: 0.90;
  margin-bottom: 9px;
}
.footer-menu a {
  color: var(--brand-accent);
  transition: color 0.22s;
  border-radius: 7px;
  padding: 4px 7px;
  font-weight: 500;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--gold);
  background: rgba(255,224,179,0.07);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.87;
}
.footer-brand img {
  width: 28px;
  height: 28px;
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #222B33;
  color: #fffbe7;
  padding: 25px 16px 25px 22px;
  box-shadow: 0 -7px 28px rgba(35,75,95,0.07);
  z-index: 3002;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  transition: transform 0.35s cubic-bezier(.4,.8,.64,1), opacity 0.23s;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fffbe7;
  margin-bottom: 5px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  border-radius: 18px;
  border: none;
  padding: 12px 22px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.14s;
}
.cookie-banner .accept-btn {
  background: var(--gold);
  color: var(--brand-primary);
}
.cookie-banner .accept-btn:hover {background: #FFD256;}
.cookie-banner .reject-btn {
  background: #fffbe7;
  color: #222B33;
}
.cookie-banner .reject-btn:hover {
  background: #fafafa;
  color: #234B5F;
}
.cookie-banner .settings-btn {
  background: none;
  border: 1.2px solid #fffbe7;
  color: #fffbe7;
}
.cookie-banner .settings-btn:hover {
  background: #353c44;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 10px 18px 12px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- Cookie Modal --- */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 4001;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(46,53,63,0.28);
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fffbe7;
  color: var(--text-main);
  border-radius: 15px;
  padding: 32px 24px 22px 24px;
  box-shadow: 0 8px 40px rgba(35,75,95,0.19);
  min-width: 310px;
  max-width: 96vw;
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-body);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 6px 0 13px 0;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-modal .cookie-category-toggle {
  margin-left: auto;
  background: #e7e7df;
  border-radius: 14px;
  border: 1px solid #e7e7ce;
  width: 38px;
  height: 23px;
  position: relative;
  transition: background 0.14s;
  cursor: pointer;
}
.cookie-modal .cookie-category-toggle input[type=checkbox] {
  display: none;
}
.cookie-modal .cookie-category-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
  box-shadow: 0 1px 3px #bbb0bb;
}
.cookie-modal .cookie-category-toggle input:checked + .slider {
  left: 17px;
  background: var(--gold);
}
.cookie-modal .close-btn {
  border: none;
  background: var(--gold);
  color: var(--brand-primary);
  padding: 10px 22px;
  border-radius: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 12px;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal .close-btn:hover {
  background: #ffd256;
}

/* --- Animations & Micro-interactions --- */
.cta-btn, .offers-list li, .service-list li, .testimonial-card, .card {
  transition: box-shadow 0.18s, border 0.18s, background 0.18s, color 0.17s, transform 0.13s;
}
.cta-btn:active, .offers-list li:active, .service-list li:active {
  transform: scale(0.98);
}

/* --- Utility classes --- */
.d-none {display: none !important;}
.mt-2 {margin-top: 12px !important;}
.mb-2 {margin-bottom: 12px !important;}
.mb-4 {margin-bottom: 24px !important;}
.text-center {text-align: center;}
.text-gold {color: var(--gold);}

/* --- Responsive Spacing --- */
@media (max-width: 768px) {
  .section {padding: 24px 2px; margin-bottom: 37px;}
  footer {padding: 38px 0 15px 0; margin-top: 48px;}
}

/* --- Selection --- */
::selection {background: #F7AA1C22;}

/* --- Print --- */
@media print {
  header, footer, .cta-btn, .mobile-menu, .cookie-banner, .cookie-modal {display: none !important;}
}
