/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000000;
    margin: 0;
    padding: 0;
}

/* Header and Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ff6b6b;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 20px;
}

section {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 30px;
}

h1, h2 {
    color: #2c3e50;
}

h1 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Music Player */
.music-player {
    background-color: #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
}

/* Press Coverage */
#press ul {
    list-style-type: none;
    padding: 0;
}

#press ul li {
    background-color: #f9f9f9;
    border-left: 4px solid #ff6b6b;
    margin-bottom: 10px;
    padding: 15px;
}

/* Contact Information */
#contact p {
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
}

header {
    background: #333;
    color: white;
    padding: 10px;
    position: relative;
}

.header-toggle {
    background: #444;
    border: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}

#nav-menu ul li a:hover {
    background: #555;
 }
    .menu-button {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
}

.menu-button:hover {
    background-color: #555;
    transform: scale(1.05);
}
}
