/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
    animation: flash 1.5s infinite;
}

.loading-logo {
    width: 9.375rem;
    height: 2.5rem;
    object-fit: contain;
}

.progress-bar {
    width: 16rem;
    height: 0.25rem;
    background: #1F2937;
    border-radius: 9999px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
    border-radius: 9999px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.8);
}

.header-container {
    max-width: 1600px;
    width: 100%;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

/* FIX: This style for main content element fixes the top space issue */
main {
    padding-top: 5rem; /* This value should match the header height */
}


.logo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 0;
}

.logo-btn:hover {
    transform: scale(1.05);
}

.header-logo-img {
    width: 9.375rem;
    height: 2.5rem;
    object-fit: contain;
}

.desktop-nav {
    display: none;
    gap: 2.5rem;
}

.nav-link {
    color: #D1D5DB;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffffff;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: #A855F7;
}

.mobile-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid #374151;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #D1D5DB;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.mobile-nav-link:hover {
    color: white;
    background: #374151;
}

/* Hero Section */
.hero-section {
    position: relative;
    /* FIX: Adjusted min-height to account for the new padding-top on main */
    min-height: calc(100vh - 5rem);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 10%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    z-index: 2;
}

.hero-bottom-content {
    position: relative;
    z-index: 3;
    padding: 2rem 1rem 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-icon.fa-play, .stat-icon.fa-award {
    color: #8B5CF6;
}

.stat-icon.fa-music {
    color: #3B82F6;
}

.counter {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: bold;
    color: white;
}

.stat-label {
    color: #9CA3AF;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7C3AED, #2563EB);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.25);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000000, #111827);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #A855F7, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: #D1D5DB;
    max-width: 32rem;
    margin: 0 auto;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(90deg, #8B5CF6, #3B82F6);
    margin: 1.5rem auto 0;
}

.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
    order: 2;
}

.about-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 1rem;
    border: 2px solid #4B5563;
}

.decorative-element {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s infinite;
    z-index: -1;
}

.element-1 {
    top: -1rem;
    right: -1rem;
    width: 2rem;
    height: 2rem;
    background: #8B5CF6;
}

.element-2 {
    bottom: -1rem;
    left: -1rem;
    width: 1.5rem;
    height: 1.5rem;
    background: #3B82F6;
    animation-delay: 1s;
}

.about-text {
    order: 1;
}

.about-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #F3F4F6;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #D1D5DB;
}

.about-cta {
    padding-top: 1.5rem;
}

/* Music Section */
.music-section {
    padding: 5rem 0;
    background: #000000;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.track-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.track-card:hover {
    background: rgba(17, 24, 39, 0.7);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.track-video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000000;
}

.track-thumbnail, .video-overlay, .player-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.track-thumbnail {
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.player-container {
    z-index: 3;
    display: none;
}

.player-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.track-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: white;
    transform: scale(1.1);
}

.play-button i {
    color: #000000;
    font-size: 2rem;
    margin-left: 0.25rem;
}

.release-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(139, 92, 246, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 4;
}

.track-content {
    padding: 1.5rem;
}

.track-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.track-card:hover .track-title {
    color: #A855F7;
}

.track-description {
    color: #9CA3AF;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.track-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.track-play-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #A855F7;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.track-play-btn:hover {
    color: #8B5CF6;
}

.track-external {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.track-external:hover {
    color: white;
}

.music-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #111827, #000000);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    background: rgba(17, 24, 39, 0.7);
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.1);
}

.service-card.popular {
    border: 2px solid #8B5CF6;
}

.service-card.popular:hover {
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(55, 65, 81, 0.5);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: #A855F7;
}

.service-price {
    text-align: right;
}

.price {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
}

.price-label {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.service-description {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 50px;
}

.audio-demo {
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.audio-demo-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #A855F7;
    margin-bottom: 0.75rem;
    text-align: center;
}

.audio-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-demo {
    background: #4B5563;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-demo:hover {
    background: #6B7280;
}

.btn-demo.playing {
    background: #8B5CF6;
}

.audio-player {
    display: none;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #D1D5DB;
    font-size: 0.875rem;
}

.service-features i {
    color: #10B981;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-service {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #8B5CF6;
    color: #A855F7;
    background: transparent;
    cursor: pointer;
}

.btn-service:hover {
    background: #8B5CF6;
    color: white;
}

.btn-service.popular {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6);
    color: white;
    border: none;
}

.btn-service.popular:hover {
    background: linear-gradient(135deg, #7C3AED, #2563EB);
}

/* Connect Section */
.connect-section {
    padding: 5rem 0;
    background: #000000;
}

.connect-content {
    display: grid;
    gap: 3rem;
}

.contact-form-container {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

#form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
}
#form-status.success {
    background-color: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    color: #10B981;
}
#form-status.error {
    background-color: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    color: #EF4444;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid #4B5563;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B5CF6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.form-group textarea {
    resize: none;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    justify-content: center;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
}

.loading-spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #374151;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #A855F7;
    font-size: 1.25rem;
}

.contact-label {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: #A855F7;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(55, 65, 81, 0.5);
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(75, 85, 99, 0.5);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-link.youtube:hover .social-icon i {
    color: #EF4444;
}

.social-link.instagram:hover .social-icon i {
    color: #EC4899;
}

.social-link.soundcloud:hover .social-icon i {
    color: #F97316;
}

.social-name {
    color: white;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.social-description {
    color: #9CA3AF;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .connect-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .tracks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Animations */
@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.3;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}