/*
Theme Name: DeineFugen - Fugenreparatur & Fliesenservice
Theme URI: https://deinefugen.de
Author: DeineFugen
Author URI: https://deinefugen.de
Description: Professional WordPress theme for DeineFugen - Fugenreparatur & Fliesenservice
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deinefugen
Tags: business, professional, tile-service
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  /* Colors */
  --color-primary: #1B5E20;
  --color-primary-light: #2E7D32;
  --color-primary-dark: #0D3B13;
  --color-secondary: #4CAF50;
  --color-accent: #FFC107;
  --color-accent-dark: #FFA000;
  --color-background: #FFFFFF;
  --color-background-dark: #1B3A1D;
  --color-background-light: #F5F8F5;
  --color-background-gray: #F0F4F0;
  --color-background-overlay: rgba(27, 61, 29, 0.85);
  --color-text: #212121;
  --color-text-light: #FFFFFF;
  --color-text-muted: #6B7B6E;
  --color-text-on-dark: #C8E6C9;
  --color-border: #C8E6C9;
  --color-border-light: #E8F0E8;
  --color-card-shadow: rgba(0, 0, 0, 0.08);
  --color-success: #43A047;
  --color-star-yellow: #FFD54F;
  --color-divider: #E0E8E0;
  --color-footer-bg: #0D1F10;
  --color-footer-text: #A5C2A8;
  --color-footer-heading: #FFFFFF;
  --color-footer-divider: rgba(76, 175, 80, 0.2);

  /* Typography - Fonts */
  --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

  /* Typography - Sizes */
  --size-hero: clamp(36px, 5vw, 56px);
  --size-h1: clamp(32px, 4vw, 44px);
  --size-h2: clamp(26px, 3.5vw, 36px);
  --size-h3: clamp(20px, 2.5vw, 24px);
  --size-h4: 20px;
  --size-body-large: 18px;
  --size-body: 16px;
  --size-body-small: 14px;
  --size-caption: 12px;
  --size-button: 16px;
  --size-nav-link: 15px;
  --size-badge: 13px;

  /* Typography - Weights */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* Typography - Line Heights */
  --lh-heading: 1.2;
  --lh-body: 1.6;
  --lh-tight: 1.3;
  --lh-relaxed: 1.8;

  /* Layout */
  --max-width: 1200px;
  --container-padding: 0 24px;
  --section-padding: 80px 0;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-header: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-form: 0 4px 16px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Topbar */
  --topbar-bg: #1B3A1D;
  --topbar-height: 40px;
  --topbar-text: #C8E6C9;
  --topbar-font-size: 13px;

  /* Header */
  --header-height: 80px;
  --header-bg: #FFFFFF;

  /* Process section */
  --process-bg: #1B3A1D;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-body);
  font-weight: var(--weight-regular);
  line-height: var(--lh-body);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding);
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--size-caption);
  font-weight: var(--weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--size-h2);
  font-weight: var(--weight-bold);
  line-height: var(--lh-heading);
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: var(--size-body-large);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
  max-width: 700px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: var(--size-button);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-text);
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.btn--outline-white:hover {
  background-color: var(--color-text-light);
  color: var(--color-text);
  transform: translateY(-2px);
}

.btn--dark {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

.btn--dark:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background-color: var(--topbar-bg);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--topbar-text);
  font-size: var(--topbar-font-size);
  text-decoration: none;
}

.topbar__item:hover {
  color: var(--color-secondary);
}

.topbar__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--topbar-text);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.topbar__social-link:hover {
  color: var(--color-secondary);
}

.topbar__social-link svg {
  width: 14px;
  height: 14px;
}

.topbar__hours {
  color: var(--topbar-text);
  font-size: var(--topbar-font-size);
  display: none;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background-color: var(--header-bg);
  height: var(--header-height);
  box-shadow: var(--shadow-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 24px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

.site-header__logo-icon svg {
  width: 26px;
  height: 26px;
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
}

.site-header__logo-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: var(--weight-extrabold);
  color: var(--color-primary);
  line-height: 1.1;
}

.site-header__logo-tagline {
  font-size: var(--size-caption);
  color: var(--color-text-muted);
  font-weight: var(--weight-medium);
  line-height: 1.2;
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header__nav-link {
  font-family: var(--font-heading);
  font-size: var(--size-nav-link);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.site-header__nav-link:hover,
.site-header__nav-link.active {
  color: var(--color-primary);
  background-color: var(--color-background-light);
}

.site-header__cta {
  display: none;
  flex-shrink: 0;
}

.site-header__cta .btn {
  padding: 10px 22px;
  font-size: 14px;
}

.site-header