@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold-dark: #B8860B;
  --gold-light: #D4AF37;
  --gold-pale: #F5E6C8;
  --schwarz: #1a1a1a;
  --schwarz-hell: #2d2d2d;
  --weiss: #ffffff;
  --creme: #FAF8F5;
  --text-hell: #8a8a8a;
  --rahmen: #e8e0d5;
  --schrift-serif: 'Cormorant Garamond', serif;
  --schrift-sans: 'Montserrat', sans-serif;
  --uebergang: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--schrift-sans);
  background-color: var(--creme);
  color: var(--schwarz);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typografie */
h1, h2, h3, h4 {
  font-family: var(--schrift-serif);
  font-weight: 500;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { font-weight: 300; }

.gold-text { color: var(--gold-dark); }

/* Behälter */
.behaelter {
  width: 92%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--schwarz);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.versteckt {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: var(--schrift-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: pulsieren 1.5s ease-in-out infinite;
}

@keyframes pulsieren {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.preloader-linie {
  width: 60px;
  height: 1px;
  background: var(--gold-light);
  margin-top: 20px;
  animation: erweitern 3s ease-in-out infinite;
}

@keyframes erweitern {
  0% { width: 30px; opacity: 0.5; }
  50% { width: 80px; opacity: 1; }
  100% { width: 30px; opacity: 0.5; }
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 4%;
  z-index: 1000;
  transition: all var(--uebergang);
  background: transparent;
}

header.aktiv {
  background: rgba(250, 248, 245, 0.98);
  padding: 15px 4%;
  box-shadow: 0 2px 30px rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);
}

.markenname {
  font-family: var(--schrift-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--schwarz);
  letter-spacing: 3px;
  text-decoration: none;
}

.navigations-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--schwarz);
  text-decoration: none;
  position: relative;
  transition: color var(--uebergang);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-dark);
  transition: width var(--uebergang);
}

.nav-links a:hover::after,
.nav-links a.aktiv::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.aktiv {
  color: var(--gold-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--schwarz);
  transition: all var(--uebergang);
}

.hamburger.offen span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.offen span:nth-child(2) {
  opacity: 0;
}
.hamburger.offen span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Menu */
.menue-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(26,26,26,0.9);
  z-index: 1400;
  opacity: 0;
  visibility: hidden;
  transition: all var(--uebergang);
}

.menue-overlay.offen {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 380px;
  max-width: 85%;
  height: 100vh;
  background: var(--weiss);
  z-index: 1500;
  padding: 100px 3rem;
  transition: right var(--uebergang);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-nav.offen {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 2rem;
}

.mobile-nav a {
  font-family: var(--schrift-serif);
  font-size: 1.5rem;
  color: var(--schwarz);
  text-decoration: none;
  transition: color var(--uebergang);
}

.mobile-nav a:hover {
  color: var(--gold-dark);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 4% 80px;
  background: linear-gradient(135deg, var(--creme) 0%, var(--gold-pale) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inhalt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  animation: einblenden 1s ease-out 0.3s both;
}

@keyframes einblenden {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text .untertitel {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text .beschreibung {
  font-size: 1.1rem;
  color: var(--text-hell);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-bild {
  position: relative;
  animation: einblenden 1s ease-out 0.6s both;
}

.hero-bild img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.hero-preis-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--schwarz);
  color: var(--gold-light);
  padding: 25px 35px;
  font-family: var(--schrift-serif);
  font-size: 1.5rem;
}

@media (max-width: 1000px) {
  .hero-inhalt {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-text .beschreibung { margin: 0 auto 2.5rem; }
  .hero-bild { order: -1; }
  .hero-bild img { max-width: 400px; margin: 0 auto; }
  .hero-preis-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -30px;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--uebergang);
}

.btn-primary {
  background: var(--schwarz);
  color: var(--weiss);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--schwarz);
  border: 1px solid var(--schwarz);
}

.btn-outline:hover {
  background: var(--schwarz);
  color: var(--weiss);
}

/* Features Section */
.features {
  padding: 100px 4%;
  background: var(--weiss);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-hell);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--creme);
  border: 1px solid var(--rahmen);
  transition: all var(--uebergang);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  border-color: var(--gold-light);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold-pale), var(--creme));
  border-radius: 50%;
  font-size: 1.8rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-hell);
  font-size: 0.95rem;
}

/* Gallery */
.galerie {
  padding: 100px 4%;
  background: var(--creme);
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.galerie-item:hover img {
  transform: scale(1.05);
}

.galerie-item:first-child {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .galerie-grid {
    grid-template-columns: 1fr;
  }
  .galerie-item:first-child {
    grid-row: span 1;
  }
}

/* FAQ */
.faq {
  padding: 100px 4%;
  background: var(--weiss);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--rahmen);
  margin-bottom: 0;
}

.faq-frage {
  width: 100%;
  padding: 25px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-frage h4 {
  font-family: var(--schrift-serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-frage span {
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform var(--uebergang);
}

.faq-item.offen .faq-frage span {
  transform: rotate(45deg);
}

.faq-antwort {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.offen .faq-antwort {
  max-height: 300px;
}

.faq-antwort p {
  padding-bottom: 25px;
  color: var(--text-hell);
}

/* CTA Section */
.cta-section {
  padding: 120px 4%;
  background: var(--schwarz);
  text-align: center;
}

.cta-section h2 {
  color: var(--weiss);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-hell);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: var(--gold-dark);
}

.cta-section .btn-primary:hover {
  background: var(--gold-light);
}

/* Product Section */
.produkt-bereich {
  padding: 100px 4%;
  background: var(--creme);
}

.produkt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.produkt-bilder {
  position: relative;
}

.produkt-hauptbild {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.produkt-vorschaubilder {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.produkt-vorschaubilder img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--uebergang);
}

.produkt-vorschaubilder img.aktiv {
  border-color: var(--gold-dark);
}

.produkt-details h1 {
  margin-bottom: 0.5rem;
}

.produkt-details .untertitel {
  font-size: 0.85rem;
  color: var(--text-hell);
  margin-bottom: 2rem;
}

.produkt-preis {
  font-family: var(--schrift-serif);
  font-size: 2.5rem;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.produkt-preis-hinweis {
  font-size: 0.85rem;
  color: var(--text-hell);
  margin-bottom: 2rem;
}

.produkt-beschreibung {
  color: var(--text-hell);
  margin-bottom: 2.5rem;
}

.produkt-meta {
  list-style: none;
  margin-bottom: 2.5rem;
}

.produkt-meta li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--rahmen);
}

.produkt-meta li span:first-child {
  font-weight: 500;
}

.produkt-meta li span:last-child {
  color: var(--text-hell);
}

@media (max-width: 900px) {
  .produkt-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Footer */
footer {
  background: var(--schwarz);
  color: var(--weiss);
  padding: 80px 4% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .markenname {
  color: var(--weiss);
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-hell);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--schrift-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-hell);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--uebergang);
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  color: var(--text-hell);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-contact strong {
  color: var(--weiss);
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--schwarz-hell);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-hell);
}

.footer-bottom a {
  color: var(--text-hell);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* Cookie Popup */
#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--schwarz);
  color: var(--weiss);
  z-index: 9999;
  padding: 30px 4%;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

#cookie-popup.sichtbar {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  font-family: var(--schrift-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--gold-light);
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--text-hell);
}

.cookie-text a {
  color: var(--gold-light);
}

.cookie-buttons {
  display: flex;
  gap: 15px;
}

.btn-akzeptieren {
  background: var(--gold-dark);
  color: var(--weiss);
  border: none;
  padding: 14px 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--uebergang);
}

.btn-akzeptieren:hover {
  background: var(--gold-light);
}

.btn-ablehnen {
  background: transparent;
  color: var(--weiss);
  border: 1px solid var(--weiss);
  padding: 14px 30px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--uebergang);
}

.btn-ablehnen:hover {
  background: var(--weiss);
  color: var(--schwarz);
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

/* Animations */
.sichtbar-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.sichtbar-anim.aktiv {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Page Styles */
.kontakt-seite {
  padding: 150px 4% 100px;
  min-height: 100vh;
  background: var(--creme);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.kontakt-info {
  background: var(--weiss);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--rahmen);
}

.kontakt-info h2 {
  margin-bottom: 2rem;
}

.kontakt-item {
  margin-bottom: 2rem;
}

.kontakt-item h4 {
  font-family: var(--schrift-sans);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.kontakt-item p,
.kontakt-item a {
  color: var(--text-hell);
  font-size: 1rem;
}

.kontakt-item a {
  text-decoration: none;
}

.kontakt-item a:hover {
  color: var(--gold-dark);
}

.kontakt-formular {
  background: var(--weiss);
  padding: 3rem;
  border-radius: 4px;
  border: 1px solid var(--rahmen);
}

.kontakt-formular h2 {
  margin-bottom: 2rem;
}

.form-field {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 1.5rem;
  background: var(--creme);
  border: 1px solid var(--rahmen);
  border-radius: 4px;
  font-family: var(--schrift-sans);
  font-size: 1rem;
  color: var(--schwarz);
  transition: border-color var(--uebergang);
}

.form-field:focus {
  outline: none;
  border-color: var(--gold-dark);
}

textarea.form-field {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Legal Pages */
.rechtlicher-bereich {
  max-width: 800px;
  margin: 150px auto 100px;
  padding: 0 4%;
}

.rechtlicher-bereich h1 {
  margin-bottom: 2rem;
}

.rechtlicher-bereich h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
  color: var(--gold-dark);
}

.rechtlicher-bereich p {
  color: var(--text-hell);
  margin-bottom: 1rem;
}

.rechtlicher-bereich ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-hell);
}

.rechtlicher-bereich li {
  margin-bottom: 0.5rem;
}