/* Move all CSS from the style tag in the original HTML to this file */
:root {
    --primary: #ed7d31;
    --secondary: #fec107;
    --dark: #0f0c29;
    --darker: #0a081c;
    --light: #f8f9fa;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background-color: rgba(15, 12, 41, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary) !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--light) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--light);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1470225620780-dba8ba36b745?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 125, 49, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(254, 193, 7, 0.4);
    color: var(--dark);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
}

.section-subtitle {
    color: #aaa;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Service Cards */
.service-card {
    background-color: rgba(15, 12, 41, 0.6);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.service-card p {
    color: #aaa;
    margin-bottom: 20px;
}

/* Music Store Styles */
.music-store {
    background-color: rgba(15, 12, 41, 0.4);
}

.album-card {
    background-color: rgba(15, 12, 41, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.album-cover {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

.album-info {
    padding: 20px;
}

.album-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.album-artist {
    color: #aaa;
    margin-bottom: 15px;
}

.album-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

/* Distribution Section */
.distribution-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.distribution-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-right: 20px;
    flex-shrink: 0;
}

.distribution-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.distribution-content p {
    color: #aaa;
}

/* Technology Section */
.tech-feature {
    background-color: rgba(15, 12, 41, 0.6);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateX(10px);
    background-color: rgba(15, 12, 41, 0.8);
}

.tech-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Marketing Section */
.testimonial-card {
    background-color: rgba(15, 12, 41, 0.6);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: #ccc;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin-bottom: 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* Case Study Card */
.case-study-card {
    background-color: rgba(15, 12, 41, 0.6);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.case-study-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.case-study-content {
    padding: 25px;
}

.case-study-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.case-study-content p {
    color: #aaa;
    margin-bottom: 20px;
}

.case-study-tag {
    display: inline-block;
    background-color: rgba(237, 125, 49, 0.2);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* About Section */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    margin-left: 50px;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -35px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--darker);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #aaa;
}

/* Contact Section */
.contact-form {
    background-color: rgba(15, 12, 41, 0.6);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 0.25rem rgba(237, 125, 49, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info {
    background-color: rgba(15, 12, 41, 0.6);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-text p {
    color: #aaa;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--dark);
    padding: 70px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-about p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Audio Player */
.audio-player {
    background-color: rgba(15, 12, 41, 0.8);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    display: none;
}

.audio-player.active {
    display: block;
}

.audio-controls {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.play-pause-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-pause-btn:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

.audio-progress {
    flex-grow: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.audio-progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary);
    border-radius: 3px;
}

.audio-time {
    margin-left: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.audio-info {
    display: flex;
    align-items: center;
}

.audio-cover {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
}

.audio-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.audio-details p {
    margin-bottom: 0;
    color: #aaa;
    font-size: 0.9rem;
}

/* Team Avatar */
.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--primary);
}

/* Accordion Styles */
.accordion-button {
    background-color: rgba(15, 12, 41, 0.6);
    color: var(--light);
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(237, 125, 49, 0.2);
    color: var(--primary);
}

.accordion-body {
    background-color: transparent;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .album-card, .tech-feature, .testimonial-card, .case-study-card, .contact-form, .contact-info {
        margin-bottom: 30px;
    }
    
    .timeline-item {
        margin-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item::before {
        left: -25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .contact-form, .contact-info {
        padding: 25px;
    }
    
    .footer-links {
        margin-bottom: 30px;
    }
}