/* =========================
   FARBEN
========================= */

:root {

  --gold: #c8a448;

  --bg: #f7f4ef;

  --white: #ffffff;

  --text: #2a2a2a;

  --muted: #6f6f6f;

  --border: #e7dfd2;

  --placeholder: #ece6de;
}

/* =========================
   RESET
========================= */

* {

  margin: 0;

  padding: 0;

  box-sizing: border-box;
}

/* Gesamte Seite */

body {

  background: var(--bg);

  color: var(--text);

  font-family: 'Inter', sans-serif;
}

/* =========================
   NAVIGATION
========================= */

nav {

  height: 90px;

  background: var(--white);

  padding: 0 4rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom: 1px solid var(--border);
}

/* Logo */

.logo {

  height: 55px;

  width: auto;

  object-fit: contain;

  display: block;
}

/* Rechte Seite */

.nav-right {

  display: flex;

  gap: 1rem;
}

/* Einzelnes Icon */

.icon {

  width: 42px;

  height: 42px;

  border: 1px solid var(--gold);

  color: var(--gold);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 6px;

  cursor: pointer;

  transition: 0.2s;
}

/* Hover Effekt */

.icon:hover {

  background: var(--gold);

  color: white;
}

/* =========================
   HERO
========================= */

.hero {

  background: #f4efea;

  padding: 5rem 4rem;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  align-items: center;
}

/* Titel */

.hero-left h1 {

  font-family: 'Cormorant Garamond', serif;

  font-size: 6rem;

  line-height: 0.9;

  font-weight: 600;

  color: var(--gold);

  margin-bottom: 1.5rem;
}

/* Untertitel */

.hero-left p {

  color: var(--muted);

  font-size: 1.2rem;

  margin-bottom: 2rem;
}

/* Button Bereich */

.hero-buttons {

  display: flex;

  gap: 1rem;
}

/* =========================
   BUTTONS
========================= */

.btn-primary {

  background: var(--gold);

  color: white;

  border: none;

  padding: 1rem 2rem;

  border-radius: 6px;

  font-size: 0.85rem;

  letter-spacing: 0.08em;

  cursor: pointer;

  transition: 0.2s;
}

/* Hover */

.btn-primary:hover {

  background: #b48e33;
}

/* Transparenter Button */

.btn-secondary {

  background: transparent;

  color: var(--gold);

  border: 1px solid var(--gold);

  padding: 1rem 2rem;

  border-radius: 6px;

  font-size: 0.85rem;

  letter-spacing: 0.08em;

  cursor: pointer;

  transition: 0.2s;
}

/* Hover */

.btn-secondary:hover {

  background: var(--gold);

  color: white;
}

/* =========================
   SLIDER
========================= */

.slider {

  position: relative;

  width: 100%;

  height: 360px;

  overflow: hidden;

  border-radius: 18px;

  background: var(--placeholder);
}

/* Einzelner Slide */

.slide {

  position: absolute;

  inset: 0;

  display: none;

  align-items: center;

  justify-content: center;

  background: var(--placeholder);

  color: #b0a89d;

  font-size: 1.1rem;
}

/* Aktiver Slide */

.slide.active {

  display: flex;
}

/* Slider Buttons */

.slider-buttons {

  position: absolute;

  bottom: 20px;

  right: 20px;

  display: flex;

  gap: 0.5rem;
}

/* Slider Button */

.slider-buttons button {

  width: 42px;

  height: 42px;

  border: none;

  border-radius: 50%;

  background: rgba(255,255,255,0.9);

  color: var(--gold);

  font-size: 1.3rem;

  cursor: pointer;

  transition: 0.2s;
}

/* Hover */

.slider-buttons button:hover {

  background: var(--gold);

  color: white;
}

/* =========================
   PRODUKTE
========================= */

.products {

  padding: 4rem;
}

/* Titelbereich */

.section-title {

  display: flex;

  align-items: center;

  gap: 2rem;

  margin-bottom: 3rem;
}

/* Titel */

.section-title h2 {

  font-family: 'Cormorant Garamond', serif;

  color: var(--gold);

  font-size: 2.5rem;
}

/* Linien */

.line {

  flex: 1;

  height: 1px;

  background: var(--gold);
}

/* Produkt Grid */

.product-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 2rem;
}

/* Produktkarte */

.product-card {

  background: white;

  border: 1px solid var(--border);

  border-radius: 18px;

  overflow: hidden;

  transition: 0.2s;
}

/* Hover */

.product-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

/* Produktbild */

.product-image {

  height: 220px;

  background: var(--placeholder);

  display: flex;

  align-items: center;

  justify-content: center;

  color: #b3aa9e;
}

/* Inhalt */

.product-content {

  padding: 1.5rem;

  text-align: center;
}

/* Produkttitel */

.product-content h3 {

  margin-bottom: 0.5rem;

  font-size: 1rem;

  font-weight: 500;
}

/* Preis */

.price {

  color: var(--muted);

  margin-bottom: 1.5rem;
}

/* =========================
   ÜBER UNS
========================= */

.about-box {

  background: white;

  margin: 0 4rem 4rem;

  border: 1px solid var(--gold);

  border-radius: 16px;

  padding: 2rem;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 2rem;
}

/* Titel */

.about-content h3 {

  font-family: 'Cormorant Garamond', serif;

  color: var(--gold);

  font-size: 2rem;

  margin-bottom: 0.5rem;
}

/* Text */

.about-content p {

  color: var(--muted);

  max-width: 700px;

  line-height: 1.7;
}

/* =========================
   FOOTER
========================= */

footer {

  background: #efe9e2;

  padding: 4rem;

  display: grid;

  grid-template-columns: repeat(3, 1fr);
}

/* Footer Titel */

footer h4 {

  color: var(--gold);

  font-family: 'Cormorant Garamond', serif;

  font-size: 1.5rem;

  margin-bottom: 1rem;
}

/* Footer Links */

footer a {

  display: block;

  color: var(--muted);

  margin-bottom: 0.5rem;

  text-decoration: none;
}

/* Hover */

footer a:hover {

  color: var(--gold);
}

/* =========================
   TABLET
========================= */

@media(max-width: 1000px) {

  /* Hero */

  .hero {

    grid-template-columns: 1fr;
  }

  /* Produkte */

  .product-grid {

    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width: 700px) {

  /* Navigation */

  nav {

    height: 75px;

    padding: 0 1.2rem;
  }

  /* Logo */

  .logo {

    height: 40px;
  }

  /* Icons */

  .icon {

    width: 34px;

    height: 34px;

    font-size: 0.9rem;
  }

  /* HERO */

  .hero {

    grid-template-columns: 1fr;

    gap: 2rem;

    padding: 2rem 1.2rem;
  }

  /* Titel */

  .hero-left h1 {

    font-size: 3.4rem;

    line-height: 0.95;

    margin-bottom: 1rem;
  }

  /* Untertitel */

  .hero-left p {

    font-size: 1rem;

    margin-bottom: 1.5rem;
  }

  /* Buttons */

  .hero-buttons {

    flex-direction: column;

    width: 100%;
  }

  /* Buttons */

  .btn-primary,
  .btn-secondary {

    width: 100%;

    text-align: center;

    padding: 0.9rem 1rem;
  }

  /* Slider */

  .slider {

    height: 240px;
  }

  /* Produkte */

  .products {

    padding: 2rem 1.2rem;
  }

  /* Titel */

  .section-title {

    gap: 1rem;

    margin-bottom: 2rem;
  }

  .section-title h2 {

    font-size: 1.8rem;
  }

  /* Produkt Grid */

  .product-grid {

    grid-template-columns: 1fr 1fr;

    gap: 1rem;
  }

  /* Produktbild */

  .product-image {

    height: 120px;

    font-size: 0.8rem;
  }

  /* Produkt Inhalt */

  .product-content {

    padding: 1rem;
  }

  /* Titel */

  .product-content h3 {

    font-size: 0.85rem;
  }

  /* Preis */

  .price {

    font-size: 0.85rem;

    margin-bottom: 1rem;
  }

  /* About Box */

  .about-box {

    margin: 0 1.2rem 2rem;

    padding: 1.5rem;

    flex-direction: column;

    align-items: flex-start;
  }

  /* About Titel */

  .about-content h3 {

    font-size: 1.7rem;
  }

  /* About Text */

  .about-content p {

    font-size: 0.95rem;
  }

  /* Footer */

  footer {

    padding: 2rem 1.2rem;

    grid-template-columns: 1fr;

    gap: 2rem;
  }

  /* Footer Titel */

  footer h4 {

    font-size: 1.2rem;
  }
}

/* =========================
   EXTRA KLEINE GERÄTE
========================= */

@media(max-width: 480px) {

  /* Hero Titel */

  .hero-left h1 {

    font-size: 2.8rem;
  }

  /* Produkte */

  .product-grid {

    grid-template-columns: 1fr;
  }

  /* Slider */

  .slider {

    height: 200px;
  }
}