@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Rubik+Glitch&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo&display=swap');

:root {
    --swiper-pagination-color: purple;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arvo', 'serif';
    text-decoration: none;
    scroll-behavior: smooth;
}
::selection{
    background-color: purple;
}

body {
    background-color: #111;
    color: white;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    background-color: transparent;
    top: 0;
    left: 0;
    z-index: 100;
}

.nav {
    height: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3% 5%;
}

.nav-logo {
    font-size: 16px;
    font-weight: 300;
    color: purple;
}

.nav-item {
    list-style: none;
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-list {
    text-align: center;
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}


/* Navigation menu for mobile devices */
@media screen and (max-width : 620px) {
    .nav-menu {
        position: fixed;
        top: -200%;
        left: 0;
        background-color: hsla(23, 12%, 4%, 0.2);
        width: 100%;
        padding-block: 5.5rem 4.5rem;
        backdrop-filter: blur(32px);
        --webkit-backdrop-filter: blur(32px);
        transition: top 0.4s;
    }

    .nav-list {
        flex-direction: column;
    }

    .nav-toggle,
    .nav-close {
        display: flex;
    }
}

.nav-link {
    color: white;
    font-weight: 600;
    transition: color 0.4s;
}

.nav-link:hover {
    color: purple;
}

.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.media-link {
    color: purple;
    transition: color 0.4s;
}

.media-link:hover {
    color: white;
}

.media-link i {
    font-size: 20px;
}

.nav-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.show-menu {
    top: 0;
}

/* Blur header */
.blur-header::after{
    content : '';
    position : absolute;
    height : 100%;
    width : 100%;
    background-color : hsla(23, 12%, 4%, 0.2);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    top : 0;
    left : 0;
    z-index : -1;
}


/* Home section */
#home {
    width: 100%;
    min-height: 100vh;
    display : flex;
    align-items : center;
    justify-content: center;
}

.left-img-container,
.right-img-container {
    position: absolute;
}

.left-img-container {
    bottom: 0;
    left: -5%;
}

.right-img-container {
    bottom: 0;
    right: -5%;
}

#left-img {
    height: 80vh;
}

#right-img {
    height: 80vh;
}

.home-info {
    text-align: center;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

.home-info h3 {
    color : purple;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.home-info h1 {
    font-size: 2rem;
    margin-bottom: 25px;
}

#explore-btn {
    color: white;
    background-color: purple;
    padding: 12px 25px;
    font-size: 1rem;
    transition: 0.5s ease;
}

#explore-btn:hover {
    color: purple;
    background-color: white;
}

.social-links {
    margin-top: 25px;
}

.media-link i {
    font-size: 1.5rem;
    color: white;
    transition: color 0.5s ease;
}

.media-link i:hover {
    color: purple;
}

@media screen and (max-width : 1150px) {
    .left-img-container {
        left: -15%;
    }

    .right-img-container {
        right: -12%;
    }

    .home-info h3 {
        font-size: 1.4rem;
    }

    .home-info h1 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width : 850px) {
    .left-img-container {
        left: -25%;
    }

    .right-img-container {
        right: -20%;
    }
}

@media screen and (max-width : 720px) {
    .left-img-container {
        left: 10%;
    }

    #left-img {
        width: 80vw;
        z-index: -100;
        opacity: 0.5;
    }

    .right-img-container {
        display: none;
    }

    .home-info {
        width: 100%;
        z-index: 10;
    }

    .home-info h3 {
        color : white;
    }

}

@media screen and (max-width : 450px) {
    .home-info h3 {
        font-size: 1.5rem;
    }

    .home-info h1 {
        font-size: 1rem;
    }

    #explore-btn {
        font-size: 0.75rem;
    }
}


/* About Section */

#about{
    padding-top : 5%;
    padding-bottom : 5%;
    min-height: 100vh;
    width: 100%;
    display : flex;
    align-items : center;
    justify-content : center;
    /* flex-wrap : wrap; */
    gap : 20px;
}
/* .about-left-img-container{
    position: absolute;
    bottom: -100%;
} */
#about-left-img{
    /* height: 80vh;
    position: relative;
    bottom: 0px;
    left: -10%;
    width: 60vw; */
    max-width : 600px;
    width : 90%;
    height : 80vh;
}
.about-right-content-container{
    /* width: 50vw; */
    display: flex;
    flex-direction: column;
    max-width : 600px;
    width : 90%;
    /* position: absolute;
    right: 0;
    bottom: -94%; */
}

.about-title h1{
    font-size: 1.7rem;
    padding: 15px 0;
    margin-bottom: 10px;
    color: purple;
}
.about-title h3{
    font-size: 2.5rem;
}
.about-desc{
    width: 40vw;
    font-size: 1.1rem;
    word-spacing: 5px;
    margin-top: 30px;
    line-height: 1.5;
}

@media screen and (max-width: 1150px) {
    .about-title h1{
        font-size: 1.5rem;
    }
    .about-title h3{
        font-size: 2rem;
    }
    .about-desc{
        width: 45vw;
        font-size: 1.05rem;
    }

    
}
@media screen and (max-width : 895px) {
    .about-right-content-container{
        bottom: -97%;
    }
    .about-title h1{
        font-size: 1.2rem;
    }
    .about-title h3{
        font-size: 1.5rem;
    }
    .about-desc{
        font-size: 0.9rem;
    }

}
@media screen and (max-width : 750px) {
    #about{
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./images/aboutUsPhone.jpg');

        background-size: cover;
    }
    .about-left-img-container{
        display: none;
    }
    .about-right-content-container{
        right: auto;
        bottom: -85%;
        width: 90%;
        text-align: justify;
    }
    .about-title h1{
        font-size: 1.5rem;
        text-align: center;
    }
    .about-title h3{
        font-size: 2rem;
        text-align: center;
    }
    .about-desc{
        font-size: 1rem;
        width: 100%;
    }
}
@media screen and (max-width: 615px) {
    .about-right-content-container{
        bottom: -90%;
    }
}
@media screen and (max-width : 520px) {
    .about-title h1{
        font-size: 1.3rem;
    }
    .about-title h3{
        font-size: 1.8rem;
    }
    .about-desc{
        font-size: 0.9rem;
    }
}
@media screen and (max-width : 395px) {
    .about-right-content-container{
        bottom: -85%;
    }
    .about-title h1{
        font-size: 1.1rem;
    }
    .about-title h3{
        font-size: 1.5rem;
    }
    .about-desc{
        font-size: 0.8rem;
    }

}
/* Council Section */
#council {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 10% 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./images/council_bg3.jpg');
    background-position: center;
    background-size: cover;
}

.council-title {
    text-align: center;
}

.council-title h1 {
    font-size: 2.75rem;
}

.council-p {
    border-bottom: 2px solid purple;
    padding: 10px 20px;
    margin-bottom: 20px;
}
.swiper {
    display: flex;
    width: 75%;
    height: 150%;
    flex-wrap: wrap;
}
.swiper-slide {
text-align: center;
font-size: 18px;
background-color: rgba(0, 0, 0, 0.426);
height: 500px;
border-radius: 15px 0 15px 0;
}
.swiper-slide h1{
    font-size: 1.2rem;
    color: purple;
}
.swiper-slide p{
    font-size: 1.4rem;
    color: white;
}
.swiper-pagination-bullet {
    background-color: white; /* Set your desired color */
}
.swiper-horizontal{
    bottom: 0px; /* Set your desired color */
  }
.swiper-slide img {
width: inherit;
height: 400px;
}

@media screen and (max-width : 870px) {
    .council-title h1 {
        font-size: 2rem;
    }
    .swiper-slide{
        height: 600px;
    }
}

@media screen and (max-width : 1000px) {
    .swiper-slide h1{
        font-size: 1rem;
    }
    .swiper-slide p{
        font-size: 1.2rem;
    }
    .swiper-slide{
        height: 480px;
        width : 480px;
    }
    
}
@media screen and (max-width : 510px) {
    .council-title h1 {
        font-size: 1.5rem;
    }
    .swiper{
        width: 75%;
    }
}



/* Footer */

.contact-title{
    text-align : center;
    margin : 0 auto;
    margin-bottom : 20px;
}
.contact-title h1, .contact-title h3{
    display : inline;
    padding-bottom : 5px;
    border-bottom : 5px solid black;
}

.contact-links{
    margin-top : 0;
    margin-bottom : 10px;
}
.contact-info{
    display : flex;
    align-items : center;
    justify-content : center;
    gap : 30px;
    flex-wrap : wrap;
}
.span{
    text-align : center;
    color : black;
    font-weight: bold;
}
.contact-link{
    color : white;
}

.footer-bottom {
    text-align: center;
}

.container {
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    background-color: purple;
}

.copyright {
    padding: 25px 20px;
}

#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
    color: purple;
    background-color: white;
    padding: 8px;
    padding-top : 6px;
    height : 29px;
    width : 29px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}

#back-to-top:hover {
    background-color: purple;
    color: white;
}
