/* =========================
   Basis
========================= */
* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b0d16;
    color: #fff;
}

/* Bilder: nicht global aufblasen */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
   Header / Navigation
========================= */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;

    background: rgba(15, 17, 26, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 40px;
    width: auto;
}

/* Navigation */
.nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: 0.2s ease;
}

.nav a:hover {
    color: #4da3ff;
}

/* Dropdown */
.nav ul li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;

    background: rgba(15, 17, 26, 0.96);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 8px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.18s ease;
    z-index: 2000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 11px 16px;
    display: block;
    color: #c9cfdb;
    font-size: 14px;
    line-height: 1.4;
    transition: 0.15s ease;
}

.dropdown-menu li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
}

.no-click {
    pointer-events: none;
    cursor: default;
    color: #ccc;
}

/* Kontakt-Button */
.header-contact {
    background: #4da3ff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.header-contact:hover {
    background: #6bb4ff;
}

/* =========================
   Buttons
========================= */
.btn {
    padding: 10px 18px;
    background: #4da3ff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border: 1px solid transparent;
}

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

.btn.secondary {
    background: transparent;
    border: 1px solid #4da3ff;
    color: #dbe9ff;
}

.btn.secondary:hover {
    background: rgba(77,163,255,0.14);
}

/* Legacy support */
.btn.ghost {
    background: transparent;
    border: 1px solid #4da3ff;
}
.btn.ghost:hover {
    background: #4da3ff;
}

/* =========================
   Hero
========================= */
.hero {
    position: relative;
    padding: 90px 20px;
    text-align: center;
    min-height: 68vh;

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

    background: radial-gradient(1200px 700px at 30% 20%, rgba(77,163,255,0.12), transparent 55%),
                radial-gradient(900px 600px at 70% 35%, rgba(77,163,255,0.06), transparent 55%),
                #0b0d16;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.35));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.hero-logo {
    width: 320px;
    height: auto;
    margin: 0 auto 18px;
    transition: 0.2s ease;
}

.hero h1 {
    font-size: 42px;
    margin: 0 0 18px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 26px;
    color: #b9beca;
    line-height: 1.6;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================
   Versand Startseite
========================= */
.service-highlight {
    width: 100%;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Text */
.service-highlight .highlight-text {
    flex: 1;
    max-width: 620px;
}

.service-highlight .highlight-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 15px;
}

.service-highlight .highlight-text p {
    font-size: 1.2rem;
    color: #bbb;
    line-height: 1.6;
    margin: 0;
}

/* Bildbereich: unterstützt beide Klassennamen */
.service-highlight .highlight-images,
.service-highlight .highlight-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Nur hier Bilder regeln */
.service-highlight .highlight-images img,
.service-highlight .highlight-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

/* =========================
   Popular Section
========================= */
.popular-products {
    margin: 40px 0;
    text-align: center;
    padding: 20px 10px;
}

.popular-products h3 {
    font-size: 1.6rem;
    margin: 0 0 16px;
}

/* =========================
   Footer
========================= */
footer {
    background: #0f111a;
    color: #ccc;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: #fff;
    margin: 0 0 15px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-section a:hover {
    color: #4da3ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    color: #777;
}

.heart {
    color: #ff6b6b;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
    .header-container { padding: 0 18px; }
    .nav ul { gap: 18px; }

    .hero { padding: 70px 14px; min-height: 62vh; }
    .hero-logo { width: 260px; }
    .hero h1 { font-size: 32px; }

    .service-highlight {
        flex-direction: column;
        text-align: center;
        gap: 35px;
        padding: 50px 14px;
    }

    .service-highlight .highlight-images img,
    .service-highlight .highlight-image img {
        max-width: 360px;
    }
}

@media (max-width: 520px) {
    .hero-logo { width: 220px; }
    .hero h1 { font-size: 28px; }
    .service-highlight .highlight-text h2 { font-size: 2.2rem; }
}
