* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    /* Wichtig: Padding für den fixed Header */
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header */
.header {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000; /* Rot */
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Navigation - über gesamte Breite verteilt */
.nav-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 0; /* Kein Gap, da space-between verwendet wird */
}

.nav-link {
    color: #ff0000; /* Rot */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ff4444; /* Helleres Rot für Hover */
}

.nav-link.active {
    color: #fff; /* Weiß für aktiven Link */
}

.shop-button {
    flex-shrink: 0;
}

.shop-btn {
    background: #ff0000;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.shop-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

/* Social Media Section */
.socials-section {
    padding: 80px 0 120px 0;
    background-color: #000;
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 25px;
}

.icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.social-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

/* Special styling for JOIN THE FAMILY card */
.join-card .social-icon {
    background-color: #000;
    border: 3px solid #fff;
}

.join-card .icon-img {
    filter: brightness(0) invert(1);
    width: 80px;
    height: 80px;
}

.join-card .social-title {
    color: #ff0000;
    font-size: 16px;
}

/* Footer */
.footer {
    background-color: #ff0000;
    padding: 60px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    gap: 60px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }
    
    .nav-list {
        gap: 20px;
        flex: 1;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .socials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    
    .social-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .icon-img {
        width: 50px;
        height: 50px;
    }
    
    .join-card .icon-img {
        width: 60px;
        height: 60px;
    }
    
    .footer-nav-list {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .nav-list {
        gap: 15px;
        flex: 1;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .shop-btn {
        padding: 6px 10px;
        font-size: 9px;
    }
    
    body {
        padding-top: 60px;
    }
    
    .socials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .social-icon {
        width: 90px;
        height: 90px;
    }
    
    .icon-img {
        width: 45px;
        height: 45px;
    }
    
    .join-card .icon-img {
        width: 55px;
        height: 55px;
    }
}