/* Base Styles */
:root {
    --primary-color: #b500ac; /*#7000b5*/
    --primary-dark: #5a0092;
    --primary-light: #a54de7;
    --secondary-color: #212121;
    --accent-color: #ff5252;
    --text-color: #333;
    --text-light: #777;
    --background-color: #ffffff;
    --background-alt: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --section-padding: 3rem 0;

}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--section-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(112, 0, 181, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(112, 0, 181, 0.15);
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links li a {
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

.nav-links li a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover:not(.btn-nav) {
    color: var(--primary-color);
}

.nav-links li a:hover:not(.btn-nav)::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
    /*background: linear-gradient(to right, var(--primary-color), var(--accent-color));*/



}

.split-layout {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.hero-image {
    position: relative;
	top: 50px;
    width: 110%;
    grid-column: 1;
    grid-row: 1;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}


.hero-content {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    height: 100vh;
}

.hero-text {
    max-width: 90%;
}

.hero-text h1 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.hero-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
        color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

    .hero-buttons .btn-primary {
        background-color: white;
        color: var(--primary-color);
        border-color: white;
    }

    .hero-buttons .btn-primary:hover {
        background-color: transparent;
        color: white;
    }


/* Services Section */
.services {
    background-color: var(--background-color);

}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.left-aligned {
    text-align: left;
}

.left-aligned h2::after {
    left: 0;
    transform: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.services-cta {
    text-align: center;
    margin-top: 1rem;
}

.services-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

    .cta-section .btn-primary {
        background-color: white;
        color: var(--primary-color);
        border-color: white;
    }

    .cta-section .btn-primary:hover {
        background-color: transparent;
        color: white;
    }

/* About Section */
.alt-bg {
    background-color: var(--background-alt);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text h3 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.timeline {
    margin: 2rem 0;
}

.timeline li {
    display: flex;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 60px;
    height: calc(100% + 1.5rem);
    width: 2px;
    background-color: var(--primary-light);
    opacity: 0.2;
}

.timeline li:last-child::before {
    display: none;
}

.year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    width: 60px;
    flex-shrink: 0;
}

.timeline-content {
    margin-left: 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
}

/* Music Section */
.music {
    background-color: var(--background-color);
}

.music-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.music-player {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.music-services {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-block {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.service-block h3 {
    margin-bottom: 1rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-features li i {
    color: var(--primary-color);
}

.music-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background-color: var(--background-alt);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(112, 0, 181, 0.05);
}

.accordion-header h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
    transition: var(--transition);
}

.accordion-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.accordion-icon::before {
    top: 8px;
    left: 0;
    width: 16px;
    height: 2px;
}

.accordion-icon::after {
    top: 1px;
    left: 7px;
    width: 2px;
    height: 16px;
}

.accordion-item.active .accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-item.active .accordion-header h3 {
    color: var(--primary-color);
}

.accordion-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding-bottom: 2rem;
    max-height: 500px;
}

/* Contact Section */
.contact {
    /*background-color: var(--background-color);*/
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    /*color: white;*/
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;

}

.contact-intro {
    margin-bottom: 2rem;
       color: white;
}

.contact-details {
    margin-bottom: 2rem;
       color: white;

}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 1rem;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item p {
    margin-bottom: 0;
    /*color: var(--text-color);*/
    color: white;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(112, 0, 181, 0.1);
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-branding {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-logo img {
    filter: brightness(0) invert(1) opacity(0.9);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer-branding p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-links h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-legal {
    flex: 1;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

    .about-inner,
    .music-grid,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .music-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-nav {
        justify-content: space-between;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .music-stats {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }

    /* Mobile Hero Modifications */
    .hero {
        position: relative;
		min-height: 0vh;
        height: 50vh;
        padding: 0;

    }

    .hero-image {
        position: absolute;
        top: 50px;
        left: 0;
		width: 100%;
        height: 50vh;
        z-index: 1;
    }

    .hero-image img {
		width: 100%;
        height: 50vh;
        object-fit: cover;
    }

    .hero-image .overlay {
        display: none;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        z-index: 2;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: transparent;
    }

    .hero-text {
        padding: 7rem 1.5rem 0 1.5rem;
        text-align: right;
        max-width: 100%;
    }

    .hero-text h1, .hero-text h2 {
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-text p {
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1.5rem 4rem 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Blog CTA Section */
.blog-cta {
    padding: 4rem 0;
}

.blog-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.blog-cta-text {
    flex: 1;
}

.blog-cta-text h2 {
    margin-bottom: 1rem;
}

.blog-cta-text p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.blog-cta-button {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .blog-cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .blog-cta-text {
        margin-bottom: 1.5rem;
    }
}