@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Quicksand:wght@500&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    transition: all 0.3s ease 0s;
    /* outline: solid 2px red; */
}
body{
    background-color: #ffffff;
}
header{
    background-color: transparent;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
    width: 100vw;
    margin-bottom: 10rem;
}
.logo{
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 50%;
}
.homeNav li{
    list-style: none;
    display: inline-block;
    margin: 1rem 2rem 0 0;
}
.homeNav li a{
    font-family: "quicksand", sans-serif;
    font-size: 1rem;
    color: #ffffff;
}
.homeNav li a:hover{
    color: #8ea1cc;
}
/* STYLES FOR ACCORDIONS */
.accordion {
    width: 100%;
    margin-bottom: 3rem;
    background-color: #ffffff;
}
.accordionItem {
    background-color: #8ea1cc;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}
.accordionItem:hover, .accordionButton:hover{
    color: #8ea1cc;
    background-color: #ffffff;
    border: none;
}
.accordionButton {
    position: relative;
    font-family: "oswald", 'sans-serif';
    font-size: 1.5rem;
    color: #ffffff;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0;
    text-align: center;
}
.accordionContent {
    display: none;
    background-color: #ffffff;
    margin: auto;
    text-align: left;
    padding: 1rem;
    font-family: "quicksand", 'sans-serif';
    font-size: 0.8rem;
}
/* SYLE FOR OPENED ACCORDION */
.accordionItem.opened .accordionContent {
    display: block;
}
/* HOME SECTION */
#home{
    background-image: url(Images/background\ \(4\).jpg);
    background-size: cover;
    width: 100%;
    height: 100vh;
}
.homeText{
    width: fit-content;
    height: fit-content;
    margin: auto;
    text-align: center;
}
.homeText h1{
    font-family: "oswald", 'sans-serif';
    font-size: 5rem;
    color: #ffffff;
}
.homeText h2{
    font-family: "oswald", 'sans-serif';
    font-size: 5rem;
    color: #8ea1cc;
    margin: -3rem 0 0 0;
}
/* HISTORY SECTION */
.historyHeader{
    background-color: transparent;
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
    width: 100%;
    margin-bottom: 3rem;
}
#history{
    background-image: url(Images/background\ \(6\).jpg);
    background-size: cover;
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
}
.historyText{
    width: 50%;
    height: fit-content;
    margin: auto;
    text-align: left;
}
.historyText h3{
    font-family: "oswald", 'sans-serif';
    font-size: 5rem;
    color: #ffffff;
}
.historyText h4{
    font-family: "oswald", 'sans-serif';
    font-size: 2rem;
    color: #8ea1cc;
    margin: -5rem 0 0 4.6rem;
}
.historyText p{
    margin: 2rem 0 10rem 0;
    font-family: "quicksand", 'sans-serif';
    font-size: 0.8rem;
    color: #ffffff;
}
/* CAROUSEL */
.carousel {
    margin: auto;
    width: 90%;
    height: 30vh;
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    overflow: hidden; 
}
.carouselGallery {
    width: 100%;
    margin: auto;
    display: flex;
    gap: 1rem;
    white-space: nowrap;
    height: 11rem;
    transition: transform 0.3s ease; 
}
.carouselGallery img {
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carouselControls {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
}
.prevButton, .nextButton {
    background-color: #8ea1cc; 
    border: none;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
}
.carouselGallery::-webkit-scrollbar {
    width: 0;
    height: 0;
}
/* CLIMB SECTION */
#climb{
    background-image: url(Images/background\ \(5\).jpg);
    background-size: cover;
    width: 100%;
    height: 80vh;
}
.climbText{
    background-color: #ffffff;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 20vh;
}
.climbText h3{
    font-family: "oswald", 'sans-serif';
    font-size: 5rem;
    color: #8ea1cc;
}
.climbText h4{
    font-family: "oswald", 'sans-serif';
    font-size: 2rem;
    color: #000000;
    margin: 2.5rem 0 0 -3rem;
}
.climbText p{
    width: 40%;
    margin: 2rem 0 0 0;
    font-family: "quicksand", 'sans-serif';
    font-size: 0.8rem;
    color: #000000;
}
.schedule{
    width: 25%;
    height: fit-content;
    margin: 5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
}
.schedule h5{
    font-family: "oswald", 'sans-serif';
    font-size: 2rem;
    color: #000000;
}
.scheduleList{
    font-family: "quicksand", sans-serif;
    color: #000000;
    width: 100%;
    width: 100%;
    height: fit-content;
}
.scheduleMenu p{
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
}
.date{
    padding: 12px;
    width: 50%;
    text-align: left;
}
.name{
    padding: 12px;
    width: 50%;
    text-align: right;
}
footer{
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    width: 100%;
    background-color:#8ea1cc;
    color: #000000;
    font-family: "oswald", 'sans-serif';
    width: 100%;
    padding: 0.5rem;
}
.footerText{
    padding-top: 0.5rem;
    position: absolute;
    left: 24rem;
}
.footerText h1{
    font-family: "oswald", 'sans-serif';
    font-size: 1rem;
    color: #000000;
}
.footerText h2{
    font-family: "oswald", 'sans-serif';
    font-size: 1rem;
    color: #ffffff;
    margin: -0.6rem 0 0 0;
}
/* MEDIA QUERY */
/*319px - 480px - MOBILE DEVICES*/
@media (min-width: 319px) and (max-width: 480px) {
    /* HOME SECTION */
    #home{
        height: 70vh;
    }
    .homeText h1{
        font-family: "oswald", 'sans-serif';
        font-size: 3rem;
        color: #ffffff;
    }
    .homeText h2{
        font-size: 3rem;
        margin: -1.8rem 0 0 0;
    }
    /* STYLES FOR ACCORDIONS */
    .accordion {
        margin-bottom: 1rem;
    }
    .accordionItem {
        padding: 0.5rem;
        margin-bottom: 1rem;
    }
    .accordionButton {
        font-size: 1rem;
    }
    .accordionContent {
        display: none;
        background-color: #ffffff;
        margin: auto;
        text-align: left;
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    #history{
        width: 100%;
        height: 80vh;
        display: flex;
        flex-direction: column;
    }
    .historyText{
        width: 80%;
        text-align: justify;
    }
    .historyText h3{
        font-size: 3rem;
    }
    .historyText h4{
        font-family: "oswald", 'sans-serif';
        font-size: 1rem;
        margin: -2.7rem 0 0 3rem;
    }
    .historyText p{
        margin: 0.5rem auto;
        font-family: "quicksand", 'sans-serif';
        font-size: 0.8rem;
        color: #ffffff;
    }
    /* CAROUSEL */
    .carousel{
        width: 100%;
        height: fit-content;
    }
    .carouselGallery{
        scroll-behavior: smooth;
        overflow: auto;
        white-space: nowrap;
        width: 100%;
        height: 20vh;
        padding: 0.5rem;
    }
    .carouselGallery>img{
        cursor: pointer;
        width: 50%;
        height: 100%;
        object-fit: cover;
        margin: auto;
    }
    .carouselControls {
        display: none;
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        text-align: center;
    }
    /* CLIMB SECTION */
    #climb{
        width: 80vw;
        height: 70vh;
    }
    .climbText{
        gap: 0.5rem;
        height: fit-content;
        width: 90%;
    }
    .climbText h3{
        font-family: "oswald", 'sans-serif';
        font-size: 3rem;
        color: #8ea1cc;
    }
    .climbText h4{
        font-family: "oswald", 'sans-serif';
        font-size: 1rem;
        color: #000000;
        margin: 1.8rem 0 0 -1rem;
    }
    .climbText p{
        display: none;
        width: 100%;
        margin: 0 0 0 0;
        font-family: "quicksand", 'sans-serif';
        font-size: 0.65rem;
        text-align: justify;
        color: #000000;
    }
    .schedule{
        width: 70%;
        height: fit-content;
        margin: 2rem;
        padding: 0.5rem;
        background-color: rgba(255, 255, 255, 0.7);
    }
    .schedule h5{
        font-family: "oswald", 'sans-serif';
        font-size: 2rem;
        color: #000000;
    }
    .scheduleList{
        font-family: "quicksand", sans-serif;
        color: #000000;
        width: 100%;
        height: fit-content;
        font-size: 0.7rem;
    }
    .scheduleMenu p{
        display: inline-block;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .date{
        padding: 5px;
        width: 40%;
        text-align: left;
    }
    .name{
        padding: 12px;
        width: 60%;
        text-align: right;
    }
    /* FOOTER */
    footer{
        gap: 1rem;
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    .footerText{
        padding-top: 0.5rem;
        position: absolute;
        left: 6rem;
    }
    .footerText h1{
        font-family: "oswald", 'sans-serif';
        font-size: 0.8rem;
        color: #000000;
    }
    .footerText h2{
        font-family: "oswald", 'sans-serif';
        font-size: 0.8rem;
        color: #ffffff;
        margin: -0.4rem 0 0 0;
    }
}
/* 481PX - 1200PX - IPADS & TABETS */
@media (min-width: 481px) and (max-width: 1200px) {
    /* HOME SECTION */
    #home{
        height: 100vh;
    }
    .homeText h1{
        font-family: "oswald", 'sans-serif';
        font-size: 4rem;
        color: #ffffff;
    }
    .homeText h2{
        font-size: 4rem;
        margin: -2rem 0 0 0;
    }
    /* STYLES FOR ACCORDIONS */
    .accordion {
        margin-bottom: 2rem;
    }
    .accordionItem {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    .accordionButton {
        font-size: 1.5rem;
    }
    .accordionContent {
        display: none;
        background-color: #ffffff;
        margin: auto;
        text-align: left;
        padding: 0.5rem;
        /* font-size: 1rem; */
    }
    #history{
        width: 100%;
        height: 80vh;
        display: flex;
        flex-direction: column;
    }
    .historyText{
        width: 70%;
        text-align: justify;
    }
    .historyText h3{
        font-size: 4rem;
    }
    .historyText h4{
        font-family: "oswald", 'sans-serif';
        font-size: 1.8rem;
        margin: -4rem 0 0 3.8rem;
    }
    .historyText p{
        margin: 1rem auto;
        font-family: "quicksand", 'sans-serif';
        font-size: 1rem;
        color: #ffffff;
    }
    /* CAROUSEL */
    .carousel{
        width: 100%;
        height: fit-content;
    }
    .carouselGallery{
        scroll-behavior: smooth;
        overflow: auto;
        white-space: nowrap;
        width: 100%;
        height: 20vh;
        padding: 0.5rem;
    }
    .carouselGallery>img{
        cursor: pointer;
        width: 50%;
        height: 100%;
        object-fit: cover;
        margin: auto;
    }
    .carouselControls {
        display: none;
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        text-align: center;
    }
    /* CLIMB SECTION */
    #climb{
        width: 80vw;
        height: 70vh;
    }
    .climbText{
        gap: 0.5rem;
        height: fit-content;
        width: 90%;
    }
    .climbText h3{
        font-family: "oswald", 'sans-serif';
        font-size: 4rem;
        color: #8ea1cc;
    }
    .climbText h4{
        font-family: "oswald", 'sans-serif';
        font-size: 1.5rem;
        color: #000000;
        margin: 1.8rem 0 0 -1.2rem;
    }
    .climbText p{
        display: none;
        width: 100%;
        margin: 0 0 0 0;
        font-family: "quicksand", 'sans-serif';
        font-size: rem;
        text-align: justify;
        color: #000000;
    }
    .schedule{
        width: 70%;
        height: fit-content;
        margin: 2rem;
        padding: 0.5rem;
        background-color: rgba(255, 255, 255, 0.7);
    }
    .schedule h5{
        font-family: "oswald", 'sans-serif';
        font-size: 2rem;
        color: #000000;
    }
    .scheduleList{
        font-family: "quicksand", sans-serif;
        color: #000000;
        width: 100%;
        height: fit-content;
        font-size: 1rem;
    }
    .scheduleMenu p{
        display: inline-block;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    .date{
        padding: 5px;
        width: 40%;
        text-align: left;
    }
    .name{
        padding: 12px;
        width: 60%;
        text-align: right;
    }
    /* FOOTER */
    footer{
        gap: 1rem;
        padding: 1.5rem;
        font-size: 1rem;
    }
    .footerText{
        padding-top: 0.5rem;
        position: absolute;
        left: 15rem;
    }
    .footerText h1{
        font-family: "oswald", 'sans-serif';
        font-size: 1rem;
        color: #000000;
    }
    .footerText h2{
        font-family: "oswald", 'sans-serif';
        font-size: 1rem;
        color: #ffffff;
        margin: -0.4rem 0 0 0;
    }
}