

/* =========================================
   1. VARIABLES & SETTINGS
   ========================================= */
:root {
  /* Farben (Deine Palette) */
  --clr-dark: #000000;
  --clr-light: #f2f2f2;
  --clr-red: #e55d5d;
  --clr-grey: #5a5858;
  --clr-brown: #8b5a2b; /* Braun-Ton ergänzt (Holz-Look) */
  --clr-darkgrey: rgba(54, 53, 53, 0.21);
  --clr-lightgrey: rgba(171, 171, 171, 0.86);
  --clr-yellow: hsl(50, 88%, 52%);
  --clr-green: hsl(101, 89%, 28%);
  
  /* Saisonale Farben (Platzhalter für später) */
  --clr-season-primary: var(--clr-red); 

  /* Schriftgrößen */

--size-xxs: 0.5rem;
--size-xs: 0.75rem;
--size-sm: 0.875rem;
--size-base: 1rem;
--size-lg: 1.125rem;
--size-xl: 1.25rem;
--size-2xl: 1.5rem;
--size-3xl: 1.875rem;
--size-4xl: 2.25rem;
--size-5xl: 3rem;
--size-6xl: 3.75rem;
--size-7xl: 4.5rem;
--size-8xl: 6rem;
--size-9xl: 8rem;
--size-10xl: 10rem;


  
  /* Layout & Spacing */
  --header-height-mobile: 140px; /* Startgröße */
  --header-height-scrolled: 70px; /* Geschrumpfte Größe */
  --nav-height: 60px; /* Untere Leiste */
  --border-radius: 12px;
  --container-width: 1200px;
}

/* =========================================
   2. RESET (Grundreinigung)
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box; /* Wichtig für Layouts! */
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  background-color: var(--clr-light);
  color: var(--clr-dark);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  /* Platz unten für die fixierte Navi auf Mobile */
  padding-bottom: calc(var(--nav-height) + 1rem); 
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input {
  font: inherit;
  border: none;
  outline: none;
}

/* =========================================
   3. TYPOGRAPHY
   ========================================= */
h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}

.accent-font {
  font-family: 'Sacramento', cursive;
  color: var(--clr-red);
}

/* =========================================
   4. UTILITY CLASSES (Helfer)
   ========================================= */

/* Container: Hält den Inhalt mittig und gibt Rand auf Handy */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 1rem;
  /* border: 1px solid var(--clr-red); */
 
  
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 1rem;
}

/* Flex Layouts */
.flex {
  display: flex;
  gap: 1rem;
  align-items: center;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.5em 1.5em;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 500;
  transition: transform 0.2s ease, opacity 0.2s;
}

.btn:active {
  transform: scale(0.95);
}

.btn-primary {
  background-color: var(--clr-red);
  color: white;
}

/* =========================================
   5. SECTIONS
   ========================================= */
.section {
  margin-block: 2rem;
}

/* Platzhalter Style für Header/Footer damit man sie sieht */


footer {
    background-color: var(--clr-lightgrey);
    margin-top: 7rem;
    margin-bottom: -20px;
    position: relative;
    padding-top: 3rem; 
    overflow: visible;
}
/* =========================================
   FOOTER CONTENT STYLES
   ========================================= */
.footer-content {
    display: flex;
    flex-direction: column; /* Mobile: Untereinander */
    gap: 0.5rem;
    text-align: center;
    color: var(--clr-light);
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--clr-red);
}

.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.8rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.2);
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
}