body {
    background-color: black;
    background: url('/images/background.png') no-repeat center center fixed;
    background-size: cover;
    background-color: black;
    color: white;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: inline-block;
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    padding-left: 10%;
    width: 100%;
    padding-bottom: 150px; /* Extra space to avoid overlap */
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    padding: 20px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.support-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    background-color: #a90000;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    position: relative;
    z-index: 2;
}

.support-button:hover {
    background-color: darkred;
}

/* Responsive Styling */
@media (max-width: 768px) {
    body {
        background: url('/images/background_vert.png') no-repeat top center;
        background-size: contain; /* Ensures the full image is visible */
        background-color: black;
        align-items: center;
    }
    header {
        position: fixed;
        bottom: 0;
        top: auto;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 10px 0;
    }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .hero {
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding: 20px;
        width: 100%;
        padding-bottom: 200px; /* More space for mobile menu */
    }
    .hero-content {
        width: 80%;
        position: relative;
        z-index: 2;
    }
    .support-button {
        position: relative;
        z-index: 2;
    }
}