:root {
  /* =====================================================
     COLORS
  ====================================================== */

  --color-primary: #d4b295;
  --color-primary-hover: #c7a486;
  --color-primary-soft: rgba(212, 178, 149, 0.08);

  --color-dark: #2a2421;

  --color-background: #fdfbf9;
  --color-surface: #ffffff;

  --color-text: #333333;
  --color-text-light: #ffffff;
  --color-text-muted: #666666;

  --color-border: #dddddd;
  --color-border-strong: #cfcfcf;

  --color-success: #2f7d4a;
  --color-warning: #a66a00;
  --color-danger: #b42318;

  /* =====================================================
     TYPOGRAPHY
  ====================================================== */

  --font-main: "Nunito Sans", Arial, sans-serif;

  --font-size-xs: 0.8rem;
  --font-size-sm: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.35rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /* =====================================================
     LAYOUT
  ====================================================== */

  --container-width: 1200px;

  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 80px;

  /* =====================================================
     RADIUS
  ====================================================== */

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;

  /* Bestehender Name bleibt erhalten */
  --radius: 10px;

  /* =====================================================
     SHADOWS
  ====================================================== */

  --shadow-sm: 0 2px 8px rgba(42, 36, 33, 0.06);
  --shadow-md: 0 8px 20px rgba(42, 36, 33, 0.10);
  --shadow-lg: 0 16px 36px rgba(42, 36, 33, 0.14);

  /* Bestehender Name bleibt erhalten */
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  /* =====================================================
     TRANSITIONS
  ====================================================== */

  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.3s ease;
}


/* =====================================================
   RESET
====================================================== */

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


html {
  scroll-behavior: smooth;
}


body {
  font-family: var(--font-main);
  background: var(--color-background);
  color: var(--color-text);

  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
}


/* =====================================================
   TYPOGRAPHY BASICS
====================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  line-height: var(--line-height-tight);
}


p {
  line-height: var(--line-height-relaxed);
}


small {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}


a {
  color: inherit;
}


/* =====================================================
   IMAGES
====================================================== */

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


/* =====================================================
   BUTTONS
   NICHT ÄNDERN
====================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 14px 28px;

  border: 2px solid transparent;
  border-radius: var(--radius);

  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;

  text-decoration: none;
  text-align: center;

  cursor: pointer;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition),
    filter var(--transition);

  white-space: nowrap;
}


/* =====================================================
   PRIMARY
====================================================== */

.btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);

  box-shadow: 0 1px 3px rgba(212, 178, 149, 0.08);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);

  box-shadow: 0 2px 5px rgba(212, 178, 149, 0.12);
}


/* =====================================================
   SECONDARY
====================================================== */

.btn-secondary {
  background: rgba(42, 36, 33, 0.04);
  border-color: rgba(42, 36, 33, 0.18);
  color: var(--color-dark);

  box-shadow: 0 1px 3px rgba(42, 36, 33, 0.03);
}

.btn-secondary:hover {
  transform: translateY(-2px);

  background: rgba(42, 36, 33, 0.06);
  border-color: rgba(42, 36, 33, 0.28);

  box-shadow: 0 2px 5px rgba(42, 36, 33, 0.05);
}


/* =====================================================
   BUTTON ROW
====================================================== */

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;

  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.btn-row .btn {
  margin: 0;
}

.btn-row.justify-between {
  justify-content: space-between;
}


/* =====================================================
   DISABLED
====================================================== */

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:disabled:hover {
  transform: none;
  filter: none;
  box-shadow: none;
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =====================================================
   MOBILE
====================================================== */

@media (max-width: 600px) {
  .btn {
    min-height: 48px;
    padding: 14px 20px;
    font-size: 1.05rem;
  }

  input,
  textarea,
  select {
    min-height: 44px;
  }
}

/* Remove mouse-click outlines while keeping keyboard focus-visible */
.menu-toggle:focus,
.btn:focus,
.navigation a:focus {
  outline: none;
}
