/*
Theme Name: Evangelia BodyConcept
Theme URI: https://evangelia-bodyconcept.com/
Author: OpenClaw
Description: A clean WordPress theme matching the provided Evangelia BodyConcept landing page.
Version: 1.0.0
Text Domain: evangelia-bodyconcept
*/

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #122033;
  --muted: #5b6b80;
  --primary: #3aa7ff;
  --primary-2: #6cc7ff;
  --border: #e6eef7;
  --shadow: 0 12px 36px rgba(20, 45, 70, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: inherit;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #eef6ff;
  color: #0b4f8a;
}

.site-main {
  padding: 25px 0 40px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(20, 45, 70, 0.12);
}

.content-card {
  padding: 26px;
}

.content-card + .content-card {
  margin-top: 16px;
}

.button {
  border: 0;
  border-radius: 999px;
  padding: 14px 20px;
  font-size: 1rem;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.button.light {
  color: var(--text);
  background: #eef7ff;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.lead {
  font-size: 1.08rem;
  color: #2b3f58;
}

.raw-text .box,
.raw-text .box-pink,
.raw-text .box-blue {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 0 12px !important;
}

.raw-text .box:hover {
  transform: none !important;
  box-shadow: none !important;
}

.raw-text .freebie-text {
  margin: 0 0 12px;
  padding: 0;
}

.raw-text h1,
.raw-text h2,
.raw-text h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.raw-text h1:first-child,
.raw-text h2:first-child,
.raw-text h3:first-child {
  margin-top: 0;
}

.raw-text p,
.raw-text ul {
  line-height: 1.75;
}

.raw-text ul {
  margin-top: 0;
  margin-bottom: 14px;
}

.raw-text .week-list {
  list-style: none;
  padding-left: 0;
}

.raw-text .week-list li {
  margin: 0.35rem 0;
}

.raw-text .about-photo,
.raw-text .kundenmeinungen-photo {
  float: right;
  margin: 4px 0 12px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(20, 45, 70, 0.16);
  object-fit: cover;
}

.raw-text .about-photo {
  width: min(25.5%, 194px);
}

.raw-text .kundenmeinungen-photo {
  width: min(38%, 320px);
}

#programm {
  clear: both;
}

.site-footer {
  padding: 28px 0 45px;
  color: var(--muted);
  text-align: center;
}

.site-footer a {
  color: inherit;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 24, 39, 0.52);
  z-index: 30;
}

.modal.show {
  display: flex;
}

.modal-panel {
  width: min(760px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(10, 20, 35, 0.2);
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.form-grid input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.form-grid .full {
  grid-column: 1 / -1;
}

@media (max-width: 920px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .content-card {
    padding: 20px;
  }

  .raw-text .about-photo,
  .raw-text .kundenmeinungen-photo {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}
