:root {
  --primary: #0d0d0d;
  --bg: #f9f9f9;
  --accent: #1e90ff;
  --text: #111;
  --light-text: #666;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s ease;
}
nav a:hover {
  color: var(--accent);
}

.hero {
  height: 85vh;
  background: url('https://source.unsplash.com/1600x900/?fashion,style') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
}
.hero-content h1 {
  font-size: 3.2rem;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.hero-content h1 span {
  color: var(--accent);
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.cta {
  background: var(--accent);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.cta:hover {
  background: #1064c0;
}

.section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.section p {
  color: var(--light-text);
  font-size: 1.1rem;
}
.section.alt {
  background: #fff;
  border-top: 1px solid #eee;
}
.section.light {
  background: #f2f2f2;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.gallery-item {
  max-width: 320px;
  text-align: center;
}
.gallery-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-item p {
  margin-top: 0.5rem;
  color: var(--light-text);
  font-size: 0.95rem;
}

footer {
  padding: 2rem;
  background: var(--primary);
  color: white;
  text-align: center;
}
footer .socials a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.95rem;
}
footer .socials a:hover {
  text-decoration: underline;
}
.hero {
  height: 85vh;
  background: url('img/back.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* dunkle Überlagerung für bessere Lesbarkeit */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
}
.rubriken-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.rubrik-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.rubrik-card:hover {
  transform: translateY(-5px);
}

.rubrik-card img {
  width: 100%;
  height: auto;
  display: block;
}

.rubrik-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
  color: var(--text);
}

.rubrik-card p {
  margin: 0 1rem 1.5rem;
  color: var(--light-text);
  font-size: 0.95rem;
}

@media (min-width: 600px) {
  .rubriken-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .rubriken-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
