body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #0f1010;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #111;
    border-bottom: 2px solid #FFD700;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@keyframes flash {
    0%, 100% {
        color: #FFD700; /* Golden yellow */
    }
    50% {
        color: #FFF; /* White or any contrasting color */
    }
}

.logo {
    font-size: 24px;
    font-weight: bold;
    animation: flash 1s infinite; /* 1-second duration, infinite loop */
}


nav {
    display: flex;
}

nav ul {
    background-color: #2c2c2c; /* Light black background color */
    padding: 10px;
    border-radius: 5px; /* Optional: Rounded corners */
    display: flex;
    list-style: none;
    margin: 0; /* Removed extra padding duplication */
}

nav ul li {
    margin: 0 15px;
    
}

nav ul li:last-child {
    border-right: none; /* Remove separator from the last item */
}

nav ul li a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #FFD700; /* Button-like background */
    color: #000;
    border: 1px solid #333; /* Border for buttons */
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    background-color: #333;
    color: #FFD700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    background-color: #FFD700;
    height: 3px;
    margin: 4px 0;
    width: 25px;
}

#menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #111;
    border: 2px solid #FFD700;
    border-radius: 5px;
    overflow: hidden;
}

#menu a {
    padding: 10px;
    text-decoration: none;
    color: #FFD700;
    text-align: center;
}

.separator {
    height: 1px;
    background-color: #FFD700;
    margin: 5px 0;
}

#menu a:hover {
    background-color: #FFD700;
    color: #000;
}

.section {
    padding: 60px 20px;
    min-height: 100vh;
    border-bottom: 1px solid #FFD700;
}

.section h2 {
    margin-bottom: 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Hide the main menu on smaller screens */
    }

    .hamburger {
        display: flex; /* Show hamburger menu icon */
    }

    #menu {
        display: flex;
    }
}
