* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #f5f5f5;
    overflow-x: hidden;
}

header {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
        url('preview_img_5_large3.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #f5f5f5;
    text-decoration: none;
}

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

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

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4a90e2;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #f5f5f5;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #f5f5f5;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #4a90e2;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid #4a90e2;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin: 0 10px 20px;
}

.hero-btn:hover {
    background-color: #4a90e2;
    color: #0a0a0a;
}

.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4a90e2;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 16px;
    color: #cccccc;
}

.services {
    background-color: #0f0f0f;
}

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

.service-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #4a90e2;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f5f5f5;
}

.service-description {
    color: #cccccc;
    line-height: 1.6;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    margin: 5px;
    background-color: transparent;
    border: none;
    color: #cccccc;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    color: #4a90e2;
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 250px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #f5f5f5;
}

.portfolio-category {
    font-size: 14px;
    color: #4a90e2;
}

/* Hidden audio element */
.hidden-audio {
    display: none;
}

.music-player {
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 10px;
    margin-top: 60px;
}

.player-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #4a90e2;
}

.playlist {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.playlist-item:hover {
    background-color: #252525;
}

.playlist-item.active {
    background-color: #2a2a2a;
}

.track-number {
    font-size: 18px;
    font-weight: 600;
    width: 30px;
    color: #777;
}

.track-info {
    flex: 1;
    padding: 0 15px;
}

.track-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #f5f5f5;
}

.track-category {
    font-size: 14px;
    color: #999;
}

.track-duration {
    font-size: 14px;
    color: #777;
}

.play-btn {
    width: 40px;
    height: 40px;
    background-color: #4a90e2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background-color: #3a78c2;
    transform: scale(1.1);
}

.player-controls {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background-color: #444;
    transform: scale(1.1);
}

.control-btn.active {
    background-color: #4d4d4d;
    transform: scale(1.1);
}

.play-pause-btn {
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
}

.play-pause-btn:hover {
    background-color: #3a78c2;
}

/* Progress bar */
.progress-container {
    flex: 1;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0 10px 0;
    height: 6px;
    width: 100%;
}

.progress-bar {
    background-color: #333;
    border-radius: 5px;
    height: 100%;
    width: 0%;
    transition: width 0.3s linear;
}

.progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #4a90e2;
    border-radius: 5px;
    width: 30%;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

.management {
    background-color: #0f0f0f;
}

.management-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-card {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 100%;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.artist-img {
    width: 250px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.artist-info {
    flex: 1;
}

.artist-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4a90e2;
}

.artist-bio {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #cccccc;
}

.artist-social {
    display: flex;
    gap: 15px;
}

.artist-social-list {
    list-style: none;
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #f5f5f5;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #4a90e2;
}

.contact {
    position: relative;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #4a90e2;
}

.contact-details {
    list-style: none;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 20px;
    margin-right: 15px;
    color: #4a90e2;
}

.contact-text {
    line-height: 1.6;
    color: #cccccc;
}

/* Form status message styling */
.form-status {
    margin-top: 20px;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #F44336;
    border: 1px solid #F44336;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    color: #f5f5f5;
    font-size: 16px;
}

.form-input:focus {
    outline: none;
    border-color: #4a90e2;
}

textarea.form-input {
    height: 150px;
    resize: vertical;
}

.form-btn {
    padding: 12px 30px;
    background-color: #4a90e2;
    border: none;
    border-radius: 5px;
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-btn:hover {
    background-color: #3a78c2;
}

footer {
    background-color: #0a0a0a;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #4a90e2;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4a90e2;
}

.footer-copy {
    color: #777;
    font-size: 14px;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 80%;
    max-width: 900px;
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #4a90e2;
    cursor: pointer;
    z-index: 10;
}

.modal-img {
    width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.5s ease;
    }

    .nav-links.active {
        right: 0;
        background-color: #0a0a0a;
        /* Keep the background dark */
    }

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

    .about-content {
        flex-direction: column;
    }

    .artist-card {
        flex-direction: column;
        text-align: center;
    }

    .artist-img {
        margin: 0 0 20px;
    }
}