@charset "utf-8";
/* =========================
   Grundlayout & Reset
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Century Gothic", Verdana, sans-serif;
  line-height: 1.6;
  color: #333;

  /* Hintergrundbild */
  background-image: url("bilder/hintergrund.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* =========================
   Container
   ========================= */
.container {
  width: 100%;
  margin: 0 auto;
}

/* =========================
   Header / Navigation (sticky)
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #222;
  color: #fff;
  padding: 15px 30px;
}

.site-title {
  font-family: "BankGothic Lt BT", "Century Gothic", sans-serif;
  font-size: 2rem;
  margin-bottom: 10px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Aktiver Link */
.main-nav a.active {
  color: #ffcc00;
  font-weight: bold;
}

/* =========================
   Section Headers & Text
   ========================= */
.section_header {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.tagline {
  font-style: italic;
  text-align: center;
  margin-bottom: 40px;
}

p {
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

/* =========================
   Responsive Grid für Produkte
   ========================= */
.grid {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%; /* 4 Spalten */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 992px) {
  .grid {
    grid-template-columns: 50% 50%; /* 2 Spalten */
  }
}

@media (max-width: 600px) {
  .grid {
    grid-template-columns: 100%; /* 1 Spalte */
  }
}

/* Grid Items */
.item {
  position: relative;
  overflow: hidden;
  height: auto;
}

.item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.item:hover img {
  transform: scale(1.05);
}

/* Buy Button */
.buy-btn {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 25px;
  border: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: bottom 0.3s ease, opacity 0.3s ease;
}

.item:hover .buy-btn {
  bottom: 20px;
  opacity: 1;
}

/* =========================
   Sections
   ========================= */
.section {
  padding: 60px 30px;
  text-align: center;

  /* für Scroll Animation */
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.fade-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =========================
   Footer
   ========================= */
.site-footer {
  background-color: #222;
  color: white;
  padding: 40px 30px;
  display: grid;
  gap: 40px;
}

.footer_column img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.footer_banner {
  text-align: center;
  padding: 40px 30px;
}

.button {
  display: inline-block;
  padding: 10px 25px;
  background-color: black;
  color: white;
  cursor: pointer;
  margin-top: 15px;
  border: none;
}

.copyright {
  text-align: center;
  font-size: 0.9rem;
  padding: 20px;
}