* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
}

html,
body {
    height: 100%;
    width: 100%;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
}

.Gradient-topic-text {
    background: linear-gradient(to top, #ff5e00, #ffd000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: none !important;
}
/* navbar section starts here */
#navbar {
    height: 15vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0);
}

#navbar-content {
    height: 100%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}
/* navbar section ends here */
/* navbar responsive starts here */

@media (max-width: 768px) {
    #navbar {
        height: 10vh;
    }
}

/* navbar responsive ends here */
/* cursor effect starts here */

.ball {
    width: 25px;
    height: 25px;
    position: fixed;
    top: 0;
    left: 0;
    border: 3px solid rgb(255, 233, 30);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    background-color: transparent;
    box-shadow: 0px 0px 15px rgb(255, 236, 174);

}
/* cursor effect ends here */
/* cursor effect responsive starts here */

@media (max-width: 768px) {
    .ball {
        display: none;
    }
}

/* cursor effect responsive ends here */
a {
    text-decoration: none;
    height: 50%;
    width: 8%;
}

/* navbar menu section starts here */

#logo {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    background-image: url("assets/images/logo/Kolkata\ odessy\ logo.png");
    background-size: cover;
    background-position: center center;
    filter: drop-shadow(0px 0px 1px rgb(255, 255, 255));
}

#menu {
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: end;
    filter: drop-shadow(0px 0px 1.5px rgb(255, 255, 255));

}

#menu ul {
    display: flex;
    list-style: none;
}

#menu ul li {
    font-size: 3.5vh;
    margin-right: 70px;
}

#menu ul li a {
    text-decoration: none;
    color: white;
}

/* navbar menu section ends here */
/* navbar menu section responsive starts here */

@media (max-width: 768px) {
    #menu ul li {
        font-size: 2vh;
        margin-right: 20px;
    }
    #navbar-content a {
        height: 40px;
        width: 75px;
    }
}


/* navbar menu section responsive ends here */

/* header section starts here */


#header {
    height: 50vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    background-image: url("https://c0.wallpaperflare.com/preview/123/755/724/audience-celebration-concert-crowd.jpg");
    background-size: cover;
    background-position: center 450px;
    position: relative;
}

#header-filter {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    z-index: 0;
}

#header p {
    font-size: 10vh;
    color: white;
    font-weight: 600;
    z-index: 1;
    filter: drop-shadow(0px 0px 1.5px rgb(255, 255, 255));
}

/* header section ends here */

/* header section responsive starts here */

@media (max-width: 768px) {
    #header {
        height: 25vh;
    }
    #header p {
        font-size: 4vh;
    }
}

/* header section responsive ends here */

/* contact form page section starts here */

#contact-form-page {
    height: 110vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0D0D0D;
}

#contact-form-holder {
    height: 100%;
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: end;
    background-color: #0D0D0D;
}

#contact-form {
    height: 80%;
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3vh;
    border-radius: 5vh;
    background-color: #181818;
    padding: 4vh;
}

#contact-form-content-line-1,
#contact-form-content-line-2 {
    height: 15%;
    width: 100%;
    gap: 2vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fill-form {
    height: 100%;
    width: 48%;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #0E0E0F;
    border-radius: 5vh;
    overflow: hidden;
}

.fill-form input {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    padding: 0 3vh;
    font-size: 2.5vh;
    color: rgba(255, 255, 255, 0.8);
}

#contact-form-content-line-3 {
    height: 40%;
    width: 100%;
    background-color: #0E0E0F;
    border-radius: 5vh;
    overflow: hidden;
}

#message-box {
    height: 100%;
    width: 100%;
}

#message-box textarea {
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    padding: 3vh;
    font-size: 2.5vh;
    color: rgba(255, 255, 255, 0.8);
    resize: none;
}

#contact-form-content-line-4 {
    height: 10%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#send-message-button {
    height: 100%;
    width: 25%;
    background-image: linear-gradient(to right, #ff2600, #ffd000);
    border-radius: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-size: 2.5vh;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
}

#send-message-button:hover {
    transform: scale(1.05);
}

/* Placeholder styling */
::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Focus styles */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

#contact-banner-holder {
    height: 100%;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}

#contact-banner {
    height: 80%;
    width: 90%;
    border-radius: 5vh;
    margin-left: 2vh;
    background-image: url("https://c1.wallpaperflare.com/preview/888/4/877/people-music-party-people.jpg");
    background-size: cover;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

#contact-banner-filter {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-image: linear-gradient(to top, rgb(13, 13, 13), rgba(255, 255, 255, 0));
}

#contact-banner-content {
    height: 30%;
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-direction: column;
    gap: 2vh;
    z-index: 1;
    bottom: 20%;
}

#contact-banner-content i {
    font-size: 3vh;
    color: white;
    z-index: 1;
    border-radius: 50%;
    height: 8vh;
    width: 8vh;
    border: 2px solid rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact-banner-content h5 {
    font-size: 2vh;
    color: rgb(52, 255, 221);
    z-index: 1;
}

#contact-banner-content p {
    font-size: 3vh;
    font-weight: 600;
    color: white;
    z-index: 1;
}

/* contact form page section ends here */

/* contact form page section responsive starts here */

@media (max-width: 768px) {
    #contact-form-page {
        height: 70vh;
        align-items: start;
    }
    #contact-form-holder {
        width: 90%;
        height: 85%;
        justify-content: center;
        margin-top: 5vh;
    }
    #contact-form {
        height: 100%;
        justify-content: center;
        gap: 2vh;
        border-radius: 2vh;
    }
    #contact-form-content-line-1,
    #contact-form-content-line-2 {
        flex-direction: column;
        height: 30vh;
    }
    #contact-form-content-line-3 {
        height: 50vh;
        border-radius: 1vh;
    }
    
    .fill-form {
        width: 100%;
        border-radius: 1vh;
    }
    ::placeholder {
        font-size: 2vh;
    }
    #contact-banner-holder {
        display: none;
    }
    #contact-form-content-line-4 {
        justify-content: center;
        position: relative;
        height: 20%;
    }
    #send-message-button {
        width: 50%;
        font-size: 1.5vh;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

/* contact form page section responsive ends here */

/* map section starts here */

#map-holder {
    height: 150vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0D0D0D;
    position: relative;
    color: white;
    gap: 2.5%;
}

#map-holder span {
    background: linear-gradient(to top, #ff7b00, #ffd900, #ff7b00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#map-holder iframe {
    height: 65%;
    width: 80%;
    z-index: 0;
}

/* map section ends here */

/* map section responsive starts here */

@media (max-width: 768px) {
    #map-holder {
        height: 70vh;
    }
    #map-holder h2 {
        font-size: 2vh;
    }
    #map-holder iframe {
        height: 40%;
        width: 90%;
        border-radius: 2vh;
    }
}

/* map section responsive ends here */

/* artists section starts here */

#artists {
    height: 35%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vh;
    background-color: #0D0D0D;
    z-index: 1;
}

.artist1 {
    height: 100%;
    width: 30%;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    padding: 5vh;
    align-items: start;
    justify-content: start;
    gap: 1.5vh;
    color: white;
}

.artist2 {
    height: 100%;
    width: 30%;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    padding: 5vh;
    align-items: start;
    justify-content: start;
    gap: 1.5vh;
    color: white;
}

.artist3 {
    height: 100%;
    width: 30%;
    background-color: #252525;
    display: flex;
    flex-direction: column;
    padding: 5vh;
    align-items: start;
    justify-content: start;
    gap: 1.5vh;
    color: white;
}

.artist1 h4,
.artist2 h4,
.artist3 h4 {
    font-size: 4vh;
    font-weight: 600;
}



.artist-image {
    height: 10vh;
    width: 18vh;
    background-color: #a5a4a4;
    border-radius: 10vh;
}

/* artists section ends here */

/* artists section responsive starts here */

@media (max-width: 768px) {
    #artists {
        height: 50vh;
        justify-content: center;
        gap: 1vh;
    }

    .artist1,
    .artist2,
    .artist3 {
        width: 30vw;
        height: 25vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        text-align: center;
    }
    .artist1 h4,
    .artist2 h4,
    .artist3 h4 {
        font-size: 2vh;
    }
    .artist1 p,
    .artist2 p,
    .artist3 p {
        font-size: 1.2vh;
        display: none;
    }
    .artist-image {
        height: 5vh;
        width: 10vh;    
    }
}

/* artists section responsive ends here */

/* sponsors section starts here */

#Sponsors {
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    position: absolute;
    gap: 15vh;
    z-index: 2;
    bottom: 0;
}

#artist1 {
    background-image: url("assets/images/artist/bpraak.png");
    background-size: cover;
    background-position: center 25%;
}

#artist2 {
    background-image: url("assets/images/artist/bpraak.png");
    background-size: cover;
    background-position: center 25%;
}

#artist3 {
    background-image: url("assets/images/artist/bpraak.png");
    background-size: cover;
    background-position: center 25%;
}


/* sponsors section starts here */
#Sponsors {
    height: 20%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #090909;
    position: absolute;
    bottom: 0;
    z-index: 2;
}   

#Sponsors-section {
    height: 100%;
    width: 92%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#Sponsor-deck {
    height: 100%;
    width: 100%;
    background-color: #090909;
    display: flex;
    align-items: center;
    justify-content: start;
    position: absolute;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

#Sponsor-deck-strip {
    height: 100%;
    width: 500%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.sponsor {
    height: 15vh;
    width: 20vh;
    margin: 5vh;
    filter: drop-shadow(0px 0px .25px rgb(255, 255, 255));
}

#Sponsor1 {
    background-image: url("assets/images/sponsors/1.png");
    background-size: cover;
    background-position: center;
}

#Sponsor2 {
    background-image: url("assets/images/sponsors/2.png");
    background-size: cover;
    background-position: center;
}

#Sponsor3 {
    background-image: url("assets/images/sponsors/3.png");
    background-size: cover;
    background-position: center;
}

#Sponsor4 {
    background-image: url("assets/images/sponsors/4.png");
    background-size: cover;
    background-position: center;
}

#Sponsor5 {
    background-image: url("assets/images/sponsors/5.png");
    background-size: cover;
    background-position: center;
}

#Sponsor6 {
    background-image: url("assets/images/sponsors/6.png");
    background-size: cover;
    background-position: center;
}

#Sponsor7 {
    background-image: url("assets/images/sponsors/7.png");
    background-size: cover;
    background-position: center;
}

#Sponsor8 {
    background-image: url("assets/images/sponsors/8.png");
    background-size: cover;
    background-position: center;
}

#Sponsor9 {
    background-image: url("assets/images/sponsors/9.png");
    background-size: cover;
    background-position: center;
}

#Sponsor10 {
    background-image: url("assets/images/sponsors/10.png");
    background-size: cover;
    background-position: center;
}

/* sponsors section ends here */
/* sponsors section responsive starts here */

@media (max-width: 768px) {

    .sponsor {
        height: 8vh;
        width: 8vh;
        margin: 2vh;
    }

    #Sponsors-section {
        height: 20vh;

    }

    #Sponsor-deck {
        height: 70%;
        width: 100%;
    }

    #Sponsor-deck-strip {
        width: 600%;
    }
}
/* sponsors section responsive ends here */

/* reviews section starts here */

#Reviews{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}
.review-filter{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(to top, #090909, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7), #090909);
    z-index: 0;
}
#Reviews-section-holder{
    height: 100%;
    width: 300%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}
#Reviews i{
    background: linear-gradient(to top, #ff5e00, #ffd000, #ff5e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#right-review-btn{
    height: 12.5vh;
    width: 12.5vh;
    position: absolute;
    border-radius: 50%;
    right: 50%;
    bottom: 5%;
    transform: translate(50%, 0);
    border: .5px dashed rgb(255, 255, 255);
    z-index: 2;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5vh;
    box-shadow: 0px 0px 5px rgb(255, 174, 0);
    cursor: pointer;
}
.Reviews-section{
    height: 100%;
    width: 100%;
    background-image: url("assets/images/banners/feedback.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 2.5%;
}

.Reviews-section-header{
    height: 15%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 2.5%;
    z-index: 1;
}
.Reviews-section-header p{
    font-size: 3.5vh;
}
.Reviews-section-header h1{
    font-size: 6vh;
    filter: drop-shadow(0px 0px 1px rgb(255, 255, 255));
}   
.Reviews-section-body{
    height: 60%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    z-index: 1;
}
.Review-card{
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

}
.Review-banner{
    height: 35vh;
    width: 35vh;
    border-radius: 50%;                                 
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0px 0px 5px rgb(255, 203, 125));
}
.Review-banner img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.Review-content{
    height: 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5%;
}
.Review-content h3{
    font-size: 6vh;
    font-weight: 600;
    background: linear-gradient(to right, #ff5e00, #ffd000, #ff5e00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.Review-content b{
    font-size: 3.5vh;
    font-weight: 600;
}
.Review-content p{
    font-size: 3vh;
    font-weight: 400;
    text-align: center;
    filter: drop-shadow(0px 0px 1px rgb(255, 255, 255));
}

/* reviews section ends here */
/* reviews section responsive starts here */

@media (max-width: 768px) {

    #Reviews{
        height: 70vh;
    }
    .Reviews-section-body{
        height: 80%;
    }
    .Reviews-section-header p{
        font-size: 2.5vh;
    }
    .Reviews-section-header h1{
        font-size: 3vh;
    }
    .Review-content{
        width: 90%;
    }
    .Review-banner{
        height: 20vh;
        width: 20vh;
    } 
    .Review-content h3{
        font-size: 3vh;
    }
    .Review-content b{
        font-size: 2vh;
    }
    .Review-content p{
        font-size: 2vh;
    }
    #right-review-btn{
        height: 10vh;
        width: 10vh;
        font-size: 3vh;
    }
}

/* reviews section responsive ends here */

/* footer starts here */

Footer {
    height: 80vh;
    width: 100%;
    background-color: rgb(25, 25, 26);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.Footer-Menu {
    height: 80%;
    width: 25%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    font-size: 3vh;
    color: white;
    z-index: 1;
}

.Footer-Menu a {
    text-decoration: none;
    color: white;
}

.Footer-Menu h4 {
    font-size: 2.5vh;
    filter: drop-shadow(0px 0px .5px rgb(255, 255, 255));
}

.Footer-Menu li {
    list-style: none;
    margin-top: 2%;
    font-size: 2.25vh;
    filter: drop-shadow(0px 0px .5px rgb(255, 255, 255));
}

#Footer-Logo {
    height: 80%;
    width: 40%;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 7vh;
    line-height: 8vh;
    z-index: 1;
    filter: drop-shadow(0px 0px 1.5px rgb(255, 255, 255));
}

#Copyright {
    height: 5vh;
    width: 100%;
    background-color: #1f1f1f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2vh;
    font-weight: 600;
}

#Footer-Filter {
    height: 90%;
    width: 95%;
    background-color: #000000a6;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
#Copyright {
    height: 5vh;
    width: 100%;
    font-size: 2vh;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
}
/* footer ends here */
/* footer responsive starts here */

@media (max-width: 768px) {
    Footer {
        height: 70vh;
        flex-direction: column;
    }

    .Footer-Menu {
        width: 80%;
        height: 30%;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    #Footer-Logo {
        font-size: 3vh;
        line-height: 4vh;
        height: 20%;
        width: 80%;
    }

    .Footer-Menu h4 {
        font-size: 3vh;
    }

    .Footer-Menu li {
        font-size: 2.2vh;
    }

    #Copyright {
        font-size: 1.5vh;
    }
}

/* footer responsive ends here */