@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Satisfy&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Wavefont:wght@4..1000&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Bangers&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;
}

/* .circle {
    width: 500px;
    height: 400px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -17rem;
    left: -10rem;
} */



header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;

    /* Code to Change bg on scroll */
    transition: background-color 0.4s ease-in-out;

}

header.scrolled {
    box-shadow: 10px 10px 20px #111;
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
}

.logo a {
    font-family: 'great vibes';
    font-size: 2.5rem;
    text-transform: none;
    color: #111;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 15vh;
    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;
}

nav a {
    text-decoration: none;
    color: tan;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
}



/* Side bar design */

.sidebar #desktop-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #000;
    backdrop-filter: blur(100px);
    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: .5rem;

}

.sidebar .nav-links li {
    width: 100%;
    color: #fff;
}

.sidebar .nav-links a {
    width: 100%;
    color: #fff;
}

.nav-symbols {
    font-size: 1.5rem;
}


#hero {
    padding: 1rem;
    padding-top: 7rem;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)) #9a9a;
}

.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 2rem;
    color: white;
    text-align: center;
}

.hero-title h1 {
    font-family: 'bakbak one';

}

.hero-title h2 {
    font-family: 'wavefont';
    text-align: center;
}

.hero-section img {
    border-radius: 20px;
    user-select: none;
}

#music {
    margin: 1rem;
    margin-top: 100px;
}

.music h1 {
    font-size: 4rem;
    text-align: center;
    font-family: 'lobster';
}

.music h2 {
    font-size: 3rem;
    text-align: center;

}

.music-content {
    margin-top: 20px;
    padding: 1.5rem;
    justify-content: center;
    align-items: center;
    background: #000;

    display: flex;
    gap: 2rem;

    flex-wrap: wrap;
}

.music-content iframe {
    max-width: 50%;
}

.streaming-platform {
    margin-top: 5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.streaming-platform .platforms-icons {
    font-size: 3rem;
    padding-top: 2rem;
}

.streaming-platform .platforms-icons a {
    text-decoration: none;
}

.streaming-platform .platforms-icons i {
    padding: .7rem;
    color: #333;
}

.albums {
    margin-top: 200px;
}

.albums h1 {
    margin-bottom: 50px;
}

.album-content {
    display: flex;
    gap: 2rem;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);

    flex-wrap: wrap;
}

.album-content img {
    max-width: 90vh;
    max-height: 60vh;
    filter: drop-shadow(10px 20px 20px #000);
}

.albums-spotify iframe {
    max-width: 50vh;
    max-height: 40vh;
}

.albums-spotify {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
}




#videos {
    margin-top: 100px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: #333;
    padding-bottom: 3rem;
    width: 100%;
}

#videos h1 {
    color: #000;
}

#videos .videos a {
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    margin-top: rem;
    border-radius: 10px;
    background: #111;
}

.videos h1 {
    text-align: center;
    font-size: 4rem;
    font-family: 'lobster';
}

#videos .video-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

    /* justify-content: center; */
    /* align-items: center; */
    height: 100%;
    width: 100%;
    margin-bottom: 3rem;
}

.video-content iframe {
    aspect-ratio: 16/9;
    max-width: 1200px;
    width: 100%;
    height: 100%;

    text-align: center;
    justify-content: center;
    align-items: center;
}






.booking-section {
    margin-top: 150px;
    padding: 80px;
    display: flex;
    justify-content: center;
    background-color: #111;
    color: #fff;
}

.booking-container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    background-color: #0433b383;

    flex-wrap: wrap;

    /* background-color: rgba(153, 170, 153, 0.671); */

    /* background: transparent; */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
}

.booking-left {
    flex: 1;
    padding: 40px;
    background-color: #333;
    background: transparent;
    text-align: center;
}

.booking-left img {
    width: 100%;
    border-radius: 10px;
}

.booking-left h2 {
    font-size: 2rem;
    margin: 20px 0;
    font-family: 'lobster';
}

.booking-left p {
    margin-bottom: 40px;
    font-size: 1.2em;
}

.booking-right {
    flex: 1;
    padding: 40px;
    /* background-color: #444; */
    background-color: #0433b3cc;


    /* background-color: rgba(153, 170, 153, 0.925); */
}

.booking-right h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'lobster';
}

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: #777;
    color: #fff;
}

#booking input:focus,
#booking select:focus,
#booking textarea:focus {
    outline: none;
    border: 1px solid #ff0;
}

label::placeholder {
    color: white;
}

.booking-btn {
    padding: 15px;
    background-color: #111;
    color: #fff;
    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: #999;
    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;
}

.about-content p {
    line-height: 2rem;
}

.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: center;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)) #9a9a;

}

.contact-title h2 {
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    font-family: 'lobster';
}



.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: 3px solid #9a9a;
    padding-left: 1rem;
    font-weight: 500;
    color: #fff;
    border-radius: 10px;
    outline: none;
    background: transparent;
}

.contact textarea {
    height: 100px;
    border-radius: 10px;
    padding-top: .5rem;
}

.contact .inputs:focus {
    border-bottom: 2px solid #9a9a;
}

.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: #000;
    color: #fff;
    transition: .5s ease;
}

.contact .btn:hover {
    transform: scale(1.1);
    transition: .5s ease;
}




footer {
    background-color: #111;
    padding: 2rem 9%;
}

footer a {
    text-decoration: none;
    color: orange;
}

.footer-icons .logo a {
    font-family: 'great vibes';
    font-size: 2.5rem;
    text-transform: none;
    color: #fff;
}

footer p {
    text-align: center;
    justify-content: center;
    align-items: center;
    /* font-size: 1rem; */
    padding: .5rem;

}

footer h3 {
    font-size: 1.2rem;
    font-family: 'bakbak one';
}

footer .info {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

footer i {
    /* margin-top: 2rem; */
    padding: .7rem;
    font-size: 1.5rem;
    color: #9a9a;

    transition: .5s ease;
}



.footer-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

footer i:hover {
    /* filter: drop-shadow(20px 20px 20px #9a9a); */
    color: orange;
    /* box-shadow: 0 0 1rem #9a9a; */
}



















@media (max-width:1024px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* height: 11vh; */
        width: 100%;
        padding: 1rem;
    }

    .album-content {
        display: flex;
        flex-wrap: wrap;
    }
}




@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;
    }

    .album-content {
        display: flex;
        flex-wrap: wrap;
    }

    #videos .video-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }

    .video-content iframe {
        aspect-ratio: 16/9;
        max-width: 500vh;


        justify-content: center;
        align-items: center;
    }

}

@media (max-width:800px) {
    header {
        width: 100%;
    }

    .hideOnMobile {
        display: none;
    }

    .sidebar #desktop-nav {
        width: 100%;
    }

    #desktop-nav .nav-symbols {
        display: block;
    }
}

@media (max-width: 768px) {

    .sidebar {
        display: block;
    }

    .hideOnMobile {
        display: none;
    }

}

/* Mobile design begins */

@media (max-width:600px) {

    html {
        font-size: 70%;
    }

    nav {
        height: 10vh;
    }

    .nav-symbols {
        margin-left: -20px;
    }

    header {
        width: 100%;
    }

    .logo a {
        font-size: 2.2rem;
    }

    #hero {
        height: 100vh;
        padding-top: 10rem;
    }

    .hero-title {
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 3rem;
    }


    .hero-section {
        flex-direction: column-reverse;
    }

    .hero-section img {
        max-width: 35vh;
        border-radius: 5%;
    }

    .music-content {
        flex-direction: column;
    }

    .music-content iframe {
        max-width: 40vh;
    }

    .album-content {
        display: flex;
        gap: 2rem;


    }

    .album-content img {
        max-width: 40vh;
    }

    .albums-spotify {
        gap: -10rem;
        padding: 0;
        grid-template-columns: repeat(1, 1fr);
    }

    .albums-spotify iframe {
        max-width: 50vh;
        max-height: 50vh;

    }


    #videos .video-content {

        display: flex;
        overflow-x: auto;
        padding-top: 2rem;
        width: 100%;
        scroll-behavior: smooth;
    }

    .video-content iframe {
        width: 100%;
    }



    .video-content::-webkit-scrollbar {
        display: none;
    }


    .video-content iframe {
        aspect-ratio: 16/9;
        max-width: 45vh;
        padding: 1rem;
    }


    .booking-section {
        padding: 2rem;
        margin-top: 10rem;
    }



    .booking-container {
        display: flex;
        flex-direction: column;
    }



    .booking-container {
        display: flex;
        max-width: 1200px;
        width: 100%;
    }

    .about-content {
        flex-wrap: wrap-reverse;
    }

    .about-content img {
        max-width: 20vh;
    }


    .contact .btn {
        width: 27rem;
    }

    .footer-icons {
        flex-direction: column;
    }

    .footer-icons .logo {
        margin-bottom: 20px;
    }

    .footer-icons .socials {
        margin-bottom: 20px;
    }




}

@media (max-width:400px) {
    .sidebar #desktop-nav {
        width: 100%;
    }

    header {
        width: 100%;
    }
}