/* Eden's Fault - Homepage Stylesheet */
/* Depends on: shared.css (imported first) */
/* This file contains ONLY homepage-specific overrides */

/* ===== HOMEPAGE BODY OVERRIDE ===== */
/* Homepage centres content vertically using flexbox */
body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
}

/* Fixed elements don't participate in flex layout */
.dust,
.parental-advisory {
    position: fixed;
}

/* Container grows to fill space and centers content */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer stays at bottom */
footer {
    flex-shrink: 0;
}

/* ===== LOGO ===== */
.logo-container {
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container img {
    width: 100%;
    max-width: 800px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.9))
            drop-shadow(0 0 25px rgba(139,69,19,0.4));
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

/* ===== CONTENT ===== */
.content {
    color: #d4d4d4;
    animation: fadeIn 2s ease-in;
    text-align: center;
    width: 100%;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #f0e6d2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #b8b8b8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
        padding: 0 10px;
    }

    .logo-container img {
        max-width: 100%;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 480px) {
    .content h1 {
        font-size: 1.5rem;
    }

    .content p {
        font-size: 0.9rem;
    }
}