:root {
  --blue: #061735;
  --orange: #f5a400;
  --light: #f7f7f7;
  --text: #1c1c1c;
  --white: #ffffff;
  --card: #ffffff;
  --shadow: rgba(0, 0, 0, .10);
}

body.darkmode {
  --light: #071225;
  --text: #f3f3f3;
  --white: #0b1830;
  --card: #101f3d;
  --shadow: rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  transition: background .3s ease, color .3s ease;
  overflow-x: hidden;
}

/* HEADER */

header {
  width: 100%;
  background: var(--white);
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 5px solid var(--orange);
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 20px var(--shadow);
}

.logo-container {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo-light,
.hero-logo-light {
  display: block;
}

.logo-dark,
.hero-logo-dark {
  display: none;
}

body.darkmode .logo-light,
body.darkmode .hero-logo-light {
  display: none;
}

body.darkmode .logo-dark,
body.darkmode .hero-logo-dark {
  display: block;
}

.hero-logo {
  max-width: 620px;
  width: 100%;
  margin-bottom: 25px;
}

header .hero-logo {
  max-width: 360px;
  margin-bottom: 0;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.phone {
  background: var(--blue);
  color: white;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.email-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

body.darkmode .email-link {
  color: #ffffff;
}

/* BUTTONS */

.phone,
.btn,
.whatsapp {
  transition: transform .2s ease, box-shadow .2s ease;
}

.phone:hover,
.btn:hover,
.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow);
}

.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--blue);
  padding: 15px 25px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
}

.theme-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 99;
  border: none;
  background: var(--orange);
  color: var(--blue);
  padding: 14px 20px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
}

/* HERO */

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  padding: 70px 8%;
  align-items: center;
  background: linear-gradient(135deg, var(--white), var(--light));
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 20px;
}

body.darkmode .hero h1,
body.darkmode .section-title,
body.darkmode .card h3,
body.darkmode .contact h2,
body.darkmode .portrait-info h3 {
  color: var(--orange);
}

.hero h1 span {
  color: var(--orange);
}

.hero-text {
  font-size: 22px;
  margin-bottom: 25px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-badges span {
  background: var(--orange);
  color: var(--blue);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* PORTRAIT */

.portrait-card {
  background: var(--card);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 40px var(--shadow);
  border: 4px solid rgba(245,164,0,.35);
}

.portrait {
  width: 100%;
  display: block;
}

.portrait-info {
  padding: 25px;
  text-align: center;
}

.portrait-info h3 {
  color: var(--blue);
  font-size: 28px;
}

.portrait-badge {
  margin-top: 10px;
  background: var(--blue);
  color: white;
  padding: 12px;
  border-radius: 14px;
  font-weight: bold;
}

/* CONTENT */

section {
  padding: 60px 8%;
}

.section-title {
  font-size: 36px;
  color: var(--blue);
  margin-bottom: 30px;
  border-left: 8px solid var(--orange);
  padding-left: 15px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  background: var(--card);
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 8px 25px var(--shadow);
  border-top: 6px solid var(--orange);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px var(--shadow);
}

.card h3 {
  color: var(--blue);
  margin-bottom: 15px;
  font-size: 24px;
}

ul {
  list-style: none;
}

li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

/* DARK SECTION */

.dark {
  background: var(--blue);
  color: white;
}

.dark .section-title {
  color: white;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit {
  background: white;
  color: var(--blue);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: bold;
}

/* MAP */

.service-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.service-area span {
  background: var(--blue);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
}

.map-container {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.hero-kicker {
  display: inline-block;
  background: rgba(245, 164, 0, .18);
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 18px;
}

body.darkmode .hero-kicker {
  color: var(--orange);
}
.whatsapp-qr{
    margin-top:40px;
    text-align:center;
}

.whatsapp-qr img{
    width:220px;
    max-width:100%;
    background:#fff;
    padding:12px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    transition:.2s ease;
}

.whatsapp-qr img:hover{
    transform:scale(1.03);
}

.whatsapp-qr h3{
    margin-top:20px;
    color:var(--blue);
    font-size:24px;
}

body.darkmode .whatsapp-qr h3{
    color:var(--orange);
}

.whatsapp-qr p{
    margin:10px 0 20px;
    opacity:.85;
}

.whatsapp-btn-large{
    font-size:18px;
    padding:18px 30px;
}

body.darkmode .whatsapp-qr img{
    background:#ffffff;
}

.hero-service-box {
  background: var(--card);
  border-left: 6px solid var(--orange);
  padding: 18px 20px;
  border-radius: 16px;
  margin: 25px 0;
  box-shadow: 0 8px 25px var(--shadow);
}

.hero-service-box strong {
  color: var(--blue);
  display: block;
  margin-bottom: 8px;
}

body.darkmode .hero-service-box strong {
  color: var(--orange);
}

.hero-service-box p {
  font-size: 17px;
  margin: 0;
}

/* CONTACT */

.contact {
  background: var(--white);
  text-align: center;
}

.contact h2 {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 15px;
}

.contact a {
  color: var(--orange);
  font-weight: bold;
}

.whatsapp {
  display: inline-block;
  margin-top: 20px;
  background: #25d366;
  color: white !important;
  padding: 18px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

/* COOKIE */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(6,23,53,.96);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0,0,0,.25);
}

.cookie-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: var(--orange);
  font-weight: bold;
}

/* FOOTER / LEGAL */

footer {
  background: var(--blue);
  color: white;
  padding: 25px 8%;
  text-align: center;
  font-size: 14px;
}

.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.legal-page {
  max-width: 1000px;
  margin: auto;
  padding: 80px 20px;
}

.legal-page h1 {
  margin-bottom: 30px;
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--orange);
}

/* MOBILE */

@media (max-width: 900px) {
  header {
    width: 100vw;
    max-width: 100vw;
    padding: 8px 10px;
    margin: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    left: 0;
    right: 0;
  }

  header .logo-container {
    flex: 1 1 auto;
    min-width: 0;
  }

  header .hero-logo {
    width: 100%;
    max-width: 185px;
    margin-bottom: 0;
  }

  .header-contact {
    width: auto;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
  }

  .phone {
    width: auto;
    padding: 8px 11px;
    font-size: 0;
    border-radius: 999px;
    line-height: 1;
  }

  .phone::after {
    content: "📞 0176 / 610 62 208";
    font-size: 14px;
  }

  .email-link {
    font-size: 0;
    max-width: 120px;
    overflow: hidden;
    white-space: nowrap;
  }

  .email-link::after {
    content: "✉️ E-Mail";
    font-size: 13px;
  }

  body.darkmode .email-link {
    color: #ffffff;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 45px 6%;
  }

  .hero .hero-logo {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-buttons,
  .hero-badges {
    justify-content: center;
  }

  .cards,
  .benefits {
    grid-template-columns: 1fr;
  }

  section {
    padding: 45px 6%;
  }

  .map-container iframe {
    height: 320px;
  }

  .theme-toggle {
    right: 12px;
    bottom: 12px;
    font-size: 13px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content .btn {
    width: 100%;
  }
}