/* HERO */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: white;
  background-image: url("../img/slider/1920x1080.png");
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
}

.hero-content {
  position: relative;
  max-width: 780px;
}

.hero-logo {
  margin-bottom: 2rem;
  width: 260px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.7),
    0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: white;
  position: relative;
  padding: 0.15rem 0.6rem;
  border-radius: 6px;
  background: rgba(161, 29, 33, 0.85);
  box-shadow: 0 10px 25px rgba(161, 29, 33, 0.6);
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: #eee;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  color: #ccc;
  flex-wrap: wrap;
}

/* ABOUT */
.about-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-feature i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.about-feature strong {
  display: block;
  font-size: 1rem;
}

.about-feature span {
  font-size: 0.95rem;
  color: #555;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #a11d21, #5c0f12);
  color: white;
  padding: 6rem 0;
}

.cta-box {
  max-width: 760px;
  margin: auto;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1.25rem;
}

.cta-box p {
  color: #f2f2f2;
  margin-bottom: 2.75rem;
  font-size: 1.1rem;
}

/* CONTACT */
.contact {
  background: var(--light);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-box {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.contact-box i {
  font-size: 2.3rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.contact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

/* FOOTER */
.site-footer {
  background: #080808;
  color: white;
  padding-top: 5rem;
}

.footer-main {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}

.footer-brand img {
  width: 180px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  max-width: 420px;
  color: #bbb;
  font-size: 1rem;
}

.footer-contact {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact a:hover {
  color: white;
}

/* Footer Navigation Pills */
.footer-nav-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 1.25rem;
  display: block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-pill {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #333;
  color: #ddd;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 4rem;
  padding: 2rem 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* FLOATING BUTTONS */
.mobile-call-button,
.whatsapp-button {
  position: fixed;
  bottom: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.7rem;
  color: white;
  z-index: 30;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.mobile-call-button {
  right: 1.4rem;
  background: var(--primary);
}

.whatsapp-button {
  right: 5.4rem;
  background: #25d366;
}

.mobile-call-button:hover,
.whatsapp-button:hover {
  transform: translateY(-5px) scale(1.08);
}

@media (min-width: 768px) {
  .mobile-call-button {
    display: none;
  }
}


/* IMPRESSUM */
.imprint {
  background: var(--light);
  min-height: 70vh;
}

.imprint-box {
  max-width: 900px;
  margin: auto;
}

.imprint h1 {
  margin-bottom: 3rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.imprint-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .imprint-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.imprint-block {
  background: white;
  padding: 2.25rem;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.imprint-block h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.imprint-block ul {
  list-style: none;
  padding-left: 0;
}

.imprint-block li {
  margin-bottom: 0.5rem;
}

.imprint-actions {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
