/* ============================================================
   HaarLab Route Pages CSS
   /behandlungen  /vorher-nachher  /blog  /kontakt
   render_basic_page() şablonu için
   ============================================================ */

/* ——— HERO — render_basic_page hero ——— */
.inner-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  color: white;
  padding: 80px 0;
}

.inner-hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(201,169,110,.18), transparent 34%),
    linear-gradient(135deg, rgba(27,43,75,.0), rgba(17,30,51,.4));
  pointer-events: none;
}

.inner-hero .container.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.inner-hero .eyebrow {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.inner-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 10px 0 18px;
  color: white;
}

.inner-hero > .container > p,
.inner-hero .container.inner-hero-content > p {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 640px;
  margin-bottom: 30px;
}

/* ——— GENEL SECTION ——— */
.section {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff, var(--cream));
}

/* ——— ADMIN CARD — içerik kutuları ——— */
.admin-card {
  background: white;
  border: 1px solid #E5D8C0;
  border-radius: 28px;
  padding: 40px 44px;
  box-shadow: 0 20px 60px rgba(27,43,75,.07);
  margin-bottom: 40px;
}

.admin-card h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  line-height: 1.14;
}

.admin-card h2:not(:first-child) {
  margin-top: 36px;
}

.admin-card p {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.82;
  color: #2C3E55;
  margin: 0 0 18px;
}

.admin-card p:last-of-type {
  margin-bottom: 0;
}

.admin-card .btn-gold {
  margin-top: 24px;
  display: inline-flex;
}

/* ——— SECTION HEAD ——— */
.section-head {
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--navy);
  margin: 8px 0 0;
  letter-spacing: -0.015em;
}

.section-head .eyebrow {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.section-head > p {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 10px;
}

/* ——— SERVİS GRID — /behandlungen ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E8DCC8;
  box-shadow: 0 14px 40px rgba(27,43,75,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(27,43,75,.11);
}

.service-image {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-body {
  padding: 22px 24px 26px;
}

.service-body .icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #F5EDD8;
  color: var(--gold-dark);
  font-weight: 900;
  margin-bottom: 12px;
}

.service-body h3 {
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}

.service-body p {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
}

.service-body a {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.service-body a:hover {
  color: var(--navy);
}

/* ——— BLOG GRID — /blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E8DCC8;
  box-shadow: 0 12px 36px rgba(27,43,75,.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 24px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(27,43,75,.11);
}

.blog-image {
  height: 190px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

/* Ratgeber etiketi */
.blog-card > span {
  display: block;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 18px 22px 8px;
}

.blog-card h3 {
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 22px 10px;
}

.blog-card p {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.68;
  color: var(--muted);
  margin: 0 22px 14px;
}

.blog-card a {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  margin: 0 22px;
  display: inline-block;
  transition: color 0.2s ease;
}

.blog-card a:hover {
  color: var(--navy);
}

/* ——— RESULTS GRID — /vorher-nachher ——— */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.combined-before-after {
  height: 210px;
  overflow: hidden;
  background: var(--navy-deep);
  position: relative;
}

.combined-before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.result-card:hover .combined-before-after img {
  transform: scale(1.045);
}

.combined-before-after::after {
  content: "Vorher / Nachher";
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.52);
  color: #fff;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.result-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px 6px;
}

.result-meta b {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.result-meta span {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.54);
  font-weight: 600;
}

.result-card h3 {
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.82);
  padding: 4px 16px 18px;
  margin: 0;
}

/* ——— FOOTER — route.php dahilinde ——— */
footer {
  background: var(--navy-deep);
}

footer h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  font-size: 20px;
  color: white;
  margin: 0 0 12px;
}

footer b {
  font-family: 'DM Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

footer p {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  margin: 0;
}

.footer-grid {
  padding: 60px 0;
}

/* ——— MOBİL ——— */
@media (max-width: 900px) {
  .services-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .admin-card {
    padding: 28px 24px;
  }
}

@media (max-width: 580px) {
  .services-grid,
  .blog-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    padding: 60px 0;
    min-height: auto;
  }

  .admin-card h2 {
    font-size: 24px;
  }
}


/* ——— STANDORT MAP ——— */
.standort-map {
  margin: 28px 0 36px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(27,43,75,.12);
  border: 1px solid #E5D8C0;
}

.standort-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

@media (max-width: 640px) {
  .standort-map iframe {
    height: 260px;
  }
}
