/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e9e9e9;
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styles */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
}

header.menu-active {
    background-color: rgba(0, 0, 0, 1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: cursive;
    font-size: 3rem;
    font-weight: 100;
    text-align: center;
    flex: 1;
    color: #e9e9e9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #ffffff;
}

.menu {
    display: flex;
    list-style-type: none;
}

.left-menu, .right-menu {
    flex: 1;
}

.left-menu {
    justify-content: flex-end;
}

.right-menu {
    justify-content: flex-start;
}

.menu li {
    margin: 0 1.5rem;
}

.menu a {
    color: #e9e9e9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.menu a.active {
    color: #ffffff;
    font-weight: bold;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

/* Main content styles */
main {
    flex: 1;
    padding: 2rem;
    background-color: #000000;
    position: relative;
    z-index: 1;
}

h1 {
    margin-bottom: 1rem;
}

/* Footer styles */
footer {
    background-color: #101010;
    padding: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
    nav {
        flex-wrap: wrap;
    }

    .hamburger {
        display: block;
        order: 1;
        flex: 0 0 auto;
    }

    .logo {
        order: 2;
        flex: 1;
        text-align: center;
    }

    .left-menu, .right-menu {
        display: none;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 1);
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu li {
        margin: 0;
        text-align: center;
    }

    .mobile-menu a {
        display: block;
        padding: 0.5rem;
    }
}
