@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* ==============================
   Variablen
============================== */
:root {
  --bg-dark: #0f172a;
  --bg-light: #1e293b;
  --accent: #3b82f6;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border-team: rgba(99, 164, 255, 0.6);
}

/* ==============================
   Global Reset
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ==============================
   Header & Navigation
============================== */
header {
  background: var(--bg-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-links li a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  position: relative;
  transition: color 0.3s, transform 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
  transform: translateY(-2px);
}

.burger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text);
}

/* ==============================
   Main Content
============================== */
main {
  flex: 1;
  padding: 2rem 1rem;
}

.hero {
  text-align: center;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-top: 1rem;
  color: var(--accent);
}

.hero p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.hero-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background-color: var(--accent);
  color: var(--text);
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 2s ease-in-out infinite;

}

.hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}


/* ==============================
   About Section
============================== */
.about-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  border: 3px solid var(--border-team);
  box-shadow: 0 10px 25px rgba(0,0,0,0.45);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Teamfoto Vollbild-Style */
.about-image img.fullscreen {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90vw;
  height: auto;
  max-height: 90vh;
  transform: translate(-50%, -50%);
  z-index: 9999;
  cursor: zoom-out;
  transition: all 0.5s ease;
}



.about-text {
  flex: 1 1 50%;
  color: var(--text);
}

.about-text h1 {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ==============================
   Social Section
============================== */
.social-section {
  text-align: center;
  margin: 4rem 0 2rem;
}

.social-section h3 {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link.instagram:hover {
  color: #e1306c;
  border-color: #e1306c;
  text-shadow: 0 0 10px rgba(225, 48, 108, 0.6);
}

.social-link.tiktok:hover {
  color: #69C9D0;
  border-color: #69C9D0;
  text-shadow: 0 0 10px rgba(105, 201, 208, 0.7);
}

.social-link.facebook:hover {
  color: #1877f2;
  border-color: #1877f2;
  text-shadow: 0 0 10px rgba(24, 119, 242, 0.7);
}

/* ==============================
   Products Section
============================== */
.order-info, .products {
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
}

.order-info h1, .products h2 {
  color: var(--accent);
}

.products p {
  margin-bottom: 3rem;
  }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.product-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1rem;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.product-card:hover img {
  filter: brightness(1);
}

.product-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;

}

/* ==============================
   Footer
============================== */
footer {
  background: var(--bg-light);
  color: var(--text-muted);
  text-align: center;
  padding: 1.2rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.95rem;
}

/* ==============================
   Fisch
============================== */
#fisch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  transform: translate(-50%, -50%) scaleX(-1);
  opacity: 0.3;
  z-index: -1;
  transition: transform 0.3s ease;
  will-change: transform;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }

  .about-image img {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: var(--bg-light);
    flex-direction: column;
    gap: 1rem;
    width: 200px;
    padding: 1rem;
    display: none;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .order-info h1 {
    font-size: 1.8rem;
  }

  .product-grid {
    gap: 1.5rem;
  }
}
