/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #e0e0e0;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero */
.hero {
    position: relative;
    height: 600px;
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.55),
        rgba(0, 0, 0, 0.85)
    ),
    url("hero_bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}

.logo-container img {
    width: 450px;
    height: 450px;
    object-fit: contain;
    animation: fadeIn 1.8s ease-out forwards;
    transition: width 0.2s ease, height 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 0 20px rgba(255, 50, 50, 0.35));
}

.logo-container img:hover {
    filter: drop-shadow(0 0 30px rgba(255, 60, 60, 0.6));
}

/* Mute button */
.mute-button {
    margin-top: 10px;
    padding: 6px 14px;
    font-size: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.mute-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Menu */
.menu {
    position: absolute;
    bottom: 20px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    gap: 36px;
}

.menu a {
    text-decoration: none;
    color: #dddddd;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(255, 50, 50, 0.25);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.menu a:hover {
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(255, 80, 80, 0.8),
        0 0 16px rgba(255, 0, 0, 0.6);
}

/* Main */
.content {
    padding: 60px 40px;
    text-align: center;
    flex: 1;
}

/* Products */
.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-card {
    background-color: #1e1e1e;
    padding: 20px;
    width: 220px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 20px rgba(255, 50, 50, 0.25),
        0 12px 30px rgba(0, 0, 0, 0.8);
}

.product-image {
    background-color: #2a2a2a;
    height: 180px;
    margin-bottom: 15px;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    text-align: center;
    padding: 20px;
    border-top: 1px solid #333;
    color: #aaa;
}

/* Mobile fallback */
@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }

    .logo-container img {
        width: 280px;
        height: 280px;
    }
}
