/* ========== RESET & BASE ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: color 0.4s ease, background-color 0.4s ease, font-family 0.4s ease;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-solid);
  background-image: var(--bg-image, none);
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color .18s ease, color .18s ease;

}

a {
  text-decoration: none;
  color: inherit;
}



/* ========== HEADER ========== */
header {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
}

nav {
  display: flex;
  gap: 2rem;
}

.header-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.login-btn {
  border: 1px solid rgba(0,0,0,0.2);
  border-color: var(--accent-color);
  color: var(--accent-color);
  border-radius: 1rem;
  font-size: 1rem;
  background: none;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
}

.login-btn:hover {
  background: var(--accent-color, #007BFF);
  color: white;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.lang-btn img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

.link-hover:hover {
  color: var(--link-hover, #007BFF);
}

/* ========== HERO SECTION ========== */
.hero {
  margin-top: 5rem;
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 100%;
  min-height: 50rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes top and bottom content apart */
  box-sizing: border-box;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--subtext-color, #555);
}

.browser-frame {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: var(--browser-bg, #f5f5f5);
  position: relative;
}

.browser-bar {
  height: 35px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f56;
  cursor: pointer;
}
.browser-dot:nth-child(2) { background: #ffbd2e; }
.browser-dot:nth-child(3) { background: #27c93f; }

.browser-content img {
  width: 100%;
  display: block;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.style-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.style-btn {
  border: 1px solid rgba(0,0,0,0.2);
  background: none;
  padding: 0.5rem 1.2rem;
  border-radius: 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--accent-color, #007BFF);
  border-color: var(--accent-color, #007BFF);
}

.style-btn:hover {
  background: var(--accent-color, #007BFF);
  color: white;
}

.style-btn.active {
  background: var(--accent-color, #007BFF);
  color: white;
  border-color: var(--accent-color, #007BFF);
}



/* -------- BUBBLES ----------*/

/* Grundpositionierung */
.hero-bottom { position: relative; overflow: visible; }

/* Browser frame soll sichtbar vorne sein */
.browser-frame { position: relative; z-index: 30; }

/* Blasencontainer (hinter dem Frame) */
.playful-bubbles {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 120%;
  pointer-events: none; /* keine Interaktion */
  z-index: 20; /* hinter browser-frame (30) aber vor Hintergrund */
  overflow: visible;
}

/* Eine einzelne Blase */
.playful-bubble {
  position: absolute;
  left: 50%; /* Ausgangspunkt in der Mitte des Containers */
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
  mix-blend-mode: screen; /* subtiler Look */
  background: radial-gradient(circle at 30% 30%, var(--accent-color), var(--accent-color));
  /* dynamische Variablen */
  width: var(--size, 48px);
  height: var(--size, 48px);
  transition: opacity 300ms linear;
}

/* In-Animation: aus der Mitte nach Außen (Benutzen wir via Klassenzuordnung) */
.playful-bubble.show {
  animation: bubble-in var(--in-duration, 700ms) cubic-bezier(.2,.9,.3,1) var(--delay, 0ms) forwards,
             bubble-float var(--float-duration, 3000ms) linear calc(var(--delay, 0ms) + var(--in-duration, 700ms)) infinite;
  opacity: 1;
}

/* Out-Animation (wenn wir entfernen) */
.playful-bubble.hiding {
  animation: bubble-out var(--out-duration, 500ms) ease-in forwards;
}

/* Keyframes */
/* bubble-in: von Mitte (scale 0) zur Ziel-Translation und scale 1 */
@keyframes bubble-in {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  60% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.09); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1); opacity: 1; }
}

/* bubble-float: subtile auf/ab Bewegung */
@keyframes bubble-float {
  0%   { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) translateY(0) scale(1); }
  50%  { transform: translate(calc(-50% + var(--x)), calc(-50% + calc(var(--y) - 12px))) translateY(-8px) scale(1.02); }
  100% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) translateY(0) scale(1); }
}

/* bubble-out: verschwindet leicht zurück in die Mitte (oder kurz fade) */
@keyframes bubble-out {
  0% { opacity: 1; transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
}


/* --- SEKTION: ANGEBOT VORWORT--- */
.offer {
  width: 100%;
  background: var(--pricing-bg, #007BFF);


  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 6rem 4rem;

}

  .timeline-title {
    text-align: center;
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    max-width: 900px;
    margin-bottom: 1rem;
  }

  .timeline-quote {
    font-size: 1.4rem;
    text-align: end;
    font-family: "Playfair Display", sans-serif;
  }


/* --- SEKTION: ANGEBOT --- */

  .offer-timeline {
    background: var(--bg-color);
    padding: 4rem 2rem;
    width: 100%;
  }

 .container {
    max-width: 900px;
    margin: 0 auto;
  }

  .timeline {
    position: relative;
    margin-left: 40px;
  }


    .timeline.active::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: 50px;
    width: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    opacity: 0;
    animation: growLine 1s ease forwards;
    animation-delay: 0.6s;
  }

  @keyframes growLine {
    0% {
      height: 0;
      opacity: 0;
    }
    5% {
      opacity: 1; /* Linie erscheint ganz sanft */
    }
    100% {
      height: calc(100% - 140px);
      opacity: 1;
    }
  }

  .timeline-item {
    opacity: 0;
  }

  .timeline.active .timeline-item {
    position: relative;
    display: flex;
    align-items: center; /* ICON JETZT ZENTRIERT */
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
  }

  .timeline-item:last-child {
    margin-bottom: 0;
  }

  .timeline.active .timeline-item:nth-child(2) { animation-delay: 0.2s; }
  .timeline.active .timeline-item:nth-child(3) { animation-delay: 0.4s; }
  .timeline.active .timeline-item:nth-child(4) { animation-delay: 0.6s; }

  .timeline-icon {
    background: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    margin-right: 1.5rem;
    z-index: 2;
  }

  .timeline-content {
    background: var(--pricing-bg);
    border: 1px solid var(--card-border);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }

  .timeline-content h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .timeline-content p {
    color: var(--subtext-color);
    line-height: 1.6;
  }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  /* MOBILE */
  @media (max-width: 700px) {
    .timeline {
      margin-left: 0;
    }

    .timeline.active::before {
      left: 50%;
      transform: translateX(-50%);
    }

    .timeline-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .timeline-icon {
      margin: 0 auto 1rem auto;
    }

    .timeline-content {
      width: 100%;
    }
  }




/* ------- PILLARS -----------*/
.pricing {
  text-align: center;
  padding: 4rem 2rem;
  width: 100%;
  background: var(--pricing-bg, #007BFF);
}

.pricing-title {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* stacks on smaller screens */
}

.pricing-card {
  background: var(--pricing-bg, #007BFF);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 300px;
  flex: 1 1 250px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
  border: 1px solid var(--card-border, #007BFF);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color, #007BFF);
}

.price {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
}

.price span {
  font-size: 1rem;
  color: #6b7280;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
}

.pricing-card li {
  margin: 0.5rem 0;
}

.btn {
  background: var(--accent-color, #007BFF);
  color: white;
  border: solid;
  border-color: rgba(255, 255, 255, 0);
  border-width: 2px;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: rgba(255, 255, 255, 0);
  border: solid;
  border-width: 2px;
  border-color: var(--accent-color, #007BFF);
  color: var(--accent-color, #007BFF);
}

/* ========== KONTAKT ========== */

.contact {
  background: var(--bg-color);
  padding: 4rem 0rem;
  text-align: center;
  width: 100%;
}

.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact h3 {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 40px;
  color: var(--subtext-color);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: var(--accent-color);
}

.form-group textarea {
  resize: vertical; /* nur vertikal skalierbar */
}

.contact .btn {
  display: block;
  border: 1px solid rgba(0,0,0,0.2);
  border-color: var(--accent-color);
  color: var(--accent-color);
  border-radius: 1rem;
  font-size: 1rem;
  background: none;
  padding: 0.5rem 1.2rem;
  cursor: pointer;
  margin: 0 auto;
  width: fit-content;
}

.contact .btn:hover {
  background: var(--accent-color, #007BFF);
  color: white;
}






/* ========== FOOTER ========== */

.footer {
  height: 8rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--accent-color, #007BFF);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--browser-bg, #007BFF);
}

.footer-description p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--subtext-color, #007BFF);
}


/* ========== STYLE THEMES ========== */
body.playful {
  --bg-solid: #fdd88e;
  --bg-image: none;
  --bg-color: #fdd88e;
  --text-color: #222;
  --subtext-color: #444;
  --accent-color: #ff4a71;
  --header-bg: rgba(255, 248, 242, 0.9);
  --browser-bg: #ff7b72;
  --pricing-bg: #ffffff;
  --card-border: #a1a1a16b;
  --link-hover: #ff4a71;

  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body.modern {
  --bg-color: none;
  --bg-image: linear-gradient(145deg, #fafafa 0%, #f3f4f6 100%);
  --bg-color: linear-gradient(145deg, #fafafa 0%, #f3f4f6 100%);
  --text-color: #1a1a1a;
  --subtext-color: #6b7280;
  --accent-color: #3b82f6;
  --header-bg: #ffffffcc;
  --browser-bg: #f9fafb;
  --pricing-bg: #f0f0f5;
  --card-border: #e5e7eb;
  --link-hover: #2563eb;
  font-family: 'Inter', sans-serif;
}

body.stylish {
  --bg-solid: #e6d8be;
  --bg-image: none;
  --bg-color: #e6d8be;
  --text-color: #4d2a11;
  --subtext-color: #a07150;
  --accent-color: #a07150;
  --header-bg: rgba(20, 20, 20, 0.041);
  --browser-bg: #c69572;
  --pricing-bg: #ffffff;
  --card-border: #a07150;
  --link-hover: #a07150;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ========== DARK MODE OVERLAY ========== */

/* Dark mode overrides for all themes */
body.dark-mode.playful {
  /* Backgrounds */
  --bg-solid: #121010;        /* Darker main background */
  --bg-image: none;            /* Keep no background image */
  --bg-color: #181414;         /* Slightly lighter than main for panels */
  --header-bg: rgba(18, 18, 18, 0.95); /* More opaque header */
  --browser-bg: #1e1c1a;      /* Darker browser panel */
  --pricing-bg: #1c1a18;      /* Darker pricing cards */

  /* Text */
  --text-color: #f5e9d2;      /* Keep readable light text */
  --subtext-color: #d8d2b8;   /* Slightly dimmer than main text */

  /* Borders & links */
  --card-border: #3a3530;      /* Darker, subtle borders */
  --link-hover: #ff7b72;       /* Keep your accent color consistent */
  
  /* Accent */
  --accent-color: #ff7b72;     /* No change */
}

body.dark-mode.modern {
  --bg-solid: #01040d;
  --bg-image: linear-gradient(145deg, #01040d 0%, #0b1430 100%);
  --bg-color: linear-gradient(145deg, #050B1D 0%, #0A163A 100%);
  --text-color: #E5E8F0;
  --subtext-color: #A0A8C0;
  --accent-color: #5B8CFF;
  --header-bg: #0b132b99;
  --browser-bg: #f1f1f1;
  --pricing-bg: #0F1735;
  --card-border: #bbbbbb;
  --link-hover: #5B8CFF;
}

body.dark-mode.stylish {
  /* Backgrounds */
  --bg-solid: #14100c;        /* Dark, elegant base */
  --bg-image: none;
  --bg-color: #14100c;        /* Slightly lighter for panels */
  --header-bg: rgba(30, 30, 30, 0.85); /* Slightly more opaque, classy header */
  --browser-bg: #4a382d;      /* Rich, dark panel */
  --pricing-bg: #332a22;      /* Dark and subtle for pricing cards */

  /* Text */
  --text-color: #f6e7d7;      /* Keep soft, classy light text */
  --subtext-color: #bfa17a;   /* Dimmer, elegant secondary text */

  /* Borders & links */
  --card-border: #bfa17a;     /* Subtle, stylish border */
  --link-hover: #c5a582;      /* Keep your accent color consistent */

  /* Accent */
  --accent-color: #c5a582;    /* No change, elegant highlight */
}

/* Dark mode toggle button */
.darkmode-toggle {
  margin-left: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.darkmode-toggle svg {
  transition: transform 0.3s ease, color 0.3s ease;
  color: var(--text-color);
}

.darkmode-toggle.active svg {
  color: #ffffff;
  transform: rotate(360deg);
}





/* Popup container */
#popup-notification {
    position: fixed;
    top: 5.5rem;                 /* distance below your header */
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    padding: 15px 20px;
    border-radius: 16px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: white;
    font-size: 16px;

    animation: popupFadeIn 0.3s ease-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Success & Error colors */
.popup-success {
    background-color: #38a169f4;  /* green */
}

.popup-error {
    background-color: #e53e3ef1;  /* red */
}

/* Close button */
.popup-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Fade-in animation */
@keyframes popupFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Fade-out class added by JS */
.popup-hide {
    animation: popupFadeOut 0.4s forwards;
}

@keyframes popupFadeOut {
    from { opacity: 1; transform: translateX(-50%) translateY(0); }
    to   { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}







/* COOKIES */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  border-top: 1px solid #cccccc5f;
  padding: 30px;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
  font-size: 1.1rem;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner-buttons button {
  margin-right: 10px;
  padding: 8px 16px;
  cursor: pointer;
  border: 0;
}

#accept-all {
  border-radius: 16px;
  border-width: 1px !important;
  border: solid;
}

#accept-all:hover {
  border-color: var(--accent-color);
}

#accept-necessary {
  border-radius: 16px;
  border-width: 1px !important;
  border: solid;
}

#accept-necessary:hover {
  border-color: var(--accent-color);
}

#reset-cookie-settings {
  width: 300px;
  font-size: 1rem;
  border-radius: 16px;
  border-color: var(--accent-color);
  color: var(--accent-color);
  border-width: 1px;
  padding: 4px 8px;
  background-color: rgba(0, 0, 0, 0);
}

#reset-cookie-settings:hover {
  background-color: var(--accent-color);
  color: white;
  cursor: pointer;
}








/* ========== RESPONSIVE DESIGN (PHONE OPTIMIZATION) ========== */

/* Portrait phones (up to ~600px width) */
@media (max-width: 600px) {

  /* General adjustments */
  body {
    padding-top: 4rem; /* ensure header space */
    font-size: 0.95rem;
  }

  header {
    padding: 0.5rem 1rem;
    height: auto;
  }

  .logo {
    font-size: 1.2rem;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
  }

  .login-btn {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }

  .darkmode-toggle {
    margin-left: 0px;
    margin-right: 8px;
    width: 24px;
    height: 24px;
  }

  /* HERO SECTION */
  .hero {
    padding: 1.5rem 1rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  .browser-frame {
    width: 100%;
    max-width: 95%;
  }

  .style-buttons {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    text-align: center;
  }

  .style-btn {
    width: 90%;
    max-width: 260px;
    margin: 0 auto;
  }

  .playful-bubbles {
    display:none; /* derzeit versteckt, da buggy */
    z-index: -20; /* hinter browserelementen versteckt */
    overflow: hidden; /* Seite soll nicht erweitert werden */
  }

  /* OFFER & TIMELINE */


  /* PRICING SECTION */
  .pricing {
    padding: 3rem 1rem;
  }

  .pricing-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .pricing-card {
    width: 100%;
    max-width: 320px;
    padding: 1.5rem;
  }

  .price {
    font-size: 1.5rem;
  }

  /* KONTAKT */
  .form-group label {
    display: block;
    margin: auto;
    margin-bottom: 8px;
    width: 90%;
    font-weight: 600;
  }

  .form-group input,
  .form-group textarea {
    display: block;
    width: 90%;
    margin: auto;
    padding: 1rem;
  }

  /* FOOTER */
  .footer {
    padding: 2rem 1rem;
    height: auto;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }

  .footer-description p {
    font-size: 0.8rem;
  }

  #handschrift {
    display:none;
  }

.cookie-banner {
  font-size: 1rem;
}

.cookie-banner-content {
  max-width: 1200px;
  display: block;
  padding: 8px 16px;
}

.cookie-banner-buttons button {
  margin: auto;
  cursor: pointer;
  margin-top: 8px;
}

#reset-cookie-settings {
  margin: auto;
  margin-bottom: 1rem;
}

}

/* Landscape phones (wide but short screens, like 568px height or less) */
@media (max-height: 600px) and (orientation: landscape) {
  header {
    padding: 0.5rem 1rem;
    height: auto;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    min-height: 90vh;
    padding: 1rem;
  }

  .hero-top {
    flex: 1;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .browser-frame {
    max-width: 60%;
  }

  .style-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .playful-bubbles {
    display:none; /* derzeit versteckt, da buggy */
    z-index: -20; /* hinter browserelementen versteckt */
    overflow: hidden; /* Seite soll nicht erweitert werden */
  }

    .timeline.active::before {
    top: 65px;
  }

  .pricing-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
  }

  .pricing-card {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }

  .cookie-banner {
    font-size: 1rem;
  }
}
