/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    height: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
}

.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    margin: 0;
    padding: 0;
}

.navbar-toggler {
    display: flex !important;
    align-items: center;
    border: none;
    background: none;
    padding: 0.25rem 0.75rem;
}

.menu-text {
    color: rgba(255,255,255,.8);
    margin-right: 0.5rem;
    text-transform: uppercase;
}

.menu-icon {
    color: rgba(255,255,255,.8);
    font-size: 1.5rem;
}

.navbar-collapse {
    position: fixed;
    top: 60px;
    right: 0;
    width: 250px;
    height: calc(100vh - 60px);
    background-color: #343a40;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.navbar-collapse.show {
    transform: translateX(0);
}

.navbar-nav {
    flex-direction: column !important;
    width: 100%;
    margin-top: 0;
}

.navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 10px;
}

.navbar-nav .nav-link {
    display: block;
    padding: 10px 15px;
    color: rgba(255,255,255,.8) !important;
    transition: color 0.3s ease;
    text-align: left;
    width: 100%;
    font-size: 1.5rem;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

/* Header / Home Section */
#home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 1000px;
}

.header-content .subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    z-index: 2;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.scroll-down:hover {
    color: #f0f0f0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-30px);
    }
    60% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    min-height: calc(100vh - 60px);
    display: flex;
    align-items: center;
}

/* Alternating section backgrounds */
#home { background-color: #000000; }
#bio { background-color: #ffffff; }
#reviews { background-color: #f8f9fa; }
#videos { background-color: #ffffff; }
#repertoire { background-color: #f8f9fa; }
#faqs { background-color: #ffffff; }
#contact { background-color: #f8f9fa; }

/* Section Headings */
.section > h2,
.section > .container > h2 {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
    z-index: 10;
}

/* Bio Section */
#bio img {
    max-width: 100%;
    height: auto;
}

/* Reviews Section */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Videos Section */
.video-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-inner {
    overflow: visible;
}

.carousel-item {
    transition: transform .6s ease-in-out;
    min-height: 360px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000; /* Add a background color */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
}

#videoCarousel {
    overflow: visible;
    min-height: 360px;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 0.8;
    color: #fff;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 1.5rem;
}

/* Repertoire and FAQs Sections */
#repertoire .container, #faqs .container {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 80px;
}

#repertoire .accordion-item {
    border: none;
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 0.25rem;
    overflow: hidden;
}

#faqs .accordion-item {
    border: none;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.25rem;
    overflow: hidden;
}

#repertoire .accordion-button {
    background-color: #ffffff;
    color: #333;
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none;
    border-radius: 0;
}

#faqs .accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none;
    border-radius: 0;
}

#repertoire .accordion-button:not(.collapsed),
#faqs .accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: #ffffff;
}

#repertoire .accordion-button:focus,
#faqs .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13,110,253,.25);
}

#repertoire .accordion-body {
    background-color: #ffffff;
    padding: 1.25rem;
}

#faqs .accordion-body {
    background-color: #f8f9fa;
    padding: 1.25rem;
}

/* Contact Section */
#contact {
    padding: 0px 0;
    background-color: #f8f9fa;
}

#contact .container {
    max-width: 900px;
}

#contact h2 {
    margin-bottom: 30px;
}

#contact form {
    max-width: 100%;
}

#contact .list-unstyled li {
    margin-bottom: 8px;
}

#contact .list-unstyled i {
    margin-right: 10px;
    color: #0d6efd;
}

#contact .social-icons {
    margin-top: 15px;
}

#contact .social-icons a {
    font-size: 1.5rem;
    color: #0d6efd;
    transition: color 0.3s ease;
    margin: 0 5px;
}

#contact .social-icons a:hover {
    color: #0b5ed7;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .header-content .subtitle {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .section > h2,
    .section > .container > h2 {
        top: 70px;
    }

    #repertoire .accordion-button,
    #faqs .accordion-button {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 2rem;
    }

    .header-content .subtitle {
        font-size: 1.5rem;
    }

    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    #repertoire .accordion-button,
    #faqs .accordion-button {
        font-size: 0.8rem;
    }

    .section > h2,
    .section > .container > h2 {
        font-size: 1.5rem;
        top: 70px;
    }

    #contact {
        padding: 40px 0;
    }

    #contact h2 {
        margin-bottom: 20px;
    }
}