@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bakbak+One&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;

}

html {
    scroll-behavior: smooth;
}

body {
    color: #333;
    font-family: Arial;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), url('/Cool\ bg/cool bg 18.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 13vh;
    width: 100%;
    padding: 1rem;
}

.nav-links ul {
    display: flex;
    gap: 2rem;
    font-size: .8rem;
    transition: .5s;
}

.nav-links li {
    list-style: none;
    cursor: pointer;
    color: tan;

}

.logo a {
    font-size: 2rem;
    font-family: 'Dancing Script';
    text-transform: none;
}


nav a {
    text-decoration: none;
    color: tan;
    font-weight: bold;
    text-transform: uppercase;
}




/* Side bar design */

.sidebar #desktop-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar .nav-links ul {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar .nav-links ul i {
    margin-left: 1rem;
}

.sidebar .nav-links li {
    width: 100%;
    color: black;

}

.sidebar .nav-links a {
    width: 100%;
    color: black;
}

.nav-symbols i {
    font-size: 1.5rem;
}

main #hero {
    padding-top: 12rem;
    /* margin-top: 13vh; */
    justify-content: center;
    align-items: center;
    text-align: center;

    /* width: 100%; */
    background: rgba(0, 0, 0, 0.6);
    font-family: 'bakbak one';

    position: relative;

    /* min-height: 90vh; */
    transition: 0.5s ease;
}



.bg-video {
    position: absolute;
    right: 0;
    top: 13vh;
    z-index: -1;
    width: 100%;
    /* opacity: .5; */

    background: rgba(0, 0, 0, 0.6);


}

@media (min-aspect:16/9) {
    .bg-video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect:16/9) {
    .bg-video {
        width: auto;
        height: 100%
    }
}



/* .contain {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.5s ease;

}

.contain .content {
    position: relative;
    max-width: 800px;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
} */

/* .hero {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
} */




.hero h1 {
    text-align: center;
    font-size: 5rem;
    font-family: 'bakbak one';
    padding: 2rem;
    color: transparent;
    letter-spacing: .5rem;
    -webkit-text-stroke: 2px #a9a9a9;
    /* -webkit-text-stroke: 2px #1f1e1e; */
}


.hero-content {

    color: #fff;
    font-size: 1.5rem;
    font-family: 'bakbak one';
    /* background: rgba(0, 0, 0, 0.6); */

}



.music {

    margin-top: 200px;
    padding: 1rem;
    background: #dadada;
}

.latest h1 {
    font-family: 'Lobster';
    font-size: 2rem;
}

.latest-content {
    margin-top: 20px;
    display: flex;

    align-items: center;

    gap: 20px;
    /* text-align: center; */
}

.latest-content img {
    max-width: 40vh;
}


.streaming-platform {
    margin-top: 5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.streaming-platform h1 {
    font-family: 'lobster';
    font-size: 4rem;

}

.streaming-platform .platforms-icons {
    font-size: 3rem;
    padding-top: 2rem;
    font-family: 'lobster';

}



.streaming-platform .platforms-icons i {
    padding: .7rem;
    color: #333;
}


.tracks {
    margin-top: 150px;
    text-align: center;

    justify-content: center;
    align-items: center;
    text-align: center;
}

.tracks h1 {
    font-size: 2rem;
}



.track-content {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);

    justify-content: center;
    align-items: center;
    text-align: center;

    margin-top: 2rem;
    margin-bottom: 2rem;
}

.track-content img {
    max-width: 20vh;
}

.tracks h1 {
    font-family: 'Lobster';
}

.tracks {
    color: #fff;
    background: #000;
    padding: .5rem;
    border-radius: 1rem;
    transition: .5s ease;
    justify-content: center;
    align-items: center;
}

.tracks a {
    text-decoration: none;
    font-size: .8rem;
    color: #fff;
    text-align: center;
}


.tracks a:hover {
    transform: scale(1.1);
    transition: .5s ease;
}



.booking-section {
    padding: 80px;
    display: flex;
    justify-content: center;
    background-color: #111;
    color: #fff;
}

.booking-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #222;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}

.booking-left {
    flex: 1;
    padding: 40px;
    background-color: #333;
    text-align: center;
}

.booking-left img {
    width: 100%;
    border-radius: 10px;
}

.booking-left h2 {
    font-size: 2rem;
    margin: 20px 0;
    font-family: 'pacifico';
}

.booking-left p {
    margin-bottom: 40px;
    font-size: 1.2em;
}

.booking-right {
    flex: 1;
    padding: 40px;
    background-color: #444;
}

.booking-right h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'pacifico';
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    font-size: 1.1em;
}

input,
select,
textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #555;
    color: #fff;
}

#booking input:focus,
#booking select:focus,
#booking textarea:focus {
    outline: none;
    border: 1px solid #ff0;
}

.booking-btn {
    padding: 15px;
    background-color: #ff0;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

.booking-btn:hover {
    background-color: #ffaa00;
}

.contact-info {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
}

.contact-info a {
    color: #ff0;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}




#about {
    margin-top: 100px;
    margin-bottom: 50px;
}

#about h1 {
    font-family: 'Lobster';
    font-size: 2rem;
    padding: 1rem;

}

#about .about-content {
    padding: 2rem;
    color: #FFF;
    display: flex;
    gap: 20px;


    align-items: center;
    justify-content: center;
    background: #000;
    /* background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url('/Cool\ bg/cool bg 13.jpg'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-content img {
    width: 50vh;

    padding: 1rem;

    background-position: center;

}


.contact {
    position: relative;
    align-items: center;
    padding: 1rem;
    display: flex;
    gap: 2rem;
    text-align: center;
    justify-content: space-between;
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
    color: #fff;
}

.contact-title h2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: 'lobster';
    font-size: 2rem;
}



.contact-details {
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;

}

.contact img {
    max-width: 60vh;
    opacity: 0.4;
}

#contact form {
    margin: 20px 0;
    padding: 1rem;
    border-radius: 20px;
}

.inputs {
    width: 300px;
    height: 35px;

    border-bottom: 2px solid orange;
    padding-left: 1rem;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    outline: none;
    /* background: white; */
    background: none;

    transition: 1s ease;
}

.contact textarea {
    height: 100px;
    border-radius: 10px;
    padding-top: .5rem;
}


.contact-inputs::placeholder {
    color: #a9a9a9;
}

.contact-info p {
    margin-left: 20px;
    padding: .5rem;
}

.contact .btn {
    border-radius: 20px;
    margin-top: 10px;
    padding: .5rem;
    width: 19rem;
    border: none;
    cursor: pointer;
    background: rgb(177, 118, 8);
    color: #000;
    transition: .5s ease;
}

.contact .btn:hover {
    transform: scale(1.1);
    transition: .5s ease;
}



footer {
    background-color: #111;
    padding: 2rem 9%;
}

footer .logo a {
    color: #fff;
}

footer a {
    text-decoration: none;
    color: orange;
}

footer p {
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

footer h3 {
    font-size: 1.2rem;
}

footer .info {
    text-align: center;
    margin-bottom: 2rem;
}

footer i {
    margin-top: 2rem;
    padding: .5rem;
    font-size: 1.2rem;
    color: #9a9a;
    border: .2rem solid #9a9a;
    border-radius: 50%;
    transition: .5s ease;
}

footer i:hover {

    /* filter: drop-shadow(20px 20px 20px #9a9a); */
    color: #111;
    background-color: #9a9a;
    box-shadow: 0 0 1rem #9a9a;

}

.footer-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;


}

.footer-icons h3,
.info h3 {
    font-family: 'pacifico';
}


@media (max-width:1050px) {

    .track-content img {
        max-width: 15vh;
    }

    .track-content {
        padding-left: 4rem;
    }

    .contact img {
        max-width: 40vh;
    }

    .about img {
        max-width: 40vh;
    }
}


@media (min-width:912px) {
    .hideOnMobile {
        display: block;
    }

    #desktop-nav .nav-symbols {
        display: none;
    }
}


@media (max-width:912px) {
    #desktop-nav .nav-symbols {
        display: block;
    }

    .hideOnMobile {
        display: none;
    }

    .about-content img {
        max-width: 50vh;
    }

    .contact img {
        max-width: 30vh;
        opacity: 0.4;
    }
}

@media (max-width:800px) {
    header {
        width: 100%;
    }

    .hideOnMobile {
        display: none;
    }

    .sidebar #desktop-nav {
        width: 100%;
    }

    #desktop-nav .nav-symbols {
        display: block;
    }
}


@media (min-width: 600px) {

    .latest-content iframe {
        max-width: 50%;

    }
}


@media (max-width: 768px) {

    .sidebar {
        display: block;
    }

    .hideOnMobile {
        display: none;
    }

}

@media (max-width:512px) {

    main {
        font-size: 70%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-symbols {
        margin-left: -20px;
    }

    header {
        width: 100%;
    }

    .contact {
        justify-content: center;
    }

    .contact img {
        display: none;
    }

    #about .about-content {
        padding: 1rem;
        gap: 10px;
    }

    .about-content img {
        width: 25vh;
    }


    .track-content {
        grid-template-columns: repeat(2, 1fr);
        gap: .5rem;
        padding-left: 1.5rem;
    }


    .track-content img {
        max-width: 15vh;
    }

    .footer-icons {
        flex-direction: column;
    }

    .platforms-icons {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .booking-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .booking-section {
        padding: 20px;
        display: flex;
        justify-content: center;
        background-color: #111;
        color: #fff;
    }

}

@media (max-width:400px) {
    .sidebar #desktop-nav {
        width: 100%;
    }

    header {
        width: 100%;
    }


}