body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #1a1a2e; /* Dunkler Hintergrund */
    color: #e0e0e0; /* Helle Textfarbe */
    line-height: 1.6;
}

.header {
    background: rgba(26, 26, 46, 0.8); /* Semi-transparenter Header */
    backdrop-filter: blur(10px); /* Glassmorphismus-Effekt */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e0e0e0;
}

.logo span {
    color: #ff6b6b; /* Akzentfarbe */
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b6b;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://picsum.photos/1500/800?random=5') no-repeat center center/cover; /* Hero Bild */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    margin-top: -6rem; /* Header überlappen */
}

.hero-content {
    padding: 2rem;
    max-width: 800px;
    background: rgba(26, 26, 46, 0.7); /* Semi-transparenter Hintergrund für Text */
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.btn {
    display: inline-block;
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #ff4757;
    transform: translateY(-3px);
}

.produkte, .ueber-uns {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    background: rgba(26, 26, 46, 0.9); /* Dunklerer Hintergrund für Sektionen */
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.produkte h2, .ueber-uns h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff6b6b;
    position: relative;
}

.produkte h2::after, .ueber-uns h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ff6b6b;
    border-radius: 2px;
}

.produkt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.produkt-card {
    background: #2e2e4e; /* Karte Hintergrund */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.produkt-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #4a4a6e;
    margin-bottom: 1rem;
}

.produkt-card h3 {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.produkt-card p {
    color: #cccccc;
    padding: 0 1rem;
    margin-bottom: 1rem;
}

.produkt-card .preis {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4CAF50; /* Preis Farbe */
    display: block;
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    background-color: #4a4a6e;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-small:hover {
    background-color: #5f5f7f;
}

.ueber-uns p {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #d0d0d0;
}

.footer {
    background-color: #1a1a2e;
    color: #cccccc;
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    border-top: 1px solid #2e2e4e;
}

.social-links a {
    color: #cccccc;
    text-decoration: none;
    margin: 0 0.8rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff6b6b;
}
