:root {
  --gold: #d4af37;
  --dark-green: #0b3b2e;
  --muted: rgba(255,255,255,0.08);
  --max-width: 1100px;
}

/* Dezenter Hintergrund mit Struktur (Platzhalter) */
html, body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #f3efe6;
  background-color: var(--dark-green);
  background-image: 
	url('background.png');
}


.wrap { max-width: var(--max-width); margin: 0 auto; padding: 1.25rem; }

/* HEADER */
header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  padding: 1rem 1.25rem;
  border-radius: 0 0 12px 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.logo { height: 60px; width: auto; }
.site-title { color: var(--gold); margin: 0; }
.site-sub { font-size: 0.8rem; opacity: 0.8; }

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Navigation list styling fix */
nav ul, 
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}


.hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Ansicht */
@media (max-width: 900px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 10px;
    border-radius: 10px;
  }
  .nav-links.show {
    display: flex;
  }
}


/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0,0,0,0.9);
  border-radius: 8px;
  padding: 0.5rem 0;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { padding: 0; }
.dropdown-menu a { display: block; padding: 0.5rem 1rem; white-space: nowrap; }

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-image { display: flex; justify-content: center; }
.hero-image img { width: 50%; height: auto; max-width: 300px; }
.card { background: rgba(0,0,0,0.3); padding: 1.5rem; border-radius: 12px; }

h1, h2, h3 { color: var(--gold); }
.button {
  display: inline-block;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 8px;
  text-decoration: none;
}
.button:hover { background: rgba(212,175,55,0.1); }

/* GALLERY */
.gallery-section { margin-top: 3rem; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: rgba(4, 68, 3, 1);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}
.product-card img { width: 100%; border-radius: 10px; }
.product-card h3 { margin: 0.8rem 0 0.4rem; }
.button.small { font-size: 0.9rem; padding: 0.4rem 0.7rem; }

/* FOOTER */
.site-footer {
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  margin-top: 3rem;
  color: rgba(255,255,255,0.8);
}

/* BACK TO TOP BUTTON */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background-color: var(--gold);
  color: #0b2e1b;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  display: none;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color: #ffdf70;
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
}

.back-to-top.show {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image img { width: 60%; }
  nav ul { flex-direction: column; display: none; }
  .hamburger { display: block; }
}

/* SLIDER */
#slider-section {
  text-align: center;
  margin: 3rem auto;
}

.slider {
  position: relative;
  width: 80%;
  max-width: 900px;
  margin: 1.5rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.slides {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.slides img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Buttons */
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--gold);
  font-size: 2rem;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider button:hover {
  background: rgba(212,175,55,0.4);
}

.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 700px) {
  .slider { width: 95%; }
  .slider button { font-size: 1.5rem; }
}

/* FULLWIDTH CARD SECTION */
.fullwidth-card {
  width: 100%;
  margin: 3rem 0;
  background: linear-gradient(
	135deg,
	rgba(212, 175, 55, 0.08),
	rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  padding: 1rem 1rem;
  text-align: center;
  color: #f3efe6;
}

.fullwidth-card .card-content {
  max-width: 900px;
  margin: 0 auto;
}

.fullwidth-card h2 {
  color: var(--gold);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.fullwidth-card p {
  font-size: 1.1rem;

  margin-bottom: 1.5rem;
  color: #f6f1e8;
}

/* GLOBAL LINK STYLE – passend zur Navigation */
a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover,
a:focus {
  color: #ffdf70; /* etwas helleres Gold beim Hover */
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

/* Optional: Einheitliches Button-Design für Links mit class="button" */
a.button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 30px;
  background: transparent;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

a.button:hover {
  background: var(--gold);
  color: #0b2e1b; /* dunkelgrün für guten Kontrast */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

