/* ALL IN ONE AW - Design wie im Index: dunkel, gold, hochwertig */

:root {
  --dark: #071820;
  --dark-2: #0d2731;
  --dark-3: #102f3a;
  --gold: #f2b63d;
  --gold-dark: #c99020;
  --cream: #f7f4ed;
  --white: #ffffff;
  --text: #10232d;
  --muted: #5f6f75;
  --border: #e4e0d8;
  --shadow: 0 14px 34px rgba(0,0,0,.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-padding {
  padding: 80px 0;
}

/* HEADER / HERO */
.hero {
  position: relative;
  min-height: 720px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7,24,32,.92) 0%, rgba(7,24,32,.78) 48%, rgba(7,24,32,.28) 100%),
    url("bilder/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
  linear-gradient(
    rgba(0,0,0,0.18),
    rgba(0,0,0,0.18)
  );
  pointer-events: none;
}

/* NAVIGATION */
.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}

.logo {
  width: 112px;
  height: auto;
  background: rgba(255,255,255,.94);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
/* NAVIGATION */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 99px;
  transition: .25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 105px 0 120px;
}

.hero-kicker,
.section-title span,
.about-text span {
  display: inline-block;

  color: #1f1f1f;

  background: rgba(255,255,255,0.55);

  padding: 6px 14px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  margin-bottom: 16px;

  text-shadow:
    1px 1px 3px rgba(255,255,255,0.35);
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 4px 22px rgba(0,0,0,.35);
}

.hero p {
  max-width: 720px;
  margin: 0 0 34px;
  font-size: 22px;
  line-height: 1.55;

  color: #111111;
  font-weight: 900;

  background: rgba(255, 255, 255, 0.72);
  padding: 16px 22px;
  border-radius: 14px;

  text-shadow: none;
}
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 9px;
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 900;
  transition: .22s ease;
}

.btn-primary {
  background: var(--gold);
  color: #1b1b1b;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,.75);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 20px rgba(37,211,102,.22);
}

/* USP BAR */
.usp-bar {
  background: var(--dark);
  color: var(--white);
  padding: 26px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.usp-item {
  border-left: 4px solid var(--gold);
  padding-left: 16px;
}

.usp-item span {
  display: none;
}

.usp-item strong {
  display: block;
  font-size: 18px;
  color: var(--white);
}

.usp-item p {
  margin: 2px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}

/* SECTION TITLES */
.section-title {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-title h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.14;
  font-weight: 900;
  color: var(--text);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* SERVICES */
.services-preview {
  background: var(--cream);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--text);
}

.service-content p {
  margin: 0;
  color: var(--muted);
}

/* ABOUT */
.dark-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}

.about-text h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.12;
  color: var(--white);
  font-weight: 900;
}

.about-text p {
  color: rgba(255,255,255,.82);
  font-size: 18px;
  margin: 0 0 18px;
}

/* PROJECTS */
.projects-preview {
  background: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-height: 280px;
  background: var(--dark);
}

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .35s ease;
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(
    180deg,
    rgba(7,24,32,0) 20%,
    rgba(7,24,32,.88) 100%
  );
  color: #fff;
}

.project-overlay h3 {
  margin: 0 0 6px;
  font-size: 24px;
  color: #fff;
}

.project-overlay p {
  margin: 0;
  color: rgba(255,255,255,.8);
}

.project-card:hover img {
  transform: scale(1.08);
}

/* CTA */
.contact-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      rgba(7,24,32,.96),
      rgba(13,39,49,.92)),
    url("bilder/hero.jpg") center/cover no-repeat;

  padding: 110px 0;
  color: var(--white);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(242,182,61,.22),
      transparent 34%);
}

.contact-box {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.contact-left span {
  display: inline-block;
  margin-bottom: 16px;

  color: var(--gold);

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-left h2 {
  margin: 0 0 22px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;

  color: var(--white);
  font-weight: 900;
}

.contact-left p {
  max-width: 560px;

  font-size: 20px;
  line-height: 1.7;

  color: rgba(255,255,255,.82);
}

.contact-card {
  background: rgba(255,255,255,.06);

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 24px;

  padding: 42px;

  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}

.contact-card h3 {
  margin: 0 0 28px;

  color: var(--white);

  font-size: 28px;
}

.contact-item {
  display: flex;
  align-items: center;

  margin-bottom: 18px;

  padding: 18px 22px;

  border-radius: 14px;

  background: rgba(255,255,255,.05);

  color: var(--white);

  text-decoration: none;

  font-size: 18px;
  font-weight: 700;

  transition: .25s ease;
}

.contact-item:hover {
  transform: translateY(-3px);

  background: rgba(255,255,255,.12);
}

.whatsapp-big {
  margin-top: 28px;

  justify-content: center;

  background: #25D366;

  color: #fff;

  font-size: 20px;
  font-weight: 900;

  box-shadow: 0 12px 24px rgba(37,211,102,.28);
}

.whatsapp-big:hover {
  background: #1ebe5d;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.contact-box h2 {
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--white);
}

.contact-box p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

/* FOOTER */
.footer {
  background: #050f14;
  color: rgba(255,255,255,.78);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 46px;
}

.footer-logo {
  width: 120px;
  background: rgba(255,255,255,.94);
  border-radius: 16px;
  padding: 8px;
  margin-bottom: 18px;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  margin: 0 0 16px;
}

.footer h3 {
  font-size: 24px;
}

.footer h4 {
  font-size: 18px;
  color: var(--gold);
}

.footer p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.footer a {
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  margin-bottom: 10px;
  transition: .2s ease;
}

.footer a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-whatsapp {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #25D366;
  color: #ffffff !important;
  font-weight: 900;
}

.footer-whatsapp:hover {
  background: #1ebe5d;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 46px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.footer-bottom a {
  margin: 0;
}
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right,
      rgba(242,182,61,.22),
      transparent 34%);
}

.contact-box {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.contact-left span {
  display: inline-block;
  margin-bottom: 16px;

  color: var(--gold);

  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-left h2 {
  margin: 0 0 22px;

  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;

  color: var(--white);
  font-weight: 900;
}

.contact-left p {
  max-width: 560px;

  font-size: 20px;
  line-height: 1.7;

  color: rgba(255,255,255,.82);
}

.contact-card {
  background: rgba(255,255,255,.06);

  backdrop-filter: blur(8px);

  border: 1px solid rgba(255,255,255,.08);

  border-radius: 24px;

  padding: 42px;

  box-shadow: 0 18px 42px rgba(0,0,0,.35);
}

.contact-card h3 {
  margin: 0 0 28px;

  color: var(--white);

  font-size: 28px;
}

.contact-item {
  display: flex;
  align-items: center;

  margin-bottom: 18px;

  padding: 18px 22px;

  border-radius: 14px;

  background: rgba(255,255,255,.05);

  color: var(--white);

  text-decoration: none;

  font-size: 18px;
  font-weight: 700;

  transition: .25s ease;
}

.contact-item:hover {
  transform: translateY(-3px);

  background: rgba(255,255,255,.12);
}

.whatsapp-big {
  margin-top: 28px;

  justify-content: center;

  background: #25D366;

  color: #fff;

  font-size: 20px;
  font-weight: 900;

  box-shadow: 0 12px 24px rgba(37,211,102,.28);
}

.whatsapp-big:hover {
  background: #1ebe5d;
}

/* RESPONSIVE BASIS */
@media (max-width: 980px) {
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .service-grid,
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .contact-box,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .navbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content {
    padding: 70px 0 80px;
  }

  .hero-buttons,
  .contact-buttons,
  .btn {
    width: 100%;
  }

  .service-grid,
  .usp-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 58px 0;
  }
}

.about-image {
  background: none !important;
  min-height: auto !important;
}

.about-image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-height: 520px !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
}

.card-link:hover {
  color: var(--gold-dark);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content .card-link {
  margin-top: auto;
}

.about-main-image img {
  width: 100%;
  max-width: 420px;
  height: 520px;

  object-fit: cover;
  object-position: center top;

  border-radius: 24px;

  box-shadow: var(--shadow);
}

.about-main-text {
  background: #ffffff;
  padding: 42px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--gold);
}

.about-main-text p:last-child {
  margin-bottom: 0;
}

.values-section {
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
}

.values-section .section-title h2 {
  color: #ffffff;
}

.values-section .section-title span {
  color: var(--gold);
}

.value-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #ffffff;
  border-left: 5px solid var(--gold);
  padding: 22px 34px;
  padding-left: 42px;

  border-radius: 20px;
  min-height: auto;
  .value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  margin: 0;
  line-height: 1.6;
}

.value-card h3 {
  color: #ffffff;
}

.value-card p {
  color: rgba(255,255,255,.78);
}

.about-main-image {
  position: relative;
}

.about-main-image::after {
  content: "ALL IN ONE AW";
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: rgba(7,24,32,.88);
  color: var(--gold);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 13px;
}

.services-full {
  background: var(--cream);
}

.service-large-grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.service-large-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-large-card.reverse .service-large-image {
  order: 2;
}

.service-large-card.reverse .service-large-content {
  order: 1;
}

.service-large-image img {
  width: 100% !important;

  height: 260px !important;
  max-height: 260px !important;

  object-fit: cover !important;
  object-position: center !important;

  border-radius: 26px;

  box-shadow: var(--shadow);
}

.service-large-content {
  background: #ffffff;
  padding: 44px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--gold);
}

.service-large-content span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.service-large-content h2 {
  margin: 0 0 20px;
  font-size: clamp(32px,4vw,54px);
  line-height: 1.08;
}

.service-large-content p {
  margin-bottom: 26px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.service-large-content ul {
  padding-left: 20px;
  margin: 0;
}

.service-large-content li {
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}

.services-full .service-large-image {
  height: 260px !important;
  overflow: hidden !important;
  border-radius: 26px !important;
}

.services-full .service-large-image img {
  width: 100% !important;
  height: 260px !important;
  max-height: 260px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Premium-Veredelung Dienstleistungen */

.service-large-card {
  position: relative;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 42px rgba(0,0,0,.08);
  transition: .3s ease;
}

.service-large-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(0,0,0,.14);
}

.service-large-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 34px;
  width: 70px;
  height: 5px;
  border-radius: 99px;
  background: var(--gold);
  z-index: 2;
}

.service-large-image img {
  transition: transform .35s ease, filter .35s ease;
}

.service-large-card:hover .service-large-image img {
  transform: scale(1.035);
  filter: contrast(1.05) saturate(1.05);
}

.service-large-content {
  position: relative;
}

.service-large-content span {
  background: rgba(242,182,61,.16);
  padding: 8px 12px;
  border-radius: 999px;
}

.service-large-content ul {
  margin-top: 22px;
}

.service-large-content li {
  list-style: none;
  position: relative;
  padding-left: 28px;
}

.service-large-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-weight: 900;
}

/* Kontaktseite */

.contact-page {
  background: var(--cream);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
}

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  padding: 42px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-info-card {
  border-left: 6px solid var(--gold);
}

.contact-info-card span,
.contact-form-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-info-card h2,
.contact-form-card h2 {
  margin: 0 0 20px;
  font-size: 42px;
}

.contact-info-card p {
  line-height: 1.8;
  color: var(--muted);
}

.contact-info-list {
  margin: 34px 0;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  text-decoration: none;

  color: var(--text);

  font-size: 18px;
  font-weight: 700;
}

.contact-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 18px 28px;

  border-radius: 14px;

  background: #25D366;

  color: #ffffff;

  text-decoration: none;

  font-size: 18px;
  font-weight: 900;

  transition: .25s ease;
}

.contact-whatsapp-btn:hover {
  transform: translateY(-3px);
  background: #1ebe5d;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 18px 20px;

  border-radius: 14px;

  border: 1px solid #d9d9d9;

  font-size: 16px;

  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.service-area {
  background: linear-gradient(
    135deg,
    var(--dark),
    var(--dark-2)
  );
}

.service-area .section-title h2,
.service-area .section-title p {
  color: #ffffff;
}

.area-box {
  margin-top: 40px;

  background: rgba(255,255,255,.08);

  border: 1px solid rgba(255,255,255,.12);

  border-radius: 24px;

  padding: 34px;

  color: #ffffff;

  text-align: center;

  font-size: 24px;
  font-weight: 700;
}

.contact-action-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin: 34px 0;
}

.contact-action-btn {
  display: flex;
  flex-direction: column;

  gap: 8px;

  padding: 22px 24px;

  background: #f7f7f7;

  border-radius: 18px;

  text-decoration: none;

  color: var(--text);

  transition: .25s ease;

  border-left: 5px solid var(--gold);
}

.contact-action-btn:hover {
  transform: translateY(-4px);

  background: #ffffff;

  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}

.contact-action-btn span {
  color: var(--gold-dark);

  font-size: 14px;

  font-weight: 900;

  letter-spacing: 1px;
}

.contact-action-btn strong {
  font-size: 22px;

  color: var(--text);
}

.whatsapp-contact-btn {
  background: #25D366;

  border-left: none;
}

.whatsapp-contact-btn span,
.whatsapp-contact-btn strong {
  color: #ffffff;
}

.whatsapp-contact-btn:hover {
  background: #1ebe5d;
}

.contact-location {
  margin-top: 24px;

  font-size: 18px;

  font-weight: 700;

  color: var(--muted);
}

.contact-simple-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.contact-simple-left,
.contact-simple-right {
  background: #ffffff;
  padding: 42px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact-simple-left {
  border-left: 6px solid var(--gold);
}

.contact-simple-left span,
.contact-simple-right span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.contact-simple-left h2,
.contact-simple-right h2 {
  font-size: 40px;
  margin: 14px 0 20px;
}

.contact-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;

  margin: 36px 0;
}

.contact-big-btn {
  display: flex;
  flex-direction: column;

  gap: 10px;

  padding: 26px 28px;

  background: #f7f7f7;

  border-radius: 20px;

  text-decoration: none;

  transition: .25s ease;

  border-left: 6px solid var(--gold);
}

.contact-big-btn:hover {
  transform: translateY(-4px);

  box-shadow: 0 16px 32px rgba(0,0,0,.10);
}

.contact-label {
  color: var(--gold-dark);

  font-size: 13px;

  font-weight: 900;

  letter-spacing: 2px;
}

.contact-value {
  color: var(--text);

  font-size: 28px;

  font-weight: 900;

  line-height: 1.2;
}
}

.contact-big-btn small {
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-big-btn strong {
  color: var(--text);
  font-size: 20px;
}

.whatsapp-green {
  background: #25D366;
  border-left: none;
}

.whatsapp-green small,
.whatsapp-green strong {
  color: #ffffff;
}

.contact-place {
  font-weight: 800;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #d9d9d9;
  font-family: inherit;
  font-size: 16px;
}

.contact-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 34px 0;
}

.contact-buttons-vertical {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-top: 34px;

  max-width: 520px;
}

.contact-premium-btn {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 20px 24px;

  background: linear-gradient(
    135deg,
    var(--dark),
    var(--dark-2)
  );

  border-radius: 18px;

  color: #ffffff;

  text-decoration: none;

  font-size: 22px;
  font-weight: 800;

  box-shadow: 0 12px 28px rgba(0,0,0,.12);

  transition: .25s ease;
}

.contact-premium-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.contact-icon {
  font-size: 24px;
}

.contact-premium-btn strong {
  color: #ffffff;
}

.whatsapp-premium-btn {
  justify-content: center;

  background: linear-gradient(
    135deg,
    #09d96f,
    #07be61
  );

  font-size: 24px;

  padding: 24px;
}

.whatsapp-premium-btn:hover {
  background: linear-gradient(
    135deg,
    #08cc69,
    #05b85b
  );
}

/* Winterdienst-Seite */

.winter-main {
  background: var(--cream);
}

.winter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.winter-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.winter-content {
  background: #ffffff;
  padding: 44px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--gold);
}

.winter-content span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
}

.winter-content h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.winter-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.winter-content ul {
  margin: 0;
  padding-left: 0;
}

.winter-content li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  margin-bottom: 13px;
  font-weight: 700;
}

.winter-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 900;
}

.winter-area {
  background: var(--cream);
}

/* ================================================= */
/* MOBILE OPTIMIERUNG */
/* ================================================= */

@media (max-width: 980px) {

  .navbar {
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .hero-content h1 {
    font-size: 56px;
    line-height: 1.05;
  }

  .hero-content p {
    font-size: 18px;
  }

  .about-grid,
  .winter-grid,
  .contact-simple-box,
  .contact-page-grid,
  .service-large-card {
    grid-template-columns: 1fr !important;
  }

  .service-large-card.reverse .service-large-image,
  .service-large-card.reverse .service-large-content {
    order: initial;
  }

  .project-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-large-content,
  .about-main-text,
  .winter-content,
  .contact-simple-left,
  .contact-simple-right,
  .contact-info-card,
  .contact-form-card {
    padding: 34px;
  }

  .service-large-image img,
  .winter-image img {
    height: 360px !important;
  }

  .contact-buttons-vertical {
    max-width: 100%;
  }

  .footer {
    text-align: center;
  }

  .footer-grid {
    gap: 42px;
  }

}

/* ================================================= */
/* SMARTPHONE */
/* ================================================= */

@media (max-width: 640px) {

  .container {
    width: 92%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .logo {
    width: 95px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .section-padding {
    padding: 90px 0;
  }

  .section-title h2,
  .about-main-text h2,
  .service-large-content h2,
  .winter-content h2,
  .contact-simple-left h2,
  .contact-simple-right h2 {
    font-size: 38px;
    line-height: 1.1;
  }

  .project-grid {
    gap: 22px;
  }

  .project-grid img {
    height: 240px;
  }

  .service-large-image img,
  .winter-image img,
  .about-main-image img {
    height: 260px !important;
  }

  .contact-premium-btn {
    font-size: 18px;
    padding: 18px 20px;
  }

  .contact-value {
    font-size: 22px;
  }

  .whatsapp-premium-btn {
    font-size: 20px;
  }

  .area-box {
    font-size: 20px;
    padding: 26px;
  }

  .footer-logo {
    width: 90px;
  }

/* Impressum / Rechtliches */

.legal-page {
  background: var(--cream);
}

.legal-box {
  background: #ffffff;

  padding: 42px;

  border-radius: 24px;

  box-shadow: var(--shadow);

  border-left: 6px solid var(--gold);

  margin-bottom: 34px;
}

.legal-box h2 {
  margin-top: 0;
  margin-bottom: 20px;

  font-size: 32px;
}

.legal-box p {
  color: var(--muted);

  line-height: 1.8;

  font-size: 17px;
}
.success-message {
  background: #dff6e4;

  color: #18753c;

  padding: 18px 22px;

  border-radius: 14px;

  margin-bottom: 24px;

  font-weight: 700;
}

.service-title-link {
  color: inherit;
  text-decoration: none;
}

.service-title-link:hover {
  color: var(--gold);
}
.service-link-btn {
  background: #1f1f1f;
  color: #ffffff;
  border: 2px solid #1f1f1f;
}

.service-link-btn:hover {
  background: #d4af37;
  color: #111111;
  border-color: #d4af37;
}

.news-page {
  background: var(--cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.news-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--gold);
}

.news-date {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 1px;
}

.news-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
}

.news-card p {
  color: var(--muted);
  line-height: 1.7;
}
/* AKTUELLES */

.news-preview {
  background: #f7f4ee;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.news-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  border-left: 6px solid #d4af37;

  transition: 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
}

.news-date {
  display: inline-block;

  margin-bottom: 16px;

  color: #8b6a12;

  font-size: 14px;

  font-weight: 800;

  letter-spacing: 2px;
}

.news-card h3 {
  margin-bottom: 18px;

  font-size: 28px;

  color: #1f1f1f;
}

.news-card p {
  color: #555555;

  line-height: 1.7;
}
.service-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-heading-row .btn {
  width: auto;
  white-space: nowrap;
}
.service-large-content .btn {
  padding: 14px 26px;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.service-large-content {
  display: flex;
  flex-direction: column;
}

.service-large-content .btn {
  margin-top: auto;
  }
}

/* REFERENZEN */

.references-page {
  background: var(--cream);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 50px;
}

.reference-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: .3s ease;
}

.reference-card:hover {
  transform: translateY(-6px);
}

.reference-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.reference-content {
  padding: 34px;
  border-left: 6px solid var(--gold);
}

.reference-content span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.reference-content h3 {
  font-size: 28px;
  margin: 0 0 16px;
}

.reference-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.reference-btn {
  background: #1f1f1f !important;
  color: #ffffff !important;
  border: 2px solid #1f1f1f !important;
}

@media (max-width: 800px) {
  .reference-grid {
    grid-template-columns: 1fr;
  }

  .reference-card img {
    height: 280px;
  }
}

.service-more-link {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.service-more-link:hover {
  text-decoration: underline;
}

