/* Schrift einbinden */
@font-face {
  font-family: 'DaysOne';
  src: url('DaysOne-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'DaysOne', Arial, sans-serif;
  color: #fff;
  background: #f0f0f0; /* Fallback */
  background: url('bg.webp') center/cover no-repeat;
}

/* Shop Hero */
.shop-hero {
  position: relative;
  height: 66vh;
  width: calc(100% - 80px);
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;

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

/* Vollflächen-Link */
.shop-link {
  position: absolute;
  inset: 0; /* füllt gesamte Kachel */
  background: rgba(0,0,0,0.4);
  transition: background 0.3s ease;
  z-index: 1; /* hinter dem Text */
}

.shop-link:hover {
  background: rgba(0,0,0,0.6);
}

/* Text + Button */
.shop-text {
  position: relative;
  z-index: 2; /* vor dem Link */
  text-align: center;
  color: #fff;
}

.shop-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.shop-text p {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1b5e20;
}


/* Untere Grid-Kacheln */
.grid-sub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  padding: 40px;
}

.grid-item {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
}
.gray  { background: rgba(66,66,66,0.85); }
.red   { background: rgba(211,47,47,0.85); }
.blue  { background: rgba(25,118,210,0.85); }
.dark  { background: rgba(33,33,33,0.9); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1b5e20;
}

/* Social Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2e7d32;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #1b5e20;
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: #000;
  color: #bbb;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
.footer a {
  color: #bbb;
  text-decoration: none;
  margin: 0 5px;
}
.footer a:hover {
  color: #fff;
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
  .shop-hero {
    height: 50vh;                 /* kleiner auf Tablets */
    width: calc(100% - 40px);
    margin: 20px auto 0;
  }
  .shop-text h1 {
    font-size: 2rem;
  }
  .shop-text p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .shop-hero {
    height: 200px;                 /* kompakt auf Smartphones */
    width: calc(100% - 40px);
    margin: 20px auto 0;
  }
  .shop-text h1 {
    font-size: 1.5rem;
  }
  .shop-text p {
    font-size: 0.9rem;
  }
  .grid-sub {
    grid-template-columns: 1fr;   /* 1 Spalte auf Handy */
    padding: 20px;
  }
}
