/* ============================== */
/*        CSS RESET & BASE         */
/* ============================== */

/* 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,
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;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F2F5F7;
  color: #232321;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ========================== */
/*       BRAND VARIABLES      */
/* ========================== */
:root {
  --color-primary: #1A2745;
  --color-secondary: #F2F5F7;
  --color-accent: #C7A658;
  --color-vibrant-blue: #32ADE6;
  --color-electric-pink: #FF217C;
  --color-energetic-orange: #FF9C1A;
  --shadow-bold: 0 4px 24px rgba(50,173,230,0.12), 0 1.5px 7px rgba(26,39,69,0.12);
  --shadow-card: 0 2.5px 28px 0 rgba(25,115,210,0.10);
  --font-display: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --border-radius: 18px;
  --transition: 0.18s cubic-bezier(.7,0,.2,1);
}

/* ============================= */
/*          TYPOGRAPHY           */
/* ============================= */
h1, .display-1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  h1, .display-1 {
    font-size: 3.2rem;
  }
}
h2, .display-2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--color-vibrant-blue);
}
@media (min-width: 768px) {
  h2, .display-2 {
    font-size: 2.4rem;
  }
}
h3, .display-3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-electric-pink);
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
}
p, li, td, th, dl, dd {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.66;
  color: #232321;
}
small, .small-text {
  font-size: 0.92rem;
  opacity: 0.8;
}
strong {
  font-weight: 700;
}

/* ============================= */
/*           BUTTONS             */
/* ============================= */
.cta-btn, .cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.85em 2.2em;
  border-radius: var(--border-radius);
  background: var(--color-energetic-orange);
  color: #fff;
  box-shadow: var(--shadow-bold);
  border: 2px solid transparent;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), border var(--transition);
  margin-right: 14px;
  display: inline-block;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta-btn:hover, 
.cta-btn:focus, 
.cookie-accept-btn:hover,
.cookie-settings-btn:hover,
.cta-btn:active {
  background: var(--color-electric-pink);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 6px 28px 0 rgba(255,33,124,0.18);
}
.cookie-reject-btn {
  background: var(--color-vibrant-blue);
  color: #fff;
  border: 2px solid transparent;
  margin-right: 14px;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-energetic-orange);
}
.cookie-settings-btn {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  margin-right: 0;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--color-accent);
  color: #fff;
}

/* ============================= */
/*          LAYOUT & CONTAINER   */
/* ============================= */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  padding: 0;
  /* Space between cards and sections enforced at section/card level */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 20px 0;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  padding: 28px 32px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow .18s cubic-bezier(.4,0,.2,1), transform .18s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 10px 32px 0 rgba(49,139,237,0.18);
  transform: translateY(-6px) scale(1.018);
}
.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;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    padding: 20px 12px;
  }
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 600px) {
  .section, main section {
    margin-bottom: 36px;
    padding: 24px 0 24px 0;
  }
}

/* Occasions grid in anlaesse.html */
.occasion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.occasion-item {
  flex: 1 1 300px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 5px solid var(--color-accent);
}
.occasion-item:hover {
  box-shadow: 0 8px 24px 0 rgba(255,156,26,0.17);
  transform: translateY(-4px) scale(1.014);
  border-left: 5px solid var(--color-electric-pink);
}
@media (max-width: 800px) {
  .occasion-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* Contact details (kontakt) */
.contact-details {
  margin-bottom: 28px;
  padding: 20px 0 0 0;
  font-size: 1.11rem;
}
.map-placeholder {
  display: flex;
  align-items: center;
  background: #e1e8ef;
  color: #666;
  padding: 22px 16px;
  border-radius: 12px;
  font-style: italic;
}

/* ================================ */
/*         NAVIGATION               */
/* ================================ */
header {
  background: #fff;
  padding: 0;
  width: 100%;
  z-index: 20;
  border-bottom: 1.8px solid var(--color-vibrant-blue);
  box-shadow: 0 1.5px 10px 0 rgba(50,173,230,0.045);
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px 20px 12px 20px;
  max-width: 1220px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--color-primary);
  padding: 8px 10px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-electric-pink);
  background: #fbeaee;
}
.cta-btn {
  margin-left: 16px;
  margin-right: 0;
}

@media (max-width: 970px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 8px 8px 8px;
    gap: 10px;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  header .cta-btn {
    display: none;
  }
}

/* ================ MOBILE BURGER MENU ================ */
.mobile-menu-toggle {
  display: inline-flex;
  position: fixed;
  top: 20px;
  right: 25px;
  width: 48px;
  height: 48px;
  z-index: 103;
  background: var(--color-energetic-orange);
  color: #fff;
  font-size: 2.1em;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(255,156,26,0.12);
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.15s, box-shadow 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-electric-pink);
  box-shadow: 0 8px 22px 0 rgba(255,33,124,0.12);
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(25,39,69,0.98);
  color: #fff;
  z-index: 106;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.7,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.1rem;
  background: none;
  color: #fff;
  border: none;
  z-index: 120;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:hover {
  color: var(--color-energetic-orange);
}
.mobile-nav {
  margin: 84px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  padding: 14px 60px;
  border-radius: 10px;
  transition: background .15s, color .15s;
  background: none;
  display: block;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-vibrant-blue);
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* ================================ */
/*            HERO SECTION          */
/* ================================ */
.hero {
  position: relative;
  background: linear-gradient(120deg, #ffffff 44%, #32ADE6 110%);
  border-bottom: 3px solid var(--color-energetic-orange);
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 285px;
  justify-content: center;
}
.hero h1 {
  color: var(--color-electric-pink);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -2px;
}
.hero p {
  margin-top: 18px;
  margin-bottom: 28px;
  color: #232321;
  font-size: 1.18rem;
  max-width: 560px;
  font-weight: 500;
}
@media (max-width: 769px) {
  .hero .container {
    flex-direction: column;
    gap: 16px;
    min-height: auto;
    padding: 0 4px;
  }
  .hero h1 { font-size: 1.8rem; }
}

/* ================================ */
/*             LISTS, TABLES        */
/* ================================ */
ul {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}
ul li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 12px;
  font-size: 1.09rem;
  color: var(--color-primary);
}
ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  background: var(--color-electric-pink);
  border-radius: 50%;
  opacity: 0.78;
  transition: background .19s;
}
.features ul li::before {
  background: var(--color-energetic-orange);
}
ul li strong {
  color: var(--color-vibrant-blue);
}
table {
  width: 100%;
  margin: 24px 0 32px 0;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 1px 8px 0 rgba(50,173,230,.07);
  border-radius: 15px;
  overflow: hidden;
}
table thead tr {
  background: var(--color-primary);
}
table th, table td {
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: left;
  padding: 15px 20px;
  border-bottom: 1px solid #d2dbe9;
}
table th {
  color: #fff;
  letter-spacing: 1px;
  font-weight: 800;
  text-transform: uppercase;
}
table tr:last-child td {
  border-bottom: none;
}
table tbody tr:hover {
  background-color: #f8fafc;
  transition: background 0.21s;
}

/* ================================ */
/*         SERVICE LISTS            */
/* ================================ */
.service-list, .feature-list, .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.service-item, .feature-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 22px 0 rgba(199,166,88,0.07);
  padding: 22px 18px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow .18s, transform .17s;
  border-left: 6px solid var(--color-accent);
}
.service-item h3 {
  color: var(--color-vibrant-blue);
  font-style: normal;
}
.service-item:hover, .feature-item:hover {
  box-shadow: 0 17px 34px 0 rgba(50,173,230,.18);
  transform: translateY(-6px) scale(1.015);
  border-left-color: var(--color-electric-pink);
}
.service-item span {
  color: var(--color-energetic-orange);
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.04rem;
}

@media (max-width: 900px) {
  .service-list, .feature-list, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .service-item, .feature-item, .card {
    min-width: unset;
    padding: 18px 10px 14px 14px;
  }
}

/* ========================= */
/*        TESTIMONIALS      */
/* ========================= */
.testimonials, .testimonial-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 24px 0 rgba(50,173,230,0.09);
  padding: 48px 20px 36px 20px;
}
.testimonials h2, .testimonial-section h2 {
  text-align: center;
  margin-bottom: 34px;
  color: var(--color-electric-pink);
}
.testimonial-card {
  background: #F7FAFE;
  border-radius: 17px;
  box-shadow: 0 3px 18px 0 rgba(26,39,69,.07);
  border-left: 6px solid var(--color-energetic-orange);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  transition: box-shadow .16s, border-color .14s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 10px 22px 0 rgba(50,173,230,0.15);
  border-left-color: var(--color-electric-pink);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #21242A;
  font-style: italic;
  font-weight: 500;
  margin-right: 14px;
}
.testimonial-card span {
  font-size: 1.02rem;
  color: var(--color-primary);
  font-weight: 700;
}

/* ========================= */
/*           CTA             */
/* ========================= */
.cta {
  background: var(--color-electric-pink);
  padding: 52px 8px;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 38px 0 rgba(255,33,124,.08);
  text-align: center;
  margin-bottom: 44px;
}
.cta h2 {
  color: #fff;
  font-weight: 900;
  margin-bottom: 14px;
}
.cta .cta-btn {
  background: #fff;
  color: var(--color-electric-pink);
  border: 2px solid var(--color-electric-pink);
}
.cta .cta-btn:hover {
  background: var(--color-energetic-orange);
  color: #fff;
  border-color: var(--color-accent);
}

/* ========================= */
/*          FOOTER           */
/* ========================= */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 48px 0 18px 0;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  margin-top: 60px;
}
.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
  border-bottom: 1.5px solid #425989;
  padding-bottom: 22px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  max-width: 800px;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 6px 0;
  letter-spacing: 1px;
  opacity: 0.84;
  transition: color .16s, opacity .13s, border-bottom .12s;
  border-bottom: 2px solid transparent;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-energetic-orange);
  opacity: 1;
  border-bottom: 2px solid var(--color-energetic-orange);
}
.footer-social img {
  height: 46px;
  width: auto;
  margin-left: 6px;
}
.small-text {
  opacity: .69;
  font-size: 0.97rem;
  letter-spacing: 1px;
  margin-top: 16px;
  color: #ddd;
  text-align: left;
  word-break: break-word;
}
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav {
    gap: 13px;
  }
}

/* ========================= */
/*        FAQ layout         */
/* ========================= */
.faq dl {
  width: 100%;
}
.faq dt {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.14rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
  letter-spacing: .4px;
}
.faq dd {
  margin-left: 10px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: #292a2e;
}
.cta-faq {
  background: var(--color-vibrant-blue);
  color: #fff;
  padding: 22px 18px;
  border-radius: 15px;
  margin-top: 30px;
}
.cta-faq a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  letter-spacing: 1.2px;
}
.cta-faq a:hover {
  color: var(--color-energetic-orange);
}

/* ========================= */
/*        LEGAL PAGES        */
/* ========================= */
.legal {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 38px 22px;
  margin-bottom: 48px;
}
.legal h1 {
  color: var(--color-vibrant-blue);
}
.legal h2 {
  color: var(--color-electric-pink);
  margin-top: 28px;
  margin-bottom: 9px;
}
.legal ul li {
  color: var(--color-primary);
  font-size: 1.02rem;
}

/* ========================= */
/*      THANK YOU            */
/* ========================= */
.message {
  background: linear-gradient(100deg, #13bbdf 45%, #F2F5F7 109%);
  border-radius: var(--border-radius);
  box-shadow: 0 12px 40px 0 rgba(50,173,230,.10);
  margin-bottom: 48px;
  padding: 44px 11px 40px 11px;
  text-align: center;
}
.message .cta-btn {
  margin-top: 26px;
}

/* ========================= */
/*     COOKIE CONSENT        */
/* ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 140;
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 -3px 24px 0 rgba(28,152,232,0.13);
  padding: 24px 20px 24px 28px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 3px solid var(--color-accent);
  transition: transform .38s cubic-bezier(.7,0,.2,1);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  font-size: 1.07rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 9px 18px 12px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
}

/* Cookie Modal Styles */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(26,39,69,0.76);
  z-index: 160;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #28293d;
  border-radius: 19px;
  max-width: 420px;
  width: 90vw;
  padding: 32px 24px 22px 24px;
  box-shadow: 0 8px 64px 0 rgba(25,39,69,0.20);
  position: relative;
  animation: modalpop .45s cubic-bezier(.7,0,.2,1);
}
@keyframes modalpop {
  from {transform: translateY(65px) scale(.93); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--color-vibrant-blue);
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  justify-content: space-between;
}
.cookie-modal .category-row label {
  font-weight: 700;
  margin-right: 8px;
  flex: 1 1 auto;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  position: relative;
  width: 42px;
  height: 22px;
  border-radius: 14px;
  background: #e5e8f3;
  transition: background .14s;
  outline: none;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--color-energetic-orange);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px 0 rgba(199,166,88,0.11);
  transition: left .19s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 22px;
  background: #fff;
}
.cookie-modal .modal-actions {
  margin-top: 24px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 20px; top: 20px;
  background: none;
  border: none;
  color: var(--color-electric-pink);
  font-size: 1.7rem;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-primary);
}

/* ========================= */
/*           FORMS           */
/* ========================= */
input, textarea {
  padding: 11px 16px;
  border: 1.5px solid #d5dee8;
  border-radius: 10px;
  outline: none;
  background: #fff;
  font-family: var(--font-body);
  font-size: 1.06rem;
  transition: border-color .14s;
}
input:focus, textarea:focus {
  border-color: var(--color-energetic-orange);
}

/* SPACING FOR ALL CARDS AND CONTAINERS */
.card, .service-item, .feature-item, .occasion-item, .testimonial-card {
  margin-bottom: 20px;
}

/* =========== Scrollbar ============= */
::-webkit-scrollbar {
  width: 9px;
  background: #e8e9ed;
}
::-webkit-scrollbar-thumb {
  background: var(--color-electric-pink);
  border-radius: 4px;
}

/* Select/copy feedback for .cta-btn (micro interaction) */
.cta-btn:active {
  animation: vibrabtn .11s linear both;
}
@keyframes vibrabtn {
  0% { transform: scale(1) rotate(-1deg); }
  50% { transform: scale(.96) rotate(2.5deg); }
  100% { transform: scale(1) rotate(0); }
}

/* ======= Utility / Misc ======= */
.hide { display: none !important; }
.text-center {text-align: center;}

@media (max-width: 500px) {
  .cookie-banner { font-size: 0.93rem; }
}

/* Prevent overlap on all cards/sections */
.section > * + *,
.content-wrapper > * + * {
  margin-top: 24px;
}

/* Ensure no elements overlap, spacing enforced */
.card + .card, .testimonial-card + .testimonial-card, .service-item + .service-item, .feature-item + .feature-item {
  margin-top: 20px;
}

/* ========== Accessibility =========== */
:focus-visible {
  outline: 2.2px solid var(--color-electric-pink);
  outline-offset: 2px;
}

/* =================== VIBRANT EFFECTS =================== */
.cta-btn, .cookie-accept-btn, .cookie-reject-btn {
  box-shadow:
    0 8px 34px 0 rgba(50,173,230,.16),
    0 1.5px 7px rgba(26,39,69,0.11);
}
.cta-btn:focus,
.cta-btn:hover {
  box-shadow:
    0 13px 46px 0 rgba(255,33,124,.17),
    0 1.5px 7px rgba(26,39,69,0.11);
}
/* Vibrant Electric underline on nav hover */
.main-nav a::after, .footer-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: var(--color-electric-pink);
  border-radius: 2px;
  transition: width 0.18s cubic-bezier(.52,.07,.92,.47);
  margin-top: 2px;
}
.main-nav a:hover::after, .footer-nav a:hover::after,
.main-nav a:focus::after, .footer-nav a:focus::after {
  width: 100%;
}

/* Hide scroll when mobile nav/menu/modal is open  (expected with JS but reinforce here) */
body.mobile-menu-open, body.cookie-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}
/* ================================ */
/*      END OF CSS                  */
/* ================================ */
