/*
Theme Name: Santos Hausverwaltung
Theme URI: https://santos.de
Author: Santos Hausverwaltung
Author URI: https://santos.de
Description: Professionelles WordPress-Theme für Santos Hausverwaltung. Modern & Clean mit Dunkelgrün und Creme. Vollständig anpassbar über Design > Customizer.
Version: 1.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: santos
Tags: business, real-estate, clean, modern, custom-colors, custom-menu, featured-images, full-width-template, theme-options, translation-ready
*/

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === BODY === */
body {
  font-family: 'DM Sans', sans-serif;
  background: #fafaf8;
  color: #1a1a1a;
  width: 100%;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.santos-nav {
  background: #fafaf8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid #e8e5dc;
  position: sticky;
  top: 0;
  z-index: 999;
}

.santos-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.santos-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--santos-primary, #1e3d2a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.santos-logo-icon svg {
  width: 18px; height: 18px;
  fill: none; stroke: #a8c97e;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.santos-logo-text {
  font-size: 15px; color: var(--santos-primary, #1e3d2a);
  font-weight: 500; line-height: 1.2; display: block;
}

.santos-logo-sub {
  font-size: 10px; color: #888;
  font-weight: 300; letter-spacing: 1px; display: block;
}

.santos-nav-menu {
  display: flex; gap: 32px; list-style: none;
}

.santos-nav-menu a {
  color: #555; font-size: 13px; text-decoration: none;
  font-weight: 400; transition: color 0.2s;
}

.santos-nav-menu a:hover { color: var(--santos-primary, #1e3d2a); }

.santos-nav-cta {
  background: var(--santos-primary, #1e3d2a);
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 10px 22px; border-radius: 24px;
  text-decoration: none; transition: opacity 0.2s;
}

.santos-nav-cta:hover { opacity: 0.85; }

/* Mobile Hamburger */
.santos-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}

.santos-hamburger span {
  display: block; width: 22px; height: 2px;
  background: #1e3d2a; border-radius: 2px;
  transition: all 0.3s;
}

.santos-mobile-menu {
  display: none; flex-direction: column;
  background: #fafaf8; border-bottom: 1px solid #e8e5dc;
  padding: 16px 24px; gap: 12px;
}

.santos-mobile-menu.open { display: flex; }

.santos-mobile-menu a {
  color: #333; font-size: 14px; text-decoration: none;
  padding: 8px 0; border-bottom: 1px solid #f0ede6;
}

/* === HERO === */
.santos-hero {
  padding: 64px 40px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.santos-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #edf4e8; color: #27500a;
  font-size: 11px; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px;
}

.santos-hero-badge svg {
  width: 13px; height: 13px; stroke: #3b6d11;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.santos-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 46px; font-weight: 400;
  line-height: 1.15; color: #1a1a1a; margin-bottom: 18px;
}

.santos-hero-text {
  color: #666; font-size: 15px; font-weight: 300;
  line-height: 1.8; margin-bottom: 32px; max-width: 440px;
}

.santos-hero-btns {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

.santos-btn-primary {
  background: var(--santos-primary, #1e3d2a); color: #fff;
  font-size: 13px; font-weight: 500; padding: 13px 28px;
  border-radius: 6px; text-decoration: none; transition: opacity 0.2s;
}

.santos-btn-primary:hover { opacity: 0.85; }

.santos-btn-outline {
  border: 1px solid #ccc; color: #333;
  font-size: 13px; font-weight: 400; padding: 13px 24px;
  border-radius: 6px; text-decoration: none; transition: all 0.2s;
}

.santos-btn-outline:hover { border-color: var(--santos-primary, #1e3d2a); color: var(--santos-primary, #1e3d2a); }

/* Hero Visual */
.santos-hero-visual {
  background: #e8f0e0; border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
}

.santos-mini-card {
  background: #fff; border-radius: 10px;
  padding: 18px; border: 1px solid #e0e8d8;
}

.santos-mini-card-top {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 10px;
}

.santos-mini-label { font-size: 12px; color: #888; font-weight: 300; }

.santos-mini-icon svg {
  width: 16px; height: 16px; stroke: #3b6d11;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.santos-mini-val {
  font-size: 28px; color: var(--santos-primary, #1e3d2a);
  font-weight: 500; margin-bottom: 10px;
  font-family: 'DM Serif Display', serif;
}

.santos-mini-bar { height: 5px; background: #e8f0e0; border-radius: 3px; overflow: hidden; }
.santos-mini-fill { height: 100%; background: #3b6d11; border-radius: 3px; }

/* === FEATURES STRIP === */
.santos-features { background: var(--santos-primary, #1e3d2a); padding: 0 40px; }

.santos-features-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 1200px; margin: 0 auto;
}

.santos-feat {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: flex-start; gap: 14px;
}

.santos-feat:last-child { border-right: none; }

.santos-feat-icon {
  width: 40px; height: 40px;
  background: rgba(168,201,126,0.15);
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}

.santos-feat-icon svg {
  width: 20px; height: 20px; stroke: #a8c97e;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.santos-feat-title { font-size: 14px; color: #fff; font-weight: 500; margin-bottom: 4px; }
.santos-feat-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; font-weight: 300; }

/* === LEISTUNGEN === */
.santos-leistungen { padding: 64px 40px; max-width: 1200px; margin: 0 auto; }

.santos-sec-tag {
  font-size: 11px; letter-spacing: 3px;
  color: #3b6d11; text-transform: uppercase; margin-bottom: 8px;
}

.santos-sec-title {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; color: #1a1a1a; margin-bottom: 36px; font-weight: 400;
}

.santos-list { display: flex; flex-direction: column; gap: 10px; }

.santos-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: #fff;
  border: 1px solid #e8e5dc; border-radius: 10px;
  text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s;
}

.santos-item:hover {
  border-color: #3b6d11;
  box-shadow: 0 2px 12px rgba(30,61,42,0.06);
}

.santos-item-left { display: flex; align-items: center; gap: 16px; }

.santos-item-icon {
  width: 44px; height: 44px; background: #edf4e8;
  border-radius: 8px; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}

.santos-item-icon svg {
  width: 22px; height: 22px; stroke: #3b6d11;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.santos-item-name { font-size: 14px; color: #1a1a1a; font-weight: 500; margin-bottom: 3px; }
.santos-item-desc { font-size: 12px; color: #888; font-weight: 300; }

.santos-item-arrow svg {
  width: 18px; height: 18px; stroke: #ccc;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.2s;
}

.santos-item:hover .santos-item-arrow svg { stroke: #3b6d11; }

/* === KONTAKT BANNER === */
.santos-kontakt { background: var(--santos-primary, #1e3d2a); padding: 56px 40px; }

.santos-kontakt-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

.santos-kontakt h2 {
  font-family: 'DM Serif Display', serif;
  color: #fff; font-size: 28px; font-weight: 400; margin-bottom: 10px;
}

.santos-kontakt-intro { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; line-height: 1.8; }

.santos-kontakt-details { display: flex; flex-direction: column; gap: 14px; }

.santos-kontakt-row { display: flex; align-items: center; gap: 12px; }

.santos-kontakt-row svg {
  width: 18px; height: 18px; stroke: #a8c97e;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}

.santos-kontakt-row span { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 300; }
.santos-kontakt-row a { font-size: 14px; color: #a8c97e; text-decoration: none; }
.santos-kontakt-row a:hover { text-decoration: underline; }

/* === FOOTER === */
.santos-footer { background: #111d12; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; }
.santos-footer-name { font-size: 13px; color: rgba(255,255,255,0.4); }
.santos-footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* === CONTENT PAGES (Über uns, Kontaktseite etc.) === */
.santos-content-wrap {
  max-width: 900px; margin: 0 auto; padding: 60px 40px;
}

.santos-content-wrap h1, .santos-content-wrap h2, .santos-content-wrap h3 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  color: #1a1a1a; margin-bottom: 16px; line-height: 1.3;
}

.santos-content-wrap h1 { font-size: 36px; margin-bottom: 24px; }
.santos-content-wrap h2 { font-size: 26px; margin-top: 40px; }
.santos-content-wrap h3 { font-size: 20px; margin-top: 28px; }

.santos-content-wrap p { font-size: 15px; color: #444; line-height: 1.8; margin-bottom: 16px; font-weight: 300; }
.santos-content-wrap ul, .santos-content-wrap ol { margin: 0 0 16px 24px; }
.santos-content-wrap li { font-size: 15px; color: #444; line-height: 1.8; font-weight: 300; margin-bottom: 6px; }
.santos-content-wrap a { color: #3b6d11; }
.santos-content-wrap a:hover { text-decoration: underline; }

.santos-page-hero {
  background: var(--santos-primary, #1e3d2a);
  padding: 48px 40px;
}

.santos-page-hero-inner { max-width: 900px; margin: 0 auto; }

.santos-page-hero h1 {
  font-family: 'DM Serif Display', serif;
  color: #fff; font-size: 36px; font-weight: 400; margin-bottom: 8px;
}

.santos-page-hero p { color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 300; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .santos-nav { padding: 14px 20px; }
  .santos-nav-menu { display: none; }
  .santos-hamburger { display: flex; }
  .santos-nav-cta { display: none; }

  .santos-hero {
    grid-template-columns: 1fr;
    padding: 40px 20px; gap: 28px;
  }
  .santos-hero h1 { font-size: 32px; }

  .santos-features { padding: 0; }
  .santos-features-inner { grid-template-columns: 1fr; }
  .santos-feat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .santos-feat:last-child { border-bottom: none; }

  .santos-leistungen { padding: 40px 20px; }
  .santos-sec-title { font-size: 26px; }

  .santos-kontakt { padding: 40px 20px; }
  .santos-kontakt-inner { grid-template-columns: 1fr; gap: 28px; }

  .santos-footer { flex-direction: column; gap: 6px; padding: 16px 20px; text-align: center; }

  .santos-content-wrap { padding: 40px 20px; }
  .santos-page-hero { padding: 36px 20px; }
}
