/*-------------------------------------------
Breeza Traumtage – Style Sheet
Warm, friendly and professional design for all pages
--------------------------------------------*/

/* CSS RESET & BASELINE NORMALIZATION */
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,
main, 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 {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  background: #FFF9F3;
  color: #2B6079;
  line-height: 1.66;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: #2B6079;
  text-decoration: none;
  transition: color 0.16s;
  cursor: pointer;
}

a:focus, a:hover {
  color: #c5791b;
  text-decoration: underline;
  outline: none;
}

ul, ol {
  margin: 0 0 1.2em 1.5em;
}

li {
  margin-bottom: 0.6em;
  font-size: 1em;
}

/*------------------------
TYPOGRAPHY
-------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #2B6079;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
  line-height: 1.125;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-size: 1.34rem;
  margin-bottom: 12px;
  font-weight: 700;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #314963;
}
.tagline {
  margin-top: 18px;
  font-size: 1.1rem;
  color: #d2831a;
  font-style: italic;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
}

.text-link {
  color: #2B6079;
  font-weight: 800;
  text-decoration: underline;
  font-family: 'Nunito', sans-serif;
  transition: color 0.16s;
}
.text-link:hover {
  color: #c5791b;
}

/*------------------------
LAYOUT CONTAINERS & SPACING
-------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(243,218,168,0.12);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.text-section {
  background: #FDF4E1;
  border-radius: 16px;
  padding: 32px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(134,185,176,0.10);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Responsive for .text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.section:last-child {
  margin-bottom: 0;
}

/*------------------------
HEADER & NAVIGATION
-------------------------*/
header {
  background: #2B6079;
  color: #fff;
  box-shadow: 0 3px 18px rgba(43, 96, 121, 0.06);
  width: 100%;
  min-height: 72px;
  position: relative;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}
header img[alt="Breeza Traumtage"] {
  height: 38px;
  width: auto;
  border-radius: 0;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
nav a {
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 6px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: #F3DAA8;
  color: #2B6079;
}

.btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  background: #F3DAA8;
  color: #2B6079;
  padding: 12px 28px;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(43, 96, 121, 0.08);
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.22s, color 0.16s;
}
.btn.primary:hover, .btn.primary:focus {
  background: #ffd87a;
  color: #2B6079;
  box-shadow: 0 4px 16px rgba(43,96,121,0.12);
}

/* HEADER NAV responsive */
@media (max-width: 980px) {
  header .container {
    gap: 14px;
  }
  nav {
    gap: 13px;
  }
  .btn.primary {
    padding: 10px 16px;
    font-size: 0.98rem;
  }
}

@media (max-width: 720px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }
  nav {
    display: none !important;
  }
  .btn.primary {
    display: none !important;
  }
}

/*------------------------
MOBILE BURGER MENU
-------------------------*/
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 720px) {
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 200;
    font-size: 2rem;
    background: #F3DAA8;
    color: #2B6079;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.18s;
    box-shadow: 0 2px 8px rgba(43,96,121,0.07);
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #ffd87a;
    outline: 2px solid #2B6079;
  }
}

.mobile-menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.77,.2,.36,1);
  box-shadow: 2px 0 24px rgba(43, 96, 121, 0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 22px 0 0;
  background: #F3DAA8;
  color: #2B6079;
  font-size: 2.2rem;
  padding: 8px 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 12px rgba(243,218,168,0.12);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ffd87a;
}
.mobile-nav {
  width: 88%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #2B6079;
  font-family: 'Nunito', sans-serif;
  font-size: 1.32rem;
  padding: 17px 0;
  border-radius: 10px;
  font-weight: 700;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F3DAA8;
  color: #d2831a;
}
.mobile-menu {
  display: none;
}
@media (max-width: 720px) {
  .mobile-menu {
    display: flex;
  }
}


/*--------------------------------
HERO SECTIONS
---------------------------------*/
.hero {
  background: linear-gradient(95deg, #F3DAA8 60%, #fff9f3 100%);
  padding: 38px 0 58px 0;
  margin-bottom: 44px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero h1 {
  color: #2B6079;
  margin-bottom: 12px;
}
.hero p {
  color: #607686;
  margin-bottom: 26px;
  font-size: 1.15rem;
}
.hero .btn.primary {
  margin-top: 8px;
  font-size: 1.16rem;
}

@media (max-width: 850px) {
  .hero h1 { font-size: 2.1rem; }
  .hero {
    padding: 22px 0 38px 0;
  }
}
@media (max-width: 580px) {
  .hero h1 { font-size: 1.5rem; }
  .hero {
    padding: 12px 0 28px 0;
  }
}

/*--------------------------------
CARD & GRID LAYOUTS
---------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(43,96,121,0.08);
  padding: 28px 22px;
  min-width: 260px;
  transition: box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(43,96,121,0.12);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

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

/*--------------------------------
FEATURES & ACTIVITY GRID
---------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(243,218,168,0.13);
  flex: 1 1 225px;
  min-width: 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px 20px 18px;
  transition: box-shadow 0.19s, transform 0.12s;
}
.feature:hover {
  box-shadow: 0 8px 24px rgba(43,96,121,0.13);
  transform: translateY(-4px) scale(1.03);
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  border-radius: 12px;
}
.feature h3 {
  color: #2B6079;
  margin-bottom: 8px;
}

/* Responsive feature grid */
@media (max-width: 800px) {
  .feature-grid { gap:18px; }
  .feature {
    min-width: 155px;
    padding: 18px 12px;
  }
}
@media (max-width: 660px) {
  .feature-grid {
    flex-direction: column;
    gap:13px;
  }
  .feature {
    width: 100%;
    max-width: none;
  }
}

/* WEATHER & IDEA WIDGETS */
.weather-widgets,
.idea-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.weather-widgets > div,
.idea-categories > ul > li {
  flex: 1 1 210px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(134,185,176,0.07);
  padding: 18px 15px 12px 15px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 165px;
}
.weather-widgets img {
  height: 34px;
  width: 34px;
  margin-bottom: 7px;
  border-radius: 9px;
  background: #F3DAA8;
  padding: 2px;
}

@media (max-width: 650px) {
  .weather-widgets, .idea-categories { flex-direction: column; gap: 12px; }
}

.activity-categories, .activity-list, .idea-list {
  margin-bottom: 30px;
}

.activity-categories ul, .idea-categories ul {
  padding-left: 1.2em;
}

.activity-categories h3, .activity-list h3, .idea-categories h3, .idea-list h3 {
  font-size: 1.17rem;
  color: #2B6079;
  font-family: 'Nunito',sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.activity-list ul, .idea-list ul {
  padding-left: 1.2em;
  list-style-type: disc;
}

/* BLOG POST LIST */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-post-list article {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(243,218,168,0.13);
  padding: 20px 16px 14px 16px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s, transform 0.12s;
}
.blog-post-list article:hover {
  box-shadow: 0 8px 20px rgba(43,96,121,0.13);
  transform: translateY(-3px) scale(1.02);
}
.blog-post-list h3 {
  font-size: 1.15rem;
}
.blog-post-list span {
  font-size: 0.99rem;
  color: #d2831a;
  margin-top: 6px;
  font-family: 'Nunito',sans-serif;
}

@media (max-width: 680px) {
  .blog-post-list { flex-direction: column; }
}

.categories-overview ul {
  list-style-type: disc;
  padding-left: 1.1em;
}
.categories-overview h4 {
  color: #2B6079;
  font-family: 'Nunito',sans-serif;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #FDF4E1;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(134,185,176,0.06);
  padding: 18px 16px 12px 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #2B6079;
}

/* CTA BOX */
.cta-box {
  background: #2B6079;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(43,96,121,0.14);
  padding: 38px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin: 20px 0;
}
.cta-box h2 { color: #fff; margin-bottom: 8px; }
.cta-box .btn.primary {
  background: #F3DAA8;
  color: #2B6079;
  box-shadow: 0 2px 8px rgba(243,218,168,0.14);
}
.cta-box .btn.primary:hover {
  background: #ffd87a;
  box-shadow: 0 6px 18px rgba(43,96,121,0.11);
}

/*--------------------------
TESTIMONIAL CARDS
---------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 18px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(243,218,168,0.19);
  color: #20394b;
  font-size: 1.08rem;
  position: relative;
  flex-direction: row;
}
.testimonial-card p {
  color: #314963;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #d2831a;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-left: 6px;
}
.testimonial-card:before {
  content: '\201C';
  font-family: serif;
  color: #F3DAA8;
  font-size: 2.2rem;
  position: absolute;
  top: 9px;
  left: 12px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 700px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 13px; }
  .testimonial-card:before { display: none; }
}

/* FORM (NEWSLETTER, ETC.) */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(243,218,168,0.14);
  padding: 22px 18px 16px 18px;
  margin-top: 7px;
  margin-bottom: 20px;
}
input[type="email"], input[type="text"], input[type="tel"] {
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid #86B9B0;
  padding: 12px 12px;
  font-family: 'Roboto',sans-serif;
  color: #2B6079;
  background: #FDF4E1;
  margin-bottom: 4px;
  transition: border 0.15s;
}
input:focus {
  border-color: #2B6079;
  outline: none;
}
button[type="submit"] {
  font-family: 'Nunito',sans-serif;
  border: none;
  background: #2B6079;
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(43,96,121,0.09);
  transition: background 0.2s, box-shadow 0.22s;
}
button[type="submit"]:hover, button[type="submit"]:focus {
  background: #3f92ae;
  box-shadow: 0 6px 18px rgba(43,96,121,0.15);
}
label {
  font-family: 'Nunito',sans-serif;
  font-size: 1.05rem;
  color: #2B6079;
  font-weight: 600;
  margin-bottom: 4px;
}

/*------------------------------
FOOTER
-------------------------------*/
footer {
  background: #2B6079;
  color: #fff;
  padding: 40px 0 22px 0;
  font-size: 0.99rem;
  position: relative;
  border-radius: 28px 28px 0 0;
}
footer .container {
  gap: 24px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #F3DAA8;
  font-weight: 600;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #FDF4E1;
  color: #2B6079;
}
.footer-menu span {
  color: #E9A73E;
  font-family: 'Nunito',sans-serif;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #fff;
  font-weight: 500;
  font-family: 'Nunito',sans-serif;
  margin-top: 10px;
}
.footer-info img {
  height: 21px;
  width: 21px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 6px;
}
.footer-info span {
  display: flex;
  align-items: center;
  gap:7px;
  margin-right: 8px;
  background: none;
  font-size: 0.97em;
}
@media (max-width: 680px) {
  .footer-menu, .footer-info { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/*-----------------------------------
COOKIE CONSENT BANNER + MODAL
-----------------------------------*/
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff9f3;
  color: #2B6079;
  box-shadow: 0 -2px 20px rgba(43,96,121,0.07);
  z-index: 1215;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 22px;
  gap: 18px;
  font-size: 1rem;
  font-family: 'Nunito',sans-serif;
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.77,.2,.36,1);
  border-radius: 15px 15px 0 0;
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%);} to {transform: translateY(0);}
}
#cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
#cookie-banner button {
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  border-radius: 22px;
  font-size: 0.98rem;
  padding: 10px 20px;
  margin-left: 0;
  background: #F3DAA8;
  color: #2B6079;
  box-shadow: 0 2px 5px rgba(43,96,121,0.08);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
#cookie-banner button.accept {
  background: #86B9B0;
  color: #fff;
}
#cookie-banner button.accept:hover,
#cookie-banner button.accept:focus {
  background: #5c9791;
  color: #fff;
}
#cookie-banner button.reject {
  background: #d2831a;
  color: #fff;
}
#cookie-banner button.reject:hover, #cookie-banner button.reject:focus {
  background: #b56a12;
}
#cookie-banner button.settings {
  background: #F3DAA8;
  color: #2B6079;
}
#cookie-banner button.settings:hover, #cookie-banner button.settings:focus {
  background: #ffd87a;
}

@media (max-width: 620px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 15px 10px;
    font-size: 0.97rem;
  }
  #cookie-banner .cookie-actions { gap: 8px; }
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  z-index: 1300;
  background: rgba(43,96,121, 0.23);
  top: 0; left: 0; width: 100vw; height: 100vh;
  display: none;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade 0.21s;
}
@keyframes cookieModalFade {
  from { opacity: 0;} to { opacity: 1; }
}
#cookie-modal.active {
  display: flex;
}
#cookie-modal .modal-content {
  background: #fff9f3;
  border-radius: 18px;
  box-shadow: 0 4px 45px rgba(43,96,121,0.13);
  padding: 40px 30px 38px 30px;
  min-width: 320px;
  max-width: 92vw;
  font-family: 'Nunito',sans-serif;
  color: #2B6079;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
#cookie-modal h2 {
  margin-bottom: 0;
}
#cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
#cookie-modal label {
  font-family: 'Nunito',sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.04rem;
  cursor: pointer;
  margin-bottom: 6px;
}
#cookie-modal input[type='checkbox'] {
  accent-color: #F3DAA8;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
#cookie-modal input[type='checkbox'][disabled] {
  accent-color: #86B9B0;
  opacity: 0.55;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
#cookie-modal button {
  font-family: 'Nunito',sans-serif;
  border: none;
  border-radius: 22px;
  font-size: 0.98rem;
  padding: 10px 22px;
  background: #F3DAA8;
  color: #2B6079;
  font-weight: 700;
  box-shadow: 0 2px 7px rgba(43,96,121,0.08);
  cursor: pointer;
  transition: background 0.14s;
}
#cookie-modal button.save {
  background: #86B9B0;
  color: #fff;
}
#cookie-modal button.save:hover, #cookie-modal button.save:focus {
  background: #3f92ae;
}
#cookie-modal button.cancel {
  background: #ddd1bb;
  color: #2B6079;
}
#cookie-modal button.cancel:hover, #cookie-modal button.cancel:focus {
  background: #F3DAA8;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 2rem;
  background: transparent;
  color: #2B6079;
  border: none;
  cursor: pointer;
}
@media (max-width:580px) {
#cookie-modal .modal-content { padding:20px 7vw; min-width:200px; } }

/*-------------------------------------
MISCELLANEOUS ELEMENTS
--------------------------------------*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.card-container, .content-grid,
.feature-grid, .weather-widgets, .idea-categories, .blog-post-list, .footer-menu, .footer-info {
  gap: 20px;
}

/* Guarantee minimum margin between content cards/sections */
.card, .section, .testimonial-card, .feature, .faq-item, .blog-post-list article {
  margin-bottom: 20px;
}

/* Responsive Typography */
@media (max-width: 520px) {
  h1 { font-size: 1.27rem; }
  h2 { font-size: 1.07rem; }
}

/* Success & Info Messages */
.success-message, .info-message {
  border-radius: 9px;
  background: #FDF4E1;
  color: #2B6079;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(243,218,168,0.16);
  margin-bottom: 18px;
  font-family: 'Nunito',sans-serif;
}

/* Utility classes */
.hide { display: none!important; }

/* Accessibility: Keyboard focus for all interactive elements */
a:focus, button:focus, .btn:focus {
  outline: 2px solid #d2831a;
  outline-offset: 2px;
}

/* End of Breeza Traumtage Styles */
