:root {
  --green: #7ab51d;
  --green-dark: #5a8a10;
  --blue: #6bb8d6;
  --blue-light: #a8dff0;
  --yellow: #fdd835;
  --dark: #3a3a3a;
  --light: #f5f5f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--light) 50%, var(--green) 50%);
  padding: 2rem;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--light), transparent);
  z-index: 1;
}

.logo {
  margin-bottom: 1.5rem;
  z-index: 2;
}

.logo img,
.logo svg {
  width: 180px;
  height: auto;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  z-index: 2;
}

.hero h1 span {
  display: block;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #666;
  margin-bottom: 2rem;
  z-index: 2;
}

.badge-24-7 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--yellow);
  margin-bottom: 1.5rem;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(253, 216, 53, 0.4);
}

.badge-24-7 .badge-text {
  text-align: center;
  line-height: 1;
}

.badge-24-7 .badge-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  display: block;
}

.badge-24-7 .badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  border-top: 2px solid var(--dark);
  padding-top: 2px;
  display: block;
}

/* ── ERÖFFNUNG BANNER ── */
.opening-banner {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}

.opening-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.opening-date {
  display: inline-block;
  background: #fff;
  color: var(--green);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  padding: 0.3rem 1.5rem;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.opening-banner p {
  font-size: 1.1rem;
  margin-top: 1rem;
  opacity: 0.9;
}

/* ── COUNTDOWN ── */
.countdown-section {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.countdown-section h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 0.3rem;
}

/* ── SPEECH BUBBLE ── */
.bubble {
  display: inline-block;
  background: var(--blue-light);
  color: var(--dark);
  padding: 0.8rem 2rem;
  border-radius: 20px;
  position: relative;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin: 2rem 0;
}

.bubble::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid var(--blue-light);
}

/* ── FEATURES ── */
.features {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.features h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 2.5rem;
  color: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-icon.green { background: rgba(122, 181, 29, 0.15); }
.feature-icon.blue { background: rgba(107, 184, 214, 0.15); }
.feature-icon.yellow { background: rgba(253, 216, 53, 0.2); }

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ── SORTIMENT ── */
.sortiment {
  background: #fff;
  padding: 4rem 1.5rem;
}

.sortiment-inner {
  max-width: 900px;
  margin: 0 auto;
}

.sortiment h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 2.5rem;
}

.sortiment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  list-style: none;
}

.sortiment-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--light);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.sortiment-list li .check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sortiment-list li .check svg {
  width: 14px;
  height: 14px;
}

/* ── LOCATION / ADRESSE ── */
.location {
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.location h2 {
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 2rem;
}

.location-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.location-map {
  width: 100%;
  height: 300px;
  border: 0;
}

.location-info {
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.location-address {
  flex: 1;
  min-width: 200px;
}

.location-address h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--green);
}

.location-address p {
  line-height: 1.8;
  color: #555;
}

.location-hours {
  flex: 1;
  min-width: 200px;
}

.location-hours h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--green);
}

.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--yellow);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-weight: 900;
  font-size: 1.1rem;
}

.location-hours p {
  margin-top: 0.75rem;
  color: #555;
  line-height: 1.6;
}

/* ── NEWSLETTER ── */
.newsletter-section {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.newsletter-inner {
  max-width: 550px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.newsletter-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.newsletter-email-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-email-row input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-email-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.6);
}

.newsletter-email-row input[type="email"]:focus {
  border-color: #fff;
}

.newsletter-checkboxes {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nl-checkbox {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.nl-checkbox input[type="checkbox"] {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
}

.nl-datenschutz {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  opacity: 0.85;
  cursor: pointer;
  text-align: left;
}

.nl-datenschutz input[type="checkbox"] {
  accent-color: var(--green);
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
}

.nl-datenschutz a {
  color: #fff;
  text-decoration: underline;
}

.nl-feedback {
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nl-feedback.success {
  background: rgba(122, 181, 29, 0.2);
  color: #fff;
}

.nl-feedback.error {
  background: rgba(255, 0, 0, 0.2);
  color: #fff;
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-white {
  background: #fff;
  color: var(--green);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  border-color: #fff;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.85rem;
}

footer a {
  color: var(--green);
  text-decoration: none;
}

.footer-operator {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

footer .social-links a:hover {
  background: var(--green);
}

footer .social-links a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
    padding: 3rem 1.5rem;
  }

  .countdown {
    gap: 1rem;
  }

  .location-info {
    flex-direction: column;
  }
}
