/* ============================================
   WORTVITA — Global Styles
   Neue Farbpalette: Navy + Gold
   ============================================ */

:root {
  --primary: #0F1F2E;
  --accent: #C49A5A;
  --background: #f8fafc;
  --text-dark: #0F1F2E;
  --text-light: #666;
  --border: #e0e0e0;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background);
}

/* TYPOGRAPHY */
h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2rem;
  margin-top: 3rem;
  color: var(--primary);
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary);
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-light);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--accent);
}

/* LAYOUT */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* HEADER */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

header .logo-img {
  width: 140px;
  height: auto;
}

header nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

header nav a {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.3s;
}

header nav a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1a2f4a 100%);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.hero h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  opacity: 1;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
}

/* PERSONA BUTTONS */
.persona-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.persona-btn {
  background: var(--white);
  color: var(--primary);
  padding: 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent);
}

.persona-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary);
}

.persona-btn h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.persona-btn p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* SECTION STYLES */
section {
  margin: 4rem 0;
  padding: 3rem 0;
}

.divider {
  text-align: center;
  margin: 3rem 0;
  opacity: 0.3;
  font-size: 12px;
  color: var(--text-light);
}

/* BOXES */
.about-box {
  background: var(--background);
  padding: 2.5rem;
  border-radius: 4px;
  border-left: 4px solid var(--accent);
  margin: 2rem 0;
}

.about-box h3 {
  margin-top: 0;
}

/* FEATURE LIST */
.feature-list {
  margin: 2rem 0;
  padding: 0;
}

.feature-list li {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
  line-height: 1.7;
  font-size: 15px;
  color: var(--text-light);
}

.feature-list li strong {
  color: var(--primary);
}

/* PACKAGE GRID */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
  text-align: center;
}

.package-card h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.package-card .price {
  font-size: 1.8rem;
  color: var(--accent);
  font-weight: 700;
  margin: 1rem 0;
}

.package-card .tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.package-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1.5rem 0;
  font-size: 14px;
  color: var(--text-light);
}

.package-card ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.package-card ul li:last-child {
  border-bottom: none;
}

/* CTA BUTTONS */
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.cta-button:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: var(--accent);
}

.cta-button.secondary:hover {
  background: var(--primary);
}

/* FAQ */
.faq-group {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.faq-group h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.faq-item h4 {
  color: var(--primary);
  padding: 1.2rem;
  background: var(--background);
  border-radius: 4px;
  margin-bottom: 0;
  transition: all 0.3s;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h4:hover {
  background: #f0f3f8;
}

.faq-item .toggle-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--accent);
}

.faq-item p {
  display: none;
  padding: 1.2rem;
  background: var(--white);
  border-left: 4px solid var(--accent);
  margin-top: 0;
  color: var(--text-light);
}

.faq-item.open h4 {
  background: #f0f3f8;
}

.faq-item.open p {
  display: block;
}

.faq-item.open .toggle-icon {
  transform: rotate(180deg);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

footer .logo-img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

footer .claim {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 1px;
  margin: 1rem 0 1.5rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
}

footer a:hover {
  text-decoration: underline;
}

footer p {
  margin: 0.5rem 0;
  font-size: 13px;
  color: #aaa;
}

footer .divider-line {
  border-top: 1px solid #333;
  margin: 1.5rem 0;
}

/* FORMS */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 154, 90, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}

.form-submit:hover {
  background: var(--primary);
}

.form-submit:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.error-message,
.success-message {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  display: none;
}

.error-message {
  background: #fee;
  color: #c33;
  border-left: 4px solid #c33;
}

.success-message {
  background: #efe;
  color: #3c3;
  border-left: 4px solid #3c3;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  header nav {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .persona-buttons {
    grid-template-columns: 1fr;
    margin: 3rem auto 0;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  /* Christian-Sektion responsive */
  section#christian > div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
