/* 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,
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #F4F2F8;
  color: #21243A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: #0d9afa;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  text-decoration: underline;
  color: #D89DB7;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* BRAND COLORS (VIBRANT ENERGETIC) */
:root {
  --primary: #21243A;
  --secondary: #F4F2F8;
  --accent: #D89DB7;
  --electric-blue: #0d9afa;
  --vivid-orange: #FF6B1C;
  --lime: #C8FF7B;
  --electric-yellow: #FCF929;
  --electric-violet: #732DDB;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, li, blockquote, cite {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--primary);
}
strong, b {
  font-weight: 700;
}

/* GENERAL SPACING & SECTION LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

/* CARD LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(33,36,58,0.07);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  transition: box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}
.card:hover {
  box-shadow: 0 10px 40px rgba(33,36,58,0.22);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

/* TESTIMONIALS (High Contrast!) */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(33,36,58,0.07);
  margin-bottom: 20px;
  font-size: 1rem;
  max-width: 600px;
  color: #18192B;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(11, 154, 250, 0.15);
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card blockquote {
  font-style: italic;
  color: #18192B;
  margin: 0;
  quotes: "\201C" "\201D";
}
.testimonial-card cite {
  display: block;
  font-size: 0.95rem;
  color: var(--accent);
  margin-top: 8px;
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 28px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s, color .17s, box-shadow .18s, transform .16s;
  box-shadow: 0 2px 16px rgba(217, 157, 183, 0.09);
  margin: 6px 0;
  position: relative;
  z-index: 2;
}
.btn-primary {
  background: linear-gradient(90deg, #0d9afa 70%, #FF6B1C 100%);
  color: #fff;
  box-shadow: 0 4px 30px rgba(13, 154, 250, 0.12);
  border: 2px solid transparent;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FF6B1C 65%, #0d9afa 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 36px rgba(13, 154, 250, 0.20);
}
.btn-secondary {
  background: #fff;
  color: #0d9afa;
  border: 2px solid #0d9afa;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #0d9afa;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(13, 154, 250, 0.12);
}

/* MAIN NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(215, 157, 183, 0.03);
  border-bottom: 2px solid #f4f2f8;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
  height: 76px;
  position: relative;
}
.main-nav > a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav li {
  list-style: none;
}
.main-nav a, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus, .footer-nav a:hover, .footer-nav a:focus {
  color: #0d9afa;
}

/* Hide mobile burger on desktop */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #0d9afa;
  font-size: 2.3rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, transform 0.16s;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #FF6B1C;
  transform: scale(1.08);
}

@media (max-width: 960px) {
  .main-nav ul {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 18px;
    right: 24px;
  }
}

/* MOBILE MENU & ANIMATION */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  box-shadow: -8px 0 32px rgba(13, 154, 250, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.36s cubic-bezier(.7,.1,.2,1);
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #0d9afa;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 28px 22px 8px 0;
  cursor: pointer;
  z-index: 220;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FF6B1C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 28px 24px 34px;
  gap: 18px;
}
.mobile-nav a {
  width: 100%;
  padding: 18px 0 14px 0;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  border-bottom: 1px solid #F4F2F8;
  transition: background 0.2s, color 0.18s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F2F8;
  color: #0d9afa;
  outline: none;
}

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

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 0 0;
  border-top: 4px solid #D89DB7;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}
.footer-top img {
  max-height: 52px;
}
.footer-top span {
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.88;
  transition: color 0.2s, opacity 0.18s;
  text-transform: uppercase;
}
.footer-nav a:hover,
.footer-nav a:focus { color: #D89DB7; opacity: 1; }
.quick-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  color: #F4F2F8;
  font-size: 1.05rem;
  margin: 12px 0;
  flex-wrap: wrap;
}
.quick-contact img {
  vertical-align: middle;
  height: 20px;
  margin-right: 7px;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 16px 0 14px 0;
}
.social-icons img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px #D89DB7);
  transition: filter 0.18s;
}
.social-icons img:hover, .social-icons img:focus {
  filter: brightness(1.15) invert(0) drop-shadow(0 0 8px #0d9afa);
}
.footer-bottom {
  text-align: center;
  font-size: 0.97rem;
  color: #C0BCD4;
  margin: 30px 0 0 0;
  padding-bottom: 26px;
}

/* TABLES (for PREISE) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 16px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(33,36,58,0.07);
  overflow: hidden;
}
thead {
  background: #0d9afa;
  color: #fff;
}
thead th {
  padding: 14px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}
tbody td {
  padding: 12px 7px;
  border-bottom: 1px solid #F4F2F8;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1a1d3e;
}
tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 600px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  thead {
    display: none;
  }
  tbody td {
    padding: 9px 7px;
    text-align: left;
    border-bottom: 1px solid #F4F2F8;
    font-size: 0.98rem;
  }
  tbody tr:last-child td {
    border-bottom: none;
  }
}

/* ICONS in LISTS & CONTACT */
ul li img {
  vertical-align: middle;
  height: 20px;
  margin-right: 9px;
}

/* SPECIAL BUTTONS with ELECTRIC HUES */
.btn-primary:after {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 28px;
  background: linear-gradient(100deg, rgba(252,249,41,0.08), rgba(11,154,250,0.09), rgba(217, 157, 183, 0.09));
  z-index: -1;
}

/* ORDERED & UNORDERED LISTS */
ul, ol {
  margin-left: 0;
  margin-bottom: 12px;
  padding-left: 0;
}
ul > li, ol > li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
ul > li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(90deg, #0d9afa 60%, #FF6B1C 90%);
  margin-right: 10px;
}

/* FOR TIGHTER SECTIONS, layout for .content-wrapper children */
@media (min-width: 791px) {
  .content-wrapper {
    gap: 28px;
  }
}

/* GALLERY placeholder (cards could go here) */
/* Not provided, but included for completeness */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ANNOUNCEMENT/ALERT BANNER */
.announcement-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  font-size: 1.15rem;
  padding: 14px;
  letter-spacing: 0.01em;
  font-weight: 600;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  background: #fff;
  border-top: 4px solid #0d9afa;
  box-shadow: 0 -4px 32px rgba(13, 154, 250, 0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 36px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: slideUp 0.7s cubic-bezier(.5,0,.2,1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 780px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    max-width: unset;
    padding: 18px 7px;
    font-size: 0.98rem;
  }
}
@keyframes slideUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  border-radius: 19px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .23s, color .17s, box-shadow 0.12s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg,#0d9afa 70%,#FF6B1C 100%);
  color: #fff;
  box-shadow: 0 2px 12px rgba(13,154,250,0.14);
}
.cookie-btn.accept:hover {
  background: linear-gradient(90deg,#FF6B1C 60%,#0d9afa 100%);
}
.cookie-btn.reject {
  background: #fff;
  border: 2px solid #0d9afa;
  color: #0d9afa;
}
.cookie-btn.reject:hover {
  background: #0d9afa;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  border: 2px solid #D89DB7;
  color: #D89DB7;
}
.cookie-btn.settings:hover {
  background: #D89DB7;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,36,58,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px 28px 28px;
  box-shadow: 0 6px 44px rgba(13,154,250,0.13);
  max-width: 440px;
  width: 94vw;
  max-height: 95vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDown 0.32s cubic-bezier(.5,0,.2,1);
}
@keyframes slideDown {
  from { transform: translateY(-42px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F2F8;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  background: #D89DB7;
  border-radius: 13px;
  position: relative;
  transition: background 0.18s;
  flex-shrink: 0;
}
.cookie-toggle[data-checked="true"] {
  background: #0d9afa;
}
.cookie-toggle-switch {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s cubic-bezier(.8,0,.2,1);
}
.cookie-toggle[data-checked="true"] .cookie-toggle-switch {
  left: 21px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 14px;
  background: none;
  border: none;
  color: #0d9afa;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #FF6B1C;
}

/* FORM & INPUTS (future-proofing) */
input, textarea {
  border: 1.5px solid #D89DB7;
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 1rem;
  background: #F4F2F8;
  color: var(--primary);
  margin-bottom: 14px;
  width: 100%;
  transition: border 0.18s;
}
input:focus, textarea:focus {
  border-color: #0d9afa;
  outline: none;
}

/* RESPONSIVENESS */
@media (max-width: 1050px) {
  .container {
    max-width: 94vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.09rem; }
}
@media (max-width: 900px) {
  .content-grid, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .main-nav {
    padding-right: 37px;
  }
  .footer-nav,
  .quick-contact {
    flex-direction: column;
    gap: 14px;
  }
  .footer-top img {
    max-height: 32px;
  }
}

/* MICROINTERACTIONS & ANIMATIONS */
.btn-primary,.btn-secondary,.cookie-btn,.cookie-toggle,.mobile-menu-toggle,.mobile-menu-close {
  transition: box-shadow .18s, transform .17s, background 0.2s, color 0.18s;
}
.btn-primary:active,
.btn-secondary:active,
.cookie-btn:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(33,36,58,0.10);
}
.card, .testimonial-card {
  transition: box-shadow 0.25s, transform 0.19s;
}
.card:active, .testimonial-card:active {
  transform: scale(0.985);
}

/* FINAL: ENSURE MINIMUM SPACING BETWEEN SECTIONS AND FLEX CONTAINERS */
section + section {
  margin-top: 18px;
}
.card + .card,
.testimonial-card + .testimonial-card,
.card + .testimonial-card {
  margin-top: 24px;
}

/*--- END --*/
