/* Stilizare generală */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: white;
}

.container {
    width: 90%;
    margin: 0 auto;
}

h1, h2 {
    text-align: center;
}

header {
    background-image: url('img/header-background.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 0;
}

/* Aranjarea imaginii și titlului artistului (DJ Vibes) */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dj-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff6347; /* Border color */
}

h1 {
    font-size: 2.5em;
    font-weight: bold;
}

/* Navigare */
.header-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.header-nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.header-nav ul li a:hover {
    color: #ff6347;
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

/* Poziționarea email-ului în partea dreaptă sus */
.header-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    position: absolute;
    right: 20px;
}

.email-link {
    text-decoration: none;
    color: white;
    font-size: 1.2em;
    font-weight: bold;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ff6347;
}

/* Poziționarea secțiunii Evenimente */
.section {
    padding: 50px 0;
}

#events {
    margin-top: 100px; /* Așezăm evenimentele sub player */
}

/* Stilizarea pentru muzica */
.music-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.music-item {
    text-align: center;
    cursor: pointer;
}

.music-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.music-item img:hover {
    transform: scale(1.1);
}

.music-item h3 {
    margin-top: 10px;
    font-size: 1.1em;
    color: white;
}

/* Player audio */
.audio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 100;
}

#song-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 20px;
}

#song-info img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#song-info img:hover {
    transform: scale(1.1);
}

#song-title {
    font-size: 1.2em;
    font-weight: bold;
}

#player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

#player-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
}

#player-controls button:hover {
    color: #ff6347;
}

#player-controls input[type="range"] {
    width: 150px;
}
