/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff !important;
    background: url('images/purple-blue-bg_3.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
    background-attachment: fixed !important;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #39259c, #5a4fcf);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: transparent !important;
    color: white !important;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Featured Beats Section */
.featured-beats {
    background: transparent !important;
    color: white !important;
    padding: 4rem 0;
}

.featured-beats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #5a4fcf !important;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.beats-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.beat-preview {
    background: rgba(0,0,0,0.4) !important;
    color: white !important;
    border: 1px solid rgba(90, 79, 207, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.beat-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(90, 79, 207, 0.2);
}

.beat-preview iframe {
    border-radius: 10px;
    margin-bottom: 1rem;
}

.beat-info h3 {
    color: #5a4fcf !important;
    margin-bottom: 0.5rem;
}

.beat-info p {
    color: #ccc !important;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: transparent !important;
    color: white !important;
    padding: 4rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #5a4fcf !important;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(0,0,0,0.4) !important;
    color: white !important;
    border: 1px solid rgba(90, 79, 207, 0.3);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(90, 79, 207, 0.2);
    border-color: rgba(90, 79, 207, 0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #5a4fcf !important;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #ccc !important;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #5a4fcf !important;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #7c6ce8 !important;
}

/* CTA Section */
.cta-section {
    background: rgba(57, 37, 156, 0.3) !important;
    color: white !important;
    padding: 4rem 0;
    text-align: center;
    border-radius: 20px;
    margin: 2rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #39259c, #5a4fcf);
    color: white;
    box-shadow: 0 4px 15px rgba(57, 37, 156, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2d1a7a, #4a3fb8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 37, 156, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #5a4fcf;
    border: 2px solid #5a4fcf;
}

.btn-secondary:hover {
    background: #5a4fcf;
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: rgba(0,0,0,0.6) !important;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #5a4fcf;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(57, 37, 156, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .beats-preview {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services h2, .featured-beats h2 {
        font-size: 2rem;
    }
}

/* Loading Animation */
.beat-preview iframe {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Text Shadow for Better Readability */
h1, h2, h3 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.1);
}

::-webkit-scrollbar-thumb {
    background: #39259c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a4fcf;
}