/* CYCLONE ACADEMY CATERING – style.css (Warm Friendly, Flexbox only) */
/* ============================ */
/* CSS RESET & 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, button, textarea, select {
  font: inherit;
}

/* ============================ */
/* CSS VARIABLES – FALLBACKS */
:root {
  --brand-primary: #20405A;
  --brand-secondary: #D7A74D;
  --brand-accent: #F4F2ED;
  --brand-danger: #c65640;
  --text-main: #182028;
  --text-light: #FEFAF7;
  --bg-main: #F4F2ED;
  --bg-lighter: #FFF;
  --shadow-card: 0 2px 16px 0 rgba(32, 64, 90, 0.10);
  --shadow-btn: 0 4px 12px 0 rgba(215, 167, 77, 0.13);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

/* ============================ */
/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
p, ul, ol, li, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
}
blockquote {
  font-style: italic;
  color: var(--brand-primary);
  background: rgba(215, 167, 77, 0.10);
  border-left: 5px solid var(--brand-secondary);
  padding: 10px 24px;
  border-radius: var(--border-radius-md);
  margin: 0 0 10px 0;
}

.text-section p, .text-section ul, .text-section li {
  color: var(--text-main);
}

strong {
  color: var(--brand-primary);
}

.subheadline {
  font-size: 1.2rem;
  color: var(--brand-secondary);
  margin-bottom: 24px;
  font-weight: 500;
}

/* ============================ */
/* LAYOUT CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

main {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--border-radius-lg);
  background: var(--bg-lighter);
  box-shadow: var(--shadow-card);
  /* For hero, etc, we may override bg */
  position: relative;
}

.features,
.services,
.cta-lead,
.cta,
.hero,
.about-us,
.menu-delivery,
.gallery-intro,
.legal,
.contact,
.thank-you,
.eventservice-overview {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: var(--border-radius-lg);
  background: var(--bg-lighter);
  box-shadow: var(--shadow-card);
}

@media (max-width: 575px) {
  .section, section, .features, .services, .cta-lead, .cta, .hero, .about-us, .menu-delivery, .gallery-intro, .legal, .contact, .thank-you, .eventservice-overview {
    padding: 28px 6px;
    margin-bottom: 32px;
    border-radius: var(--border-radius-md);
  }
}

/* ============================ */
/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--bg-lighter);
  box-shadow: 0 6px 20px rgba(32,64,90,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 1001;
  min-height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: var(--border-radius-sm);
  transition: box-shadow 0.2s;
}
.logo a:focus img,
.logo a:hover img {
  box-shadow: 0 2px 8px rgba(215,167,77,0.15);
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  padding: 6px 14px;
  border-radius: var(--border-radius-sm);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: var(--brand-primary);
  transition: background 0.17s, color 0.16s;
}
.main-nav a:focus, .main-nav a:hover {
  background: var(--brand-accent);
  color: var(--brand-secondary);
}
.cta-btn {
  background: var(--brand-secondary);
  color: var(--text-light);
  padding: 12px 28px;
  border: none;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-btn);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 
    background 0.20s cubic-bezier(.4,0,.2,1),
    box-shadow 0.23s cubic-bezier(.4,0,.2,1),
    transform 0.13s;
  outline: none;
  margin-left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #c99228;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 2px 20px 0 rgba(215,167,77,0.20);
}
@media (max-width: 1000px) {
  .main-nav {
    gap: 12px;
  }
}

/* =========== MOBILE MENU =========== */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    background: var(--brand-secondary);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: 2rem;
    width: 48px; height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(32, 64, 90, 0.10);
    transition: background .16s, color .19s;
    z-index: 1002;
    margin-left: 10px;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #b18533;
    color: var(--brand-accent);
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 64, 90, 0.97);
  color: var(--text-light);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.4,0,.2,1), opacity 0.26s;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.mobile-menu-close {
  margin-top: 18px;
  margin-left: 18px;
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-size: 2.1rem;
  cursor: pointer;
  border-radius: var(--border-radius-md);
  transition: background .17s, color .18s;
  padding: 4px 10px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(215, 167, 77, 0.08);
  color: #fffbe9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 28px;
  gap: 4px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--text-light);
  font-size: 1.2rem;
  padding: 10px 0 10px 0;
  border-radius: var(--border-radius-sm);
  width: 90%;
  display: block;
  margin-bottom: 0;
  transition: background 0.18s, color 0.14s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-secondary);
  color: var(--text-main);
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ============================ */
/* HERO BANNER */
.hero {
  background: linear-gradient(100deg, #f7eedd 0%, var(--brand-accent) 90%);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-radius: var(--border-radius-lg);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.7rem;
}
.hero .subheadline {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--brand-secondary);
  font-size: 1.2rem;
}

@media (max-width: 600px) {
  .hero {
    min-height: 190px;
    padding: 28px 4px;
    border-radius: var(--border-radius-md);
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* ============================ */
/* LIST & FEATURE SECTIONS */
.feature-grid, .usp-list, .service-list, .service-detailed-list, .event-service-list, .process-steps, .icon-list, .benefit-list, .event-types-list, .contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 0;
  margin-bottom: 0;
  flex-direction: column;
}
.feature-grid li, .usp-list li, .service-list li, .service-detailed-list li, .event-service-list li, .process-steps li, .icon-list li, .benefit-list li, .event-types-list li, .contact-blocks li {
  background: rgba(244,242,237,0.73);
  padding: 18px 24px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 0px;
  font-size: 1.05rem;
  min-height: 56px;
  box-shadow: 0 2px 8px 0 rgba(32, 64, 90, 0.06);
  border: 1px solid #ede6da;
}
.feature-grid li img, .icon-list li img {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: var(--border-radius-sm);
}
.feature-icons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 8px 0;
}
.feature-icons ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #fff8ee;
  border-radius: var(--border-radius-md);
  font-size: 0.98rem;
  box-shadow: 0 1px 4px rgba(215,167,77, 0.07);
  color: var(--brand-primary);
  border: 1px solid #f4e5c1;
}

.service-list li, .service-detailed-list li {
  font-weight: 500;
  color: var(--brand-primary);
}
.service-list li .price, .service-detailed-list li .price {
  color: var(--brand-secondary);
  font-size: 1.10em;
}

@media (min-width: 700px) {
  .feature-grid, .usp-list, .service-list, .service-detailed-list, .event-service-list, .process-steps, .icon-list, .benefit-list, .event-types-list, .contact-blocks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .feature-grid li, .icon-list li, .feature-icons ul li, .benefit-list li, .event-types-list li, .contact-blocks li {
    min-width: 260px;
    flex: 1 0 260px;
  }
}

.text-section {
  margin-top: 6px;
  margin-bottom: 6px;
}
.text-section ul {
  padding-left: 16px;
}
.text-section li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* ============================ */
/* TESTIMONIALS */
.testimonials {
  background: #fffef9;
}
.testimonials h2 {
  color: var(--brand-primary);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 30px;
  background: var(--brand-accent);
  margin-bottom: 20px;
  margin-top: 10px;
  border-radius: var(--border-radius-md);
  box-shadow: 0 3px 18px 0 rgba(32,64,90,0.09);
  color: var(--brand-primary);
  position: relative;
}
.testimonial-card .author {
  font-weight: 700;
  color: var(--brand-secondary);
  font-size: 1.07em;
}
.testimonial-card .rating {
  color: #ffb600;
  font-size: 1.24em;
  letter-spacing: 2px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* Ensure contrast for review text */
.testimonial-card blockquote, .testimonial-card {
  color: #1d2834;
  background: var(--brand-accent);
}

/* ============================ */
/* CARDS & CARDS FLEXBOX */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffef9;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-card);
  padding: 22px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.19s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(215,167,77,0.18);
  transform: translateY(-2px) scale(1.016);
}

/* ============================ */
/* CTA & LEAD SECTIONS */
.cta-lead, .cta {
  background: var(--brand-primary);
  color: var(--text-light);
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
}
.cta-lead h2, .cta h2 {
  color: var(--brand-secondary);
  margin-bottom: 18px;
}
.cta-lead p, .cta p {
  color: #f3ebd8;
}
.cta-lead .cta-btn, .cta .cta-btn {
  background: var(--brand-secondary);
  color: var(--text-light);
  margin-top: 10px;
}

/* ============================ */
/* TABLES & PRICE */
.price {
  color: var(--brand-secondary);
  font-size: 1.1em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}

/* ============================ */
/* MAP & CONTACT AREAS (Kontakt.html) */
.map-teaser, .contact-form-teaser {
  margin: 18px 0 12px 0;
  padding: 12px 16px;
  background: #fcf8f3;
  border-radius: var(--border-radius-md);
  box-shadow: 0 1px 5px rgba(215, 167, 77, 0.10);
  color: var(--brand-primary);
  font-size: 1rem;
}

/* ============================ */
/* FOOTER */
footer {
  width: 100%;
  background: var(--brand-primary);
  color: var(--text-light);
  padding: 38px 24px 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05em;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--text-light);
  text-decoration: underline;
}
.footer-info {
  font-size: 0.98em;
  color: #e7c46e;
  text-align: center;
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  footer {
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
    padding: 22px 8px 8px 8px;
  }
  .footer-nav {
    gap: 13px;
    font-size: 0.98em;
  }
}

/* ============================ */
/* UTILITY FLEXBOX CLASSES */
.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;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonials responsive */
.testimonial-card {
  width: 100%;
  max-width: 560px;
}
@media (max-width: 550px) {
  .testimonial-card {
    padding: 14px 12px;
  }
}

/* ============================ */
/* BUTTONS & LINK STYLES */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  cursor: pointer;
}
button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* ============================ */
/* TRANSITIONS & MICROINT */
a, button, .cta-btn, .main-nav a, .footer-nav a, .card {
  transition: background .18s, color .17s, box-shadow .17s, transform .13s;
}

/* ============================ */
/* COOKIE BANNER & COOKIE MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 3000;
  background: var(--brand-primary);
  color: var(--text-light);
  box-shadow: 0 -2px 30px 0 rgba(32,64,90,0.27);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  gap: 12px;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  font-size: 1.08em;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 auto;
  color: #ffeebd;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-direction: row;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  border: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(215,167,77,0.08);
  transition: background .18s, color .14s, box-shadow .19s;
  margin-left: 0;
}
.cookie-btn.accept {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.reject {
  background: var(--brand-danger);
  color: #fff;
}
.cookie-btn.settings {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid var(--brand-secondary);
  color: var(--brand-secondary);
}
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 6px 18px rgba(215,167,77,0.22);
  transform: translateY(-2px) scale(1.02);
  outline: none;
}
/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,64,90, 0.48);
  z-index: 3500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.22s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.hide {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.cookie-modal__box {
  background: #fffef9;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 50px rgba(32, 64, 90, 0.15);
  max-width: 388px;
  width: 94vw;
  padding: 32px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--brand-primary);
  position: relative;
}
.cookie-modal__header {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.45em;
  font-weight: bold;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: transparent;
  border: none;
  color: var(--brand-secondary);
  font-size: 1.6em;
  cursor: pointer;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}
.cookie-toggle label {
  font-weight: 500;
  color: var(--brand-primary);
  cursor: pointer;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #eee6d3;
  border-radius: 22px;
  transition: .2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--brand-secondary);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .18s;
  box-shadow: 0 1px 5px rgba(32,64,90,0.13);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-modal__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.cookie-modal__actions .cookie-btn {
  min-width: 90px;
}

/* ============================ */
/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .footer-info {
    font-size: 0.92em;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}
@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 11px 6px;
    font-size: 0.97em;
  }
  .cookie-banner__text {
    text-align: center;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
}

/* ============================ */
/* COLOR ACCESSIBILITY & CONTRAST IMPROVEMENTS */
.testimonial-card, .testimonial-card blockquote {
  background: var(--brand-accent);
  color: #212529;
}
.cookie-btn.accept:focus, .cookie-btn.accept:hover {
  background: #c9a33e;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #b43b28;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: var(--brand-secondary);
  color: var(--text-light);
  border: none;
}

/* ============================ */
/* OTHER MISC UTILITY */
::-webkit-scrollbar {
  width: 8px;
  background: #F4F2ED;
}
::-webkit-scrollbar-thumb {
  background: #e0c286;
  border-radius: 8px;
}

/* ============================ */
/* END Cyclone Academy Catering CSS */
