/* ========================================
   Bloomies Website Styles
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Visually Hidden (für SEO H1) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    /* Farben - Passe diese an dein Spiel an! */
    --color-bg: #22283d;
    --color-primary: #9eff44;
    --color-primary-dark: #7dd632;
    --color-primary-darker: #8eeb3a;
    --color-text: #ededed;
    --color-text-dark: #b8b8b8;
    --color-accent: #ff6b9d;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Parallax Background */
.parallax-bg,
.parallax-bg-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 150vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.parallax-bg {
    background-image: url('../images/background.jpg');
    background-attachment: fixed;
    z-index: -2;
}

.parallax-bg-blur {
    background-image: url('../images/background-blur.jpg');
    background-attachment: fixed;
    opacity: 0.5;
    z-index: -3;
}

/* Keine Navigation mehr - entfernt */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.logo-container {
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.main-logo {
    max-width: 900px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Noto Sans', sans-serif;
}

.cta-button.steam-button {
    background: #eafb73;
    color: black;
    box-shadow: 0 4px 20px rgba(234, 251, 115, 0.4);
}

.cta-button.steam-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(163, 137, 206, 0.6);
}

.cta-button.secondary-button {
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
    color: black;
    box-shadow: 0 4px 20px rgba(158, 255, 68, 0.4);
}

.cta-button.secondary-button:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

.button-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0);
}

/* Content Sections */
.about-section,
.features-section {
    padding: 100px 20px;
    position: relative;
}

.trailer-section {
    padding: 100px 20px 10px;
    position: relative;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text);
    text-align: center;
}

.description strong {
    color: var(--color-primary);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(163, 137, 206, 0.2);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(163, 137, 206, 0.3);
}

.feature-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.feature-item p {
    font-size: 16px;
    color: var(--color-text-dark);
    line-height: 1.6;
}

/* Trailer Section */
.video-container {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    position: relative;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-text-dark);
}

/* Social Links Section (Vuntra-Style) */
.social-section {
    padding: 30px 20px 60px;
    position: relative;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 100%);
    color: black;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(163, 137, 206, 0.5);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
}

.social-button-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0);
}

/* Text Links */
.text-links {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto 30px;
}

.text-links a {
    background: white;
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.text-links a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Copyright */
.copyright {
    text-align: center;
    color: black;
    font-size: 14px;
    margin-top: 60px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 800px) {
    .navigation {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-logo {
        max-width: 300px;
    }

    h2 {
        font-size: 36px;
    }

    .hero-buttons {
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }

    .cta-button {
        flex: 1;
        font-size: 14px;
        padding: 14px 20px;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Parallax deaktivieren auf Mobile */
    .parallax-bg,
    .parallax-bg-blur {
        background-attachment: scroll;
        height: 160vh;
    }
}

@media (max-width: 500px) {
    .navigation {
        padding: 10px 15px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    h2 {
        font-size: 28px;
    }

    .description {
        font-size: 16px;
    }
}
