/* Essential styles for music page only */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 35px 12%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 25px;
    color: white;
    font-weight: 600;
    transition: 0.3s ease;
}

.logo:hover {
    color: burlywood;
    text-shadow: 0 0 25px burlywood, 0 0 50px burlywood;
    transform: scale(1.1);
}

span {
    color: burlywood;
}

.navbar a {
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin: 0 20px;
    transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
    color: burlywood;
    border-bottom: 3px solid burlywood;
}

.contact {
    padding: 10px 28px;
    background: white;
    color: black;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact:hover {
    background: burlywood;
    box-shadow: 0 0 25px burlywood;
    color: white;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background: burlywood;
}

::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.6);
    width: 50px;
}

.gallery-container {
    padding: 120px 12% 60px;
    background: rgb(241, 241, 241);
    min-height: 100vh;
}

.gallery-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    margin-top: 50px;
}

.music-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.music-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.music-card:hover {
    box-shadow: 0 8px 20px rgba(222, 184, 135, 0.2);
}

.music-info {
    padding: 20px 20px 10px;
}

.music-info h3 {
    color: black;
    font-size: 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.music-info h3 i {
    color: burlywood;
}

.music-info p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.audio-player {
    padding: 0 20px 20px;
    margin-top: auto;
}

.audio-player audio {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
}

.track-details {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
}

.track-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.track-details i {
    color: burlywood;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.footer-text p {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header {
        padding: 20px 4%;
    }

    .navbar a {
        margin: 0 15px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 15px 3%;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px 3%;
        background: rgba(0, 0, 0, 0.9);
        border-top: 1px solid rgba(222, 184, 135, 0.2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        margin: 15px 0;
        text-align: center;
        font-size: 18px;
    }

    .contact {
        display: none;
    }

    .gallery-container {
        padding: 100px 4% 40px;
    }

    .gallery-title {
        font-size: 32px;
        margin: 30px 0;
    }

    .music-intro {
        padding: 0 20px;
        font-size: 16px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .music-card {
        margin: 0 10px;
    }
}

@media (max-width: 450px) {
    .gallery-title {
        font-size: 28px;
    }
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
}