/* =======================================================
   Brillanz Events style.css — playful_dynamic
   Modern, playful, energetic flexbox layout | Mobile-First
   ======================================================= */

/* ==== 1. CSS RESET + BASE ==== */
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,
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;
  background: #FFF;
  color: #2D437E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:focus { outline: 2px solid #F8C35E; outline-offset: 2px; }

/* Playful Touch: Fun Underlines on Hover for nav & footer links */
nav a, .mobile-nav a, footer nav a {
  position: relative;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding: 2px 4px;
  transition: color 0.2s;
}
nav a:hover, .mobile-nav a:hover, footer nav a:hover {
  color: #F47C7B;
}
nav a:after, .mobile-nav a:after, footer nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: #F8C35E;
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(.5,2,.5,1);
  position: absolute;
  left: 0;
  bottom: -3px;
}
nav a:hover:after, .mobile-nav a:hover:after, footer nav a:hover:after {
  width: 90%;
}

/* ==== 2. BASIC BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #2D437E;
  font-weight: 800;
  line-height: 1.08;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #1a2b52;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-weight: 700;
  color: #F47C7B;
}
p, li, ul, ol {
  font-size: 1rem;
  color: #384A8C;
}
strong, b {
  color: #2D437E;
  font-weight: bold;
}
.text-section ul {
  margin: 12px 0 16px 24px;
  padding-left: 0;
}
.text-section ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}
.text-section ul li:before {
  content: '\2022';
  color: #F8C35E;
  font-size: 1.35em;
  position: absolute;
  left: 0; top: 0;
  font-weight: bold;
  line-height: 1.2;
}

/* ==== 3. BRAND COLORS ==== */
:root {
  --color-primary: #2D437E;
  --color-secondary: #F8C35E;
  --color-accent: #FFFFFF;
  --color-highlight: #F47C7B;
  --color-info: #6FDBDB;
  --color-bg-section: #F8F9FC;
  --color-shadow: rgba(44,53,101, 0.07);
  --color-shadow-dark: rgba(44,53,101, 0.14);
}

/* ==== 4. LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

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

/* ==== 5. PLAYFUL SPACING & SECTIONS ==== */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 24px 0 0 0;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 10px;
  }
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
}

/* ==== 6. HEADER & NAVIGATION ==== */
header {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 12px var(--color-shadow-dark);
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
header a img {
  height: 44px;
  transition: transform 0.20s cubic-bezier(.34,1.56,.64,1); /* Logo fun bounce! */
}
header a img:hover {
  transform: rotate(-8deg) scale(1.06);
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 30px;
  min-width: 160px;
  box-shadow: 0 4px 24px var(--color-shadow);
  border: none;
  outline: none;
  margin-left: 12px;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.16s, box-shadow 0.22s;
}
.btn-primary {
  background: var(--color-secondary);
  color: #2D437E;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F7B42B;
  color: #222A5F;
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 6px 32px var(--color-shadow-dark);
}
.btn-secondary {
  background: #F47C7B;
  color: #fff;
  border: 2px solid #F47C7B;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: #F47C7B;
  border: 2px solid #F47C7B;
  transform: scale(1.04) rotate(1deg);
}

@media (max-width: 1024px) {
  header .container { flex-wrap: wrap; }
  header nav {
    flex-wrap: wrap;
    gap: 11px;
  }
}
@media (max-width: 900px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* ==== 7. MOBILE MENU ==== */
.mobile-menu-toggle {
  background: #F47C7B;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px var(--color-shadow);
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
  margin-left: 10px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F8C35E;
  color: var(--color-primary);
  transform: scale(1.1) rotate(6deg);
  outline: 2px solid #F8C35E;
}
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #2D437E;
  display: flex;
  flex-direction: column;
  /* Start hidden, slide in when open */
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.38,1.6,.45,.93);
  box-shadow: 2px 0 64px var(--color-shadow-dark);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #F8C35E;
  color: #2D437E;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px; height: 48px;
  align-self: flex-end;
  margin: 22px 18px 10px 0;
  box-shadow: 0 2px 14px var(--color-shadow);
  transition: background 0.14s, transform 0.15s;
  cursor: pointer;
}
.mobile-menu-close:hover {
  background: #F47C7B;
  color: #fff;
  transform: rotate(8deg) scale(1.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 32px 24px 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 8px 6px;
  letter-spacing: 0.03em;
  border-radius: 6px;
  margin: 0;
  transition: background 0.16s, color 0.16s, transform 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8C35E;
  color: #2D437E;
  transform: scale(1.05) rotate(-2deg);
}
@media (min-width: 900px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== 8. HERO, CTA & PLAYFUL HEADLINERS ==== */
.hero {
  padding: 0;
  background: linear-gradient(85deg, #F8C35E 0%, #F47C7B 48%, #6FDBDB 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom-left-radius: 90px 25px;
  border-bottom-right-radius: 70px 32px;
  box-shadow: 0 18px 32px -24px #2D437E07;
}
.hero .container {
  min-height: 250px;
}
.hero .content-wrapper {
  gap: 18px;
  justify-content: flex-start;
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Montserrat', cursive, sans-serif;
  color: #2D437E;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 6px;
  text-shadow: 1px 1px 0 #fff7, 0 2px  18px #fff7;
  animation: heroPop 0.7s cubic-bezier(.22,1.02,.36,1.08) 0.12s backwards;
}
.hero p {
  color: #2D437E;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  animation: heroPop 0.8s cubic-bezier(.22,1.02,.36,1.08) 0.18s backwards;
}
.hero .btn-primary {
  animation: heroPop 0.95s cubic-bezier(.22,1.02,.36,1.08) 0.21s backwards;
}
@keyframes heroPop {
  0% { transform: scale(0.89) translateY(28px); opacity: 0; }
  85% { opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.cta {
  background: var(--color-bg-section);
  border-radius: 13px;
}
.cta .text-section {
  align-items: center;
  text-align: center;
}

/* ==== 9. FEATURES FLEX ==== */
.features {
  background: none;
}
.features .content-wrapper {
  gap: 24px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 12px;
}
.features-grid > div {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 24px 20px 20px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 315px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  transition: transform 0.16s, box-shadow 0.19s;
  margin-bottom: 20px;
  border: 3px solid transparent;
}
.features-grid > div:hover, .features-grid > div:focus-within {
  transform: translateY(-6px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 6px 24px var(--color-shadow-dark);
  border: 3px solid #F8C35E;
  z-index: 2;
}
.features-grid img {
  height: 44px; width: 44px;
  margin-bottom: 2px;
  border-radius: 14px;
  background: #F8C35E17;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: transform 0.16s;
}
.features-grid > div:hover img {
  transform: rotate(-10deg) scale(1.14);
}

/* ==== 10. CARD CONTAINERS FLEX ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 16px;
  min-width: 220px;
  transition: transform 0.14s, box-shadow 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px var(--color-shadow-dark);
  transform: scale(1.03) rotate(1deg);
  border: 2px solid #F8C35E;
}

/* ==== 11. GENERAL FLEX LAYOUTS ==== */
.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;
}
.testimonial-card {
  background: #fff;
  color: #222A5F;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 16px var(--color-shadow-dark);
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  font-size: 1.06rem;
  border-left: 5px solid #F8C35E;
  transition: box-shadow 0.17s, border-color 0.18s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px #F47C7B32;
  border-left: 5px solid #F47C7B;
  transform: scale(1.015) rotate(-1deg);
}
.testimonial-card p {
  margin-bottom: 8px;
  font-style: italic;
  font-size: 1.08em;
  color: #2D437E;
}
.testimonial-card strong {
  font-size: 0.99em;
  color: #F47C7B;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 22px;
  margin-bottom: 10px;
}
.testimonials-excerpt {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 8px;
}

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

/* ==== About, Gallery, Blog = Text Section ==== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.text-section h2 {
  margin-top: 0;
}
.text-section ul {
  margin-left: 2px;
  margin-bottom: 0;
}

/* ==== LEGAL SECTIONS ==== */
.legal {
  background: #F8F9FC;
  border-radius: 24px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

/* ==== FOOTER ==== */
footer {
  background: #2D437E;
  color: #fff;
  font-size: 1rem;
  border-top-left-radius: 60px 22px;
  border-top-right-radius: 40px 30px;
  margin-top: 30px;
  padding: 44px 0 22px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
footer a img {
  height: 42px;
  margin-bottom: 16px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fafaff;
  font-size: 1em;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 7px;
  background: none;
  transition: background 0.13s;
}
footer nav a:hover {
  background: #F8C35E;
  color: #2D437E;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1em;
  color: #fff;
}
.footer-contact img {
  width: 18px; height: 18px;
  display: inline-block;
}

/* ==== MISC: CONTACT INFO (KONTAKT) ==== */
.contact-info-summary {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px var(--color-shadow-dark);
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  margin-bottom: 10px;
  padding: 15px 18px 13px 18px;
}
.contact-info-summary p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.google-map-embed {
  background: #EEF2FA;
  border-radius: 12px;
  font-size: 1.02em;
  padding: 14px;
  text-align: center;
  margin-top: 16px;
}
.next-steps-info ul {
  margin-left: 22px;
}
.next-steps-info li:before {
  color: #6FDBDB;
  font-size: 1.12em;
}

/* ==== BLOG/NEWS & SPECIALIZED SECTIONS ==== */
.featured-articles, .industry-trends, .cookie-settings-options {
  background: #F8C35E27;
  border-radius: 14px;
  padding: 18px 14px;
  margin: 12px 0;
  font-size: 1.01em;
}

/* ==== TEAM LIST in Über-Uns ==== */
.team-list {
  margin-left: 5px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.team-list strong {
  color: #F47C7B;
  font-weight: 900;
}

/* ==== Animations - Fun details ==== */
.features-grid img,
.features-grid > div {
  will-change: transform;
}
@keyframes popBounce {
  0% { transform: scale(0.93) rotate(-7deg); }
  60%{ transform: scale(1.08) rotate(7deg); }
  90%{ transform: scale(0.98) rotate(-4deg); }
  100%{ transform: scale(1) rotate(0); }
}
.features-grid > div:hover {
  animation: popBounce 0.5s 1;
}

/* ==== Cookie Consent Banner ==== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: #2D437E;
  box-shadow: 0 -2px 18px #2D437E14;
  z-index: 1500;
  display: none !important;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 8px 18px 8px;
  gap: 24px;
  animation: cookiePop .7s cubic-bezier(.48,1.71,.5,1) backwards;
}
@keyframes cookiePop {
  0% { transform: translateY(100px); opacity: 0 }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-message {
  font-size: 0.99rem;
  max-width: 400px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  min-width: 100px;
}
.cookie-banner .cookie-settings-btn {
  background: #F47C7B;
  color: #fff;
  border: none;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 9px 20px;
  margin-left: 10px;
  box-shadow: 0 1px 9px #2D437E12;
  transition: background 0.17s, transform 0.14s;
  cursor: pointer;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #F8C35E;
  color: #2D437E;
  transform: scale(1.03);
}
.cookie-banner .cookie-accept {
  background: #2D437E;
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
  border: none;
  padding: 9px 20px;
  margin-left: 0;
  font-size: 1.01rem;
  transition: background 0.15s, color 0.14s, transform 0.14s;
  cursor: pointer;
}
.cookie-banner .cookie-accept:hover {
  background: #F8C35E;
  color: #2D437E;
  transform: scale(1.05);
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #F47C7B;
  border: 2px solid #F47C7B;
  border-radius: 20px;
  font-weight: 700;
  padding: 8px 15px;
  font-size: 1.01rem;
  margin-left: 0;
}
.cookie-banner .cookie-reject:hover {
  background: #F47C7B;
  color: #fff;
}
/* ==== Cookie Modal ==== */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translate(-50%, 200px);
  opacity: 0;
  width: 97vw;
  max-width: 410px;
  background: #fff;
  color: #2D437E;
  z-index: 1600;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 35px #2D437E22;
  padding: 0 20px 18px 20px;
  animation: none;
  pointer-events: none;
}
.cookie-modal.open {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: all;
  animation: cookieModalSlideIn .6s cubic-bezier(.5,1.86,.66,1.1) both;
}
@keyframes cookieModalSlideIn {
  0% { opacity: 0; transform: translate(-50%, 200px); }
  100% { opacity: 1; transform: translate(-50%, 0); }
}
.cookie-modal h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.22rem;
  margin-bottom: 9px;
  color: #F47C7B;
  margin-top: 20px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  padding: 10px 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal .category-label {
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  border-radius: 16px;
  border: 2px solid #F8C35E;
  width: 36px;
  height: 22px;
  background: #F8C35E44;
  appearance: none;
  outline: none;
  position: relative;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal .cookie-toggle:checked {
  background: #F47C7B;
  border: 2px solid #F47C7B;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px; left: 2px;
  box-shadow: 0 1px 4px #2D437E22;
  transition: left 0.13s cubic-bezier(.5,1.6,.4,1.1), background 0.1s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 14px;
  background: #F8C35E;
}
.cookie-modal .cookie-save {
  margin-top: 18px;
  background: #2D437E;
  color: #fff;
  padding: 10px 34px;
  border-radius: 24px;
  font-weight: bold;
  border: none;
  font-size: 1.04rem;
  box-shadow: 0 2px 18px #2D437E21;
}
.cookie-modal .cookie-cancel {
  margin-top: 10px;
  background: #fff;
  color: #F47C7B;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: bold;
  border: 2px solid #F47C7B;
  font-size: 1.01rem;
  margin-left: 8px;
}
.cookie-modal .cookie-save:hover {
  background: #F8C35E;
  color: #2D437E;
}
.cookie-modal .cookie-cancel:hover {
  background: #F47C7B;
  color: #fff;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1200px) {
  .features-grid > div, .card {
    min-width: 200px;
    max-width: 44vw;
    font-size: 0.97em;
  }
}
@media (max-width: 900px) {
  .features-grid {
    gap: 18px;
  }
  .features-grid > div {
    max-width: 95vw;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container, .hero .container {
    padding-left: 4vw; padding-right: 4vw;
    width: 100vw;
  }
  .features-grid, .testimonial-slider, .testimonials-excerpt, .content-grid, .card-container {
    flex-direction: column;
    gap: 14px !important;
    align-items: stretch;
  }
  .testimonial-card, .features-grid > div, .card {
    min-width: 0;
    max-width: 100vw;
    font-size: 0.98em;
  }
  .footer-contact p { font-size: 0.98em; }
  .hero h1 { font-size: 1.45rem; }
  .hero .content-wrapper { gap: 10px; }
  header .container { gap: 7px; }
  .cta, .legal { border-radius: 7px; }
  .about-gallery, .about-intro { padding: 0 3vw; }
  .about-intro .content-wrapper, .about-gallery .content-wrapper { gap: 14px; }
}
@media (max-width: 510px) {
  .btn-primary, .btn-secondary { min-width: 120px; padding: 10px 10px; font-size: 15px; }
  .footer-contact p { font-size: 0.96em; }
  section, .section { padding: 19px 2vw; margin-bottom: 28px !important; }
  .contact-info-summary { padding: 8px 4px; }
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 9px; padding: 18px 1vw 14px 1vw; }
}

/* ==== SCROLLBAR STYLING ==== */
body::-webkit-scrollbar { width: 10px; background: #F8C35E33; }
body::-webkit-scrollbar-thumb { background: #F8C35E; border-radius: 16px; }

/* ==== FOCUS / ACCESSIBILITY ==== */
a:focus, button:focus, .btn-primary:focus,
.btn-secondary:focus, .mobile-menu-toggle:focus,
.mobile-menu-close:focus {
  outline: 2px solid #F8C35E;
  outline-offset: 2px;
  box-shadow: 0 0 4px #F8C35E44;
}

/* ==== PRINT ==== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; }
}
