/* -----------------------------------------------------------
   RESET & BASELINE
----------------------------------------------------------- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { 
  font-size: 100%;
  background: #FAF9FB;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232544;
  background: #F4F6F8;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #D17A22;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B15A00;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}

:root {
  --primary: #23395B;
  --secondary: #F4F6F8;
  --accent: #D17A22;
  --accent-hover: #B15A00;
  --pastel-blue: #bbe4f2;
  --pastel-lavender: #d7c6f2;
  --pastel-pink: #f8d5e5;
  --pastel-mint: #c8f5de;
  --pastel-yellow: #fff5c3;
  --card-bg: #fff9f3;
  --border-radius: 18px;
  --shadow: 0 6px 22px 0 rgba(35,57,91,0.08);
}

@media (max-width: 768px) {
  html { font-size: 15px; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
}

/* -----------------------------------------------------------
   TYPOGRAPHY
----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

.subheadline {
  font-size: 1.2rem;
  color: #4b576d;
  margin-bottom: 20px;
  font-style: italic;
  letter-spacing: 0.01em;
}

p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232544;
  margin-bottom: 10px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(120deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .section {
    padding: 28px 5px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 6px;
  }
  .content-wrapper { gap: 14px; }
}

/* -----------------------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------------------- */
header {
  background: linear-gradient(90deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  box-shadow: 0 2px 20px 0 rgba(35, 57, 91, 0.04);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px 18px 12px;
  gap: 30px;
}
header img[alt="BücherLicht"] {
  height: 44px;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  flex: 1 1 auto;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 16px;
  color: var(--primary);
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}
/* CTA Button */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  padding: 10px 32px;
  border-radius: 32px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(209, 122, 34, 0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
  cursor: pointer;
  margin-left: 20px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-hover);
  box-shadow: 0 6px 25px 0 rgba(209, 122, 34, 0.16);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

@media (max-width: 900px) {
  header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  nav { width: 100%; }
  .cta-btn { margin-left: 0; margin-top: 10px; }
}

/* Hide the main nav on mobile */
@media (max-width: 768px) {
  header nav,
  header .cta-btn {
    display: none !important;
  }
  header .container {
    padding-bottom: 8px;
    gap: 10px;
  }
  header img[alt="BücherLicht"] { height: 38px; }
}

/* -----------------------------------------------------------
   MOBILE MENU
----------------------------------------------------------- */
.mobile-menu-toggle {
  background: var(--accent);
  color: #fff;
  border: none;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 1202;
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 20px rgba(209, 122, 34, 0.07);
  display: none;
  transition: background 0.16s, box-shadow 0.12s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent-hover);
  box-shadow: 0 6px 25px rgba(209, 122, 34, 0.18);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
/* Overlay menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(100deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
  z-index: 1201;
  width: 100vw;
  height: 100vh;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(.46,.03,.52,.96);
  box-shadow: 0 8px 50px 0 rgba(35,57,91,0.13);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 22px 22px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  top: 18px; right: 22px;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--pastel-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 44px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.1rem;
  padding: 10px 0;
  color: var(--primary);
  border-radius: 10px;
  font-family: 'Merriweather', serif;
  font-weight: 500;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}
@media (min-width: 770px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* -----------------------------------------------------------
   HERO SECTION
----------------------------------------------------------- */
.hero {
  background: linear-gradient(110deg, var(--pastel-yellow), var(--pastel-mint));
  padding: 60px 0 50px 0;
  border-radius: 0 0 50px 50px/0 0 40px 40px;
  min-height: 290px;
  box-shadow: 0 8px 42px 0 rgba(179, 206, 255, 0.13);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
  padding: 0;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.hero .cta-btn {
  font-size: 1.17rem;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero { 
    padding: 36px 0 28px 0; 
    min-height: 160px; 
    margin-bottom: 40px; 
  }
  .hero .content-wrapper { gap: 8px; }
  .hero h1 { font-size: 1.5rem; }
}

/* -----------------------------------------------------------
   FEATURES SECTION
----------------------------------------------------------- */
.features {
  background: linear-gradient(100deg, var(--pastel-blue) 30%, var(--pastel-yellow) 100%);
  border-radius: var(--border-radius);
  padding: 40px 0;
  box-shadow: var(--shadow);
}
.features .container {
  gap: 0;
}
.features .content-wrapper {
  gap: 32px;
}
/* Feature grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 30px 0 18px 0;
}
.feature-grid li {
  flex: 1 1 240px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px 0 rgba(35,57,91,0.065);
  padding: 26px 20px 18px 20px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 175px;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
}
.feature-grid li:hover {
  box-shadow: 0 10px 32px 0 rgba(35,57,91,0.16);
  transform: translateY(-4px) scale(1.015);
}
.feature-grid img {
  height: 38px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.2rem;
  color: var(--accent-hover);
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid li {
    min-width: 0;
    width: 100%;
  }
}
.feature-descriptions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
  margin: 0 0 12px 0;
}

.feature-descriptions li {
  background: var(--pastel-mint);
  color: #2b3563;
  border-radius: 7px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(79,186,164,0.06);
  margin-bottom: 10px;
}

/* -----------------------------------------------------------
   CARDS & LISTS
----------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

/* For process steps, genre-filters, other lists */
.process-steps,
.genre-filters ul,
.recommended-list ul,
.event-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.process-steps li,
.genre-filters li,
.event-list li,
.recommended-list li {
  background: var(--pastel-pink);
  border-radius: 8px;
  padding: 11px 20px;
  min-width: 120px;
  color: var(--primary);
  font-weight: 500;
  transition: background 0.14s;
}

@media (max-width: 768px) {
  .process-steps, .genre-filters ul, .recommended-list ul, .event-list {
    flex-direction: column;
    gap: 12px;
  }
  .process-steps li, .genre-filters li, .event-list li, .recommended-list li {
    min-width: unset;
    padding: 10px 12px;
  }
}

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

/* Content grid for text/image */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

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

/* -----------------------------------------------------------
   ABOUT SECTION
----------------------------------------------------------- */
.about {
  background: linear-gradient(-120deg, var(--pastel-blue) 40%, var(--pastel-lavender) 100%);
  box-shadow: 0 3px 15px 0 rgba(82, 120, 185, 0.08);
  border-radius: var(--border-radius);
  padding: 36px 0;
}

.about .container,
.about .content-wrapper {
  gap: 20px;
}

.about h2, .about h3 {
  margin-bottom: 12px;
}

.about ul li {
  background: var(--pastel-mint);
  color: #365442;
  margin-bottom: 8px;
  border-radius: 7px;
  padding: 8px 16px;
}
@media (max-width: 768px) {
  .about {
    padding: 20px 0;
  }
}

/* -----------------------------------------------------------
   TESTIMONIALS / REVIEWS
----------------------------------------------------------- */
.testimonials {
  background: linear-gradient(115deg, var(--pastel-pink) 30%, var(--pastel-yellow) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 20px rgba(248, 213, 229, 0.12);
  padding: 40px 0;
}

div.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 17px;
  margin-bottom: 20px;
  padding: 20px 24px;
  box-shadow: 0 6px 30px 0 rgba(231, 180, 202, 0.17);
  color: #23395B;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  max-width: 640px;
}
.testimonials .container {
  gap: 0;
}
.testimonial-meta {
  font-size: 1rem;
  color: #466086;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.testimonial-meta img[alt="Stern"] {
  height: 19px;
  vertical-align: middle;
  filter: grayscale(0) brightness(1.05) saturate(1.2);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px 8px;
    max-width: 100%;
  }
}

/* -----------------------------------------------------------
   SERVICES SECTION
----------------------------------------------------------- */
.services {
  background: linear-gradient(100deg, var(--pastel-mint) 40%, var(--pastel-yellow) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 45px 0;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px 0 rgba(209, 122, 34, 0.10);
  padding: 32px 18px 24px 18px;
  flex: 1 1 220px;
  min-width: 185px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.16s, transform 0.14s;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 8px 30px 0 rgba(209,122,34,0.14);
  transform: translateY(-3px) scale(1.03);
}
.service-card h3 {
  color: var(--accent-hover);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.service-card .service-price {
  color: var(--primary);
  background: var(--pastel-yellow);
  border-radius: 8px;
  font-weight: 700;
  padding: 6px 16px;
  margin-top: 7px;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    gap: 14px;
  }
  .service-card {
    width: 100%;
    min-width: 0;
  }
}

/* CTA (call to action) section button */
.cta {
  background: var(--pastel-yellow);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 20px 0 rgba(255, 245, 195, 0.17);
  padding: 32px 0;
}
.cta .cta-btn {
  font-size: 1.17rem;
  margin-top: 12px;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------
   CONTACT PAGE
----------------------------------------------------------- */
.contact {
  background: linear-gradient(110deg, var(--pastel-blue), var(--pastel-mint));
  box-shadow: 0 3px 8px 0 rgba(35,57,91,0.09);
  border-radius: var(--border-radius);
  padding: 36px 0;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 15px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pastel-yellow);
  border-radius: 7px;
  padding: 11px 19px;
  color: var(--primary);
  font-weight: 500;
}
.contact-list img {
  height: 22px;
}
.map-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  background: var(--pastel-mint);
  border-radius: 7px;
  padding: 7px 15px;
  font-size: 0.96rem;
}
.map-hint img { height: 20px; }

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
footer {
  background: linear-gradient(90deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -1px 22px 0 rgba(35,57,91,0.06);
  margin-top: 60px;
  padding: 32px 0 18px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 210px;
}
.footer-brand img {
  height: 43px;
}
.footer-contact h4,
.footer-social h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.footer-contact p, .footer-menu a {
  font-size: 0.96rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
  color: #365442;
}
.footer-contact img {
  height: 20px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-social a img {
  height: 28px;
  filter: grayscale(0.12) brightness(1.17) saturate(1.12);
  margin-right: 7px;
  transition: filter 0.18s;
}
.footer-social a:hover img {
  filter: brightness(0.7) sepia(0.4) hue-rotate(-20deg);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 7px;
}
.footer-menu a {
  color: var(--accent);
  transition: color 0.2s;
}
.footer-menu a:hover {
  color: var(--accent-hover);
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
  }
  .footer-brand, .footer-contact, .footer-social, .footer-menu {
    margin-bottom: 8px;
    min-width: 0;
  }
}

/* -----------------------------------------------------------
   COOKIE CONSENT BANNER
----------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1600;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,250,0.98);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -3px 24px 0 rgba(35,57,91,0.09);
  padding: 26px 18px 18px 18px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: transform 0.35s cubic-bezier(.38,.06,.5,1), opacity 0.18s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1;
  color: #2b3563;
  min-width: 170px;
}
.cookie-banner .banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  margin-right: 0;
  box-shadow: 0 2px 10px 0 rgba(209, 122, 34, 0.09);
  transition: background-color 0.18s, box-shadow 0.17s, transform 0.12s;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--accent-hover);
  box-shadow: 0 8px 20px 0 rgba(209,122,34,0.10);
  transform: translateY(-2px) scale(1.045);
}
.cookie-settings-btn {
  background: var(--pastel-lavender);
  color: var(--primary);
  border: 1.5px solid var(--accent);
  margin-right: 0;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 510px) {
  .cookie-banner,
  .cookie-banner .banner-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}

/* Modal overlay for cookie preferences */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23, 26, 51, 0.31);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(209,122,34,0.19);
  max-width: 410px;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--accent-hover);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #263044;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
}
.cookie-modal-category {
  background: var(--pastel-yellow);
  border-radius: 7px;
  padding: 10px 15px;
  margin-bottom: 9px;
}
.cookie-modal-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.close-modal-btn {
  position: absolute;
  right: 16px; top: 9px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.44rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 1px 9px;
  transition: background 0.12s;
}
.close-modal-btn:hover, .close-modal-btn:focus {
  background: var(--pastel-pink);
}

@media (max-width: 600px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 22px 8px 14px 8px;
    font-size: 0.97rem;
  }
}

/* -----------------------------------------------------------
   UTILITY CLASSES & ANIMATIONS
----------------------------------------------------------- */
.hidden { display: none !important; }
.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}
@media (max-width: 1000px) {
  .container { max-width: 98vw; }
}

/* Button effect */
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.97) translateY(1px);
}

/* Fade-up animation (can be toggled via .animate class in js) */
.fade-up {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.25s, transform 0.28s;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* -----------------------------------------------------------
   FORM STYLES (if any forms added later)
----------------------------------------------------------- */
input, textarea, select {
  border: 1.5px solid var(--pastel-lavender);
  border-radius: 7px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #23395B;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px 0 rgba(187, 228, 242, 0.04);
  transition: border-color 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
}

/* -----------------------------------------------------------
   THANK-YOU PAGE
----------------------------------------------------------- */
.confirmation-message, .next-steps {
  color: var(--accent-hover);
  font-size: 1.14rem;
  margin-bottom: 16px;
}

/* -----------------------------------------------------------
   PRINT STYLES
----------------------------------------------------------- */
@media print {
  * { background: none !important; color: #000 !important; box-shadow: none !important; }
  header, footer, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
  .container, .section, .about, .features, .services, .contact, .card, .testimonial-card { box-shadow: none !important; border: none !important; }
}

/* -----------------------------------------------------------
   END STYLES
----------------------------------------------------------- */