* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }

/* TOP BAR */
.top-bar {
  background: #111;
  color: #aaa;
  font-size: 13px;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: #d4116b;
  font-weight: 600;
}

/* HEADER */
header { background: #fff; border-bottom: 1px solid #eee; }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.logo-x {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 48px;
  color: #8B0000;
  line-height: 1;
}
.logo-sub {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 24px;
  color: #888;
  line-height: 48px;
}
.nav {
  display: flex;
  gap: 15px;
  align-items: center;
}
.nav a {
  color: #333;
  font-size: 14px;
  transition: color 0.2s;
}
.nav a:hover { color: #d4116b; }
.btn-primary {
  background: #d4116b;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600;
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid #ccc;
  color: #333;
  font-size: 24px;
  padding: 5px 12px;
  border-radius: 5px;
  cursor: pointer;
}

/* CATEGORY BAR - horizontal nebeneinander */
.cat-bar {
  background: #fff;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  border-bottom: 1px solid #eee;
}
.cat-bar a {
  color: #333;
  text-decoration: none;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f5f5f5;
  white-space: nowrap;
  transition: all 0.2s;
}
.cat-bar a:hover {
  background: #d4116b;
  color: #fff;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d0a3e 40%, #1a0a2e 100%);
  padding: 60px 20px 50px;
  text-align: center;
}
.hero-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}
.sub {
  color: #ccc;
  font-size: 16px;
  margin-bottom: 25px;
}
.hero-search {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-search input {
  padding: 12px 18px;
  border-radius: 25px;
  border: none;
  background: #fff;
  color: #333;
  width: 250px;
  font-size: 14px;
}
.hero-search select {
  padding: 12px 18px;
  border-radius: 25px;
  border: none;
  background: #fff;
  color: #555;
  font-size: 14px;
}
.hero-search button {
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  background: #d4116b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-search button:hover { background: #b80e5a; }
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.quick-links a {
  color: #ccc;
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid #555;
  border-radius: 15px;
  transition: all 0.2s;
}
.quick-links a:hover {
  border-color: #d4116b;
  color: #d4116b;
}

/* INFO STRIP */
.info-strip {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 30px 20px;
  background: #fff;
  flex-wrap: wrap;
}
.info-item {
  text-align: center;
  color: #d4116b;
  font-weight: 600;
  font-size: 15px;
}
.info-item small {
  display: block;
  color: #888;
  font-weight: 400;
  font-size: 12px;
  margin-top: 3px;
}

/* SECTION */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
}
.section-header {
  margin-bottom: 25px;
}
.section-header h2 {
  font-size: 24px;
  color: #222;
}

/* CATEGORY GRID */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}
.cat-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}
.cat-card:hover {
  border-color: #d4116b;
  background: #fafafa;
}
.cat-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px;
}
.cat-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid #eee;
  margin-top: 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer-col h4 {
  color: #222;
  margin-bottom: 12px;
  font-size: 15px;
}
.footer-col p, .footer-col a {
  color: #666;
  font-size: 13px;
  line-height: 1.8;
  display: block;
}
.footer-col a:hover { color: #d4116b; }
.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #eee;
  color: #999;
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px) {
  .menu-btn { display: block; }
  .nav { display: none; }
  .nav.show { display: flex; flex-direction: column; background: #fff; padding: 15px; position: absolute; top: 100%; left: 0; right: 0; z-index: 100; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
  .header-inner { position: relative; }
  .hero h1 { font-size: 26px; }
  .hero-search input { width: 100%; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-bar { gap: 3px; }
  .cat-bar a { font-size: 12px; padding: 5px 10px; }
}