/* Harmony Radio CSS */

/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background: linear-gradient(90deg, #0052D4, #65C7F7, #9CECFB);
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Live Player */
.live-player {
    padding: 2rem 0;
    background: #fff;
}

.player-container {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.player-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.now-playing {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#audio-player {
    width: 100%;
}

.player-controls {
    text-align: center;
    margin-top: 1rem;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}
