/* 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, menu, 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, 
main, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F7F7F5;
  color: #353A47;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style-position: outside;
  padding-left: 1.3em;
  margin-bottom: 16px;
}
a {
  color: #353A47;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FFCB00;
  text-decoration: none;
}
strong, b { font-weight: 600; }

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  color: #353A47;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.18;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1.08rem; margin-bottom: 6px; font-weight: 700; }

/* GENERAL CONTAINERS + SPACING */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* MAIN NAVIGATION */
header {
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px 0 rgba(53,58,71,0.04);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  background: none;
  justify-content: flex-start;
}
.main-nav a {
  color: #353A47;
  text-decoration: none;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a.cta-primary {
  background: #FFCB00;
  color: #353A47;
  border-radius: 24px;
  padding: 10px 26px;
  font-weight: 700;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(53,58,71,0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #353A47;
  color: #FFCB00;
  box-shadow: 0 3px 16px 0 rgba(53,58,71,0.14);
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7F7F5;
  color: #FFCB00;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.18rem;
  line-height: 1;
  color: #353A47;
  cursor: pointer;
  z-index: 160;
  position: absolute;
  right: 20px;
  top: 16px;
  padding: 2px 8px;
  border-radius: 5px;
  transition: background 0.15s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #f5eab5;
  outline: none;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(53,58,71,0.98);
  color: #FFF;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
  opacity: 0.98;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  margin: 24px 28px 12px 0;
  color: #FFCB00;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 5px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #353A47;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 20px 44px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  border: none;
  font-size: 1.22rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 12px 4px 12px 0;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFCB00;
  color: #353A47;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(.logo), .main-nav a.cta-primary {
    font-size: 0.99em;
    padding: 8px 3px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}


/* MAIN BUTTONS */
.cta-primary,
.button-primary {
  display: inline-block;
  background: #FFCB00;
  color: #353A47;
  border-radius: 99px;
  padding: 12px 30px;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  box-shadow: 0 3px 16px 0 rgba(53,58,71,0.05);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  margin-top: 8px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}
.cta-primary:hover, .cta-primary:focus,
.button-primary:hover, .button-primary:focus {
  background: #353A47;
  color: #FFCB00;
  box-shadow: 0 5px 22px 0 rgba(53,58,71,0.15);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

/* SECTION LAYOUTS & SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 0; 
  background: none;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 34px;
    padding: 28px 0; 
  }
}
.text-section {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1.08rem;
}

/* FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 40px 0 18px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 238px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 4px 24px -6px rgba(53,58,71,0.07);
  padding: 28px 22px 24px 22px;
  transition: box-shadow 0.21s, transform 0.14s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #F7F7F5;
  object-fit: contain;
}
.feature-item h3 {
  color: #353A47;
  font-size: 1.19rem;
}
.feature-item p {
  color: #353A47;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-item:hover {
  box-shadow: 0 11px 36px -8px rgba(53,58,71,0.13);
  transform: translateY(-3px) scale(1.02);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 17px;
  }
  .feature-item {
    min-width: 180px;
    padding: 20px 14px 16px 14px;
  }
}
@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.card-container,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
  justify-content: flex-start;
}
.card, .service-item {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 4px 24px -6px rgba(53,58,71,0.08);
  padding: 28px 22px 24px 22px;
  flex: 1 1 240px;
  min-width: 230px;
  transition: box-shadow 0.21s, transform 0.13s;
}
.card:hover, .service-item:hover {
  box-shadow: 0 10px 40px -10px rgba(53,58,71,0.14);
  transform: translateY(-4px) scale(1.02);
}
@media (max-width: 700px) {
  .card-container, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-item {
    min-width: 0;
    width: 100%;
    padding: 18px 10px 14px 10px;
  }
}

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

/* TESTIMONIALS */
.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
  margin-bottom: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 22px 20px 22px;
  background: #FFF;
  border-radius: 15px;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  box-shadow: 0 3px 26px -9px rgba(53,58,71,0.13);
  border: 1px solid #ededed;
  transition: box-shadow 0.19s, border 0.17s, transform 0.12s;
  color: #23252b;
}
.testimonial-card:hover {
  box-shadow: 0 7px 32px -8px rgba(53,58,71,0.18);
  border-color: #FFCB00;
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #23252b;
  margin-bottom: 6px;
}
.testimonial-author {
  font-size: 0.92rem;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  color: #353A47;
  margin-top: 6px;
  letter-spacing: 0;
}
@media (max-width: 700px) {
  .testimonial-wrapper {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 18px 10px 14px 10px;
  }
}

/* LISTS, TIPS, CATEGORIES */
.tip-list, .faq-shortlist, .recipe-categories, .country-list, .country-highlights, .highlight-gallery {
  margin: 26px 0 20px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px -7px rgba(53,58,71,0.08);
  padding: 20px;
}
.tip-list ul, .faq-shortlist ul, .recipe-categories ul, .country-list ul, .country-highlights ul, .highlight-gallery ul {
  padding-left: 16px;
  margin-bottom: 0;
}
.tip-list li, .faq-shortlist li, .recipe-categories li, .country-list li, .country-highlights li, .highlight-gallery li {
  padding-bottom: 8px;
  font-size: 1.03em;
}

/* FORMS (if any) */
input[type="text"] {
  background: #F7F7F5;
  border: 1px solid #e0dfda;
  color: #23252b;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  width: 320px;
  max-width: 100%;
  margin-top: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.15s, border 0.15s;
}
input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
input:focus {
  border-color: #FFCB00;
  outline: none;
  box-shadow: 0 2px 6px -1px #FFCB0055;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #F0F0F0;
  padding: 42px 0 32px 0;
  font-size: 1.07rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-left {
  flex: 2 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-left img {
  height: 40px;
  margin-bottom: 10px;
}
.footer-left a {
  color: #353A47;
  text-decoration: underline;
  font-size: 0.98em;
  margin-right: 8px;
  transition: color 0.18s;
}
.footer-left a:hover, .footer-left a:focus {
  color: #FFCB00;
}
.footer-right {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact h4 {
  color: #353A47;
  font-weight: 700;
  margin-bottom: 3px;
}
.footer-contact p {
  font-size: 1.01em;
  color: #494949;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact img {
  height: 1.1em;
  width: 1.1em;
  margin-right: 4px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  footer .container {
    gap: 18px;
  }
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 6px;
  }
}

/* MAP SECTION (Kontakt) */
.map {
  margin: 30px 0 8px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px -7px rgba(53,58,71,0.07);
  padding: 22px 20px 16px 20px;
}

/* MISC UTILS FOR CONSISTENT SPACING */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #353A47;
  color: #fff;
  padding: 20px 18px;
  box-shadow: 0 -3px 35px -13px rgba(53,58,71,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.66,0,.15,1.0), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0.3;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #FFCB00;
  color: #353A47;
  border: none;
  border-radius: 28px;
  font-size: 1rem;
  padding: 8px 26px;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-right: 2px;
  margin-top: 4px;
  box-shadow: 0 2px 10px -4px #353A4733;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #353A47;
  color: #FFCB00;
  box-shadow: 0 4px 18px -4px #FFCB0010;
}
.cookie-banner .cookie-settings-btn {
  background: #FFF;
  color: #353A47;
  border: 1px solid #FFCB00;
  padding: 8px 20px;
  margin-left: 2px;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #FFCB00;
  color: #353A47;
}
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.97rem;
    padding: 16px 4px;
  }
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(53,58,71,0.76);
  z-index: 13001;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #353A47;
  border-radius: 14px;
  box-shadow: 0 6px 30px -10px #353A4740;
  min-width: 300px;
  max-width: 98vw;
  padding: 30px 28px;
  font-size: 1.06rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
}
.cookie-modal-header h3 {
  font-size: 1.18rem;
  margin-bottom: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #353A47;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #FFCB00;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category-label {
  font-size: 1.01em;
  color: #2d303f;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  background: #ededed;
  border-radius: 22px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
  margin-left: 8px;
}
.cookie-toggle:checked {
  background: #FFCB00;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 100%;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.21s;
  box-shadow: 0 2px 8px #353A4711;
}
.cookie-toggle:checked::before {
  left: 17px;
}
.cookie-category-info {
  font-size: 0.95em;
  color: #656666;
  margin-left: 5px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  background: #FFCB00;
  color: #353A47;
  font-family: 'Quicksand', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 25px;
  padding: 8px 26px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px -4px #353A4733;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #353A47;
  color: #FFCB00;
  box-shadow: 0 7px 18px -4px #FFCB0012;
}
@media (max-width: 450px) {
  .cookie-modal {
    padding: 12px 6px;
    min-width: 0;
  }
}

/* ANIMATIONS */
.fade-slide-in {
  animation: fadeSlideIn 0.59s cubic-bezier(.39,.575,.565,1) both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ACCESSIBILITY FOCUS OUTLINES */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid #FFCB00;
  outline-offset: 2px;
}

/* CUSTOM FONTFACE (fall back on sans-serif if not loaded elsewhere) */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 400;
  src: local('Quicksand'), local('Quicksand-Regular');
}
@font-face {
  font-family: 'Quicksand';
  font-style: bold;
  font-weight: 700;
  src: local('Quicksand'), local('Quicksand-Bold');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular');
}
@font-face {
  font-family: 'Roboto';
  font-style: bold;
  font-weight: 700;
  src: local('Roboto'), local('Roboto-Bold');
}

/* RESPONSIVE UTILITIES */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.34rem; }
  h3 { font-size: 1.12rem; }
  body { font-size: 15px; }
  .cta-primary,
  .button-primary, .cookie-banner button { font-size: 0.99rem; padding: 11px 18px; }
}
