/* General Styles */
:root {
    --primary-color: #2e1a47;
    --secondary-color: #9b59b6;
    --accent-color: #ff9800;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --violet-blue: #3b429fff;
    --lavender-floral: #aa7dceff;
    --mimi-pink: #f5d7e3ff;
    --cherry-blossom-pink: #f4a5aeff;
    --china-rose: #a8577eff;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    /* color: var(--accent-color) !important; */
    letter-spacing: 2px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--accent-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?dj,music,nightclub');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    color: white;
    padding-top: 80px;
}

#hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 5px;
}

#rotating-media {
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 600;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* About Section */
#about {
    padding: 100px 0;
}

.location, .genre {
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Experience Section */
#experience {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.experience-item {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-10px);
}

.experience-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Philosophy Section */
#philosophy {
    padding: 100px 0;
}

.philosophy-item {
    padding: 30px;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
}

.philosophy-item i {
    color: var(--accent-color);
}

.philosophy-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Music Section */
#music {
    padding: 100px 0;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-title {
    color: var(--primary-color);
    font-weight: 700;
}

audio {
    border-radius: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 8px 20px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color) !important;
    text-decoration: none;
}

/* Media Queries */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    #rotating-media {
        max-width: 90%;
    }
    
    .experience-item, .philosophy-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    #hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* CSS from index.html - takes precedence */
body {
    background-color: var(--mimi-pink);
    color: var(--violet-blue);
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

body.loaded {
    opacity: 1;
}

.navbar {
    background-color: var(--violet-blue);
}

#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 66, 159, 0.5), rgba(170, 125, 206, 0.5));
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

.section-title {
    color: var(--china-rose);
}

.bg-light {
    background-color: var(--cherry-blossom-pink) !important;
}

.btn-outline-light:hover {
    background-color: var(--lavender-floral);
    border-color: var(--lavender-floral);
    color: white;
}

.btn-primary {
    background-color: var(--china-rose);
    border-color: var(--china-rose);
}

.btn-primary:hover {
    background-color: var(--violet-blue);
    border-color: var(--violet-blue);
}

.card {
    border-color: var(--lavender-floral);
}

.philosophy-item i {
    color: var(--china-rose);
}

footer {
    background-color: var(--violet-blue) !important;
}

.dropdown-menu {
    background-color: var(--mimi-pink);
}

.dropdown-item:hover {
    background-color: var(--lavender-floral);
    color: white;
}

audio::-webkit-media-controls-panel {
    background-color: var(--mimi-pink);
}

#experience, #philosophy, #music, #about, #equipment, #services, #pricing {
    padding: 4rem 0;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
