@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Mansalva&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #758F3E;
    --secondary: #BBD65F;
    --white: white;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--primary);
}

#main {
    background-image: url(events.jpg);
    min-height: 70vh;
    background-position: bottom center;
    background-size: cover;
}

a {
    text-decoration: none;
}
.container{
    max-width: 1200px;
    padding: 16px;
    margin: auto;
}
section {
    margin: 80px auto;
}

.logo{
    max-height: 8vh;
    background-color: white;
    border-radius: 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
    text-shadow: 1px 1px 10px gray;
}
.nav-list a{
    color: var(--white);
}

ul li a:hover{
    color: #758F3E;
}
.btn {
    padding: 12px 20px;
    background: transparent;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: bold;
    text-shadow: 1px 1px 10px gray;
}

.btn-primary {
    border: none;
    background: var(--secondary);
    color: var(--primary);
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    color: var(--white);
}

.main-content .intro-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.main-content .main-heading{
    font-size: 60px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 1px 1px 8px #585858;
}

.main-content p{
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
    text-shadow: 1px 1px 8px #585858;
}

.menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    width: 30px;
}

.section-title h2 {
    font-size: 50px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.section-title .line{
    width: 150px;
    height: 4px;
    border: 10px;
    background: var(--secondary);
    margin: auto;
    margin-top: 20px;
}

.joining {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.join {
    width: 350px;
    text-align: center
}

.join img{
    max-width: 100%;
    border-radius: 1000px;
    transition: transform 0.3s ease;
    padding: 10px 10px;
}

.join img:hover {
    transform: scale(1.1);
}

.skills {
    max-height: 50vh;
}
.adventure {
    max-height: 50vh;
}
.friends {
    max-height: 50vh;
}

#testimonial {
    background: #BBD65F;
}

#testimonial .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    gap: 30px;
    padding: 50px 16px;
}

#testimonial h2 {
    font-size: 30px;
    font-family: "Mansalva", sans-serif;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#testimonial .profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote {
    max-height: 7vh;
}

.smiling {
    max-height: 10vh;
    border-radius: 1000px;
}

#about-us .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    padding: 0px 40px 0px 40px;
}
#about-us .container .about-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
}
#about-us .container .about-content h2{
    font-family: "Mansalva", sans-serif;
    font-size: 30px;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
}


#about-us p {
    text-align: justify;
    
}
.about {
    max-height: 40vh;
    border-radius: 1000px;
}


#questions {
    min-height: 500px;
    background-image:url(footer.jpg);
    background-position: bottom center;
    background-size: cover;
}
#questions .container {
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    height: 500px;
    text-align: center;
    color: white;
}
#questions h2 {
    font-size: 50px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

footer {
    margin-top: -60px;
}
footer .container {
    display: flex;
    padding: 20px 16px;
    justify-content: space-between;
    align-items: center
}
.footerlogo{
    max-height: 8vh;
    padding: 0px 20px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}
.footer-links a{
    color: var(--primary);
}

#main-about {
    background-image: url(home.jpg);
    min-height: 70vh;
    background-position: bottom center;
    background-size: cover;
}

#about .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    padding: 0px 40px 0px 40px;
}
#about .container .about-content {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: start;
}
#about .container .about-content h1{
    font-family: "Mansalva", sans-serif;
    font-size: 30px;
}

#about p {
    text-align: justify;
    
}
hr{
    width: 100%;
    height: 3px;
    color: #BBD65F;
    background-color: #BBD65F;
    margin: 50px 0px;
}
#main-join {
    background-image: url(join.jpg);
    min-height: 70vh;
    background-position: bottom center;
    background-size: cover;
}
#testimonial-join {
    font-size: 30px;
    font-family: "Mansalva", sans-serif;
    text-align: center;
    background: #BBD65F;
}
.testimonial-join {
    font-size: 30px;
    font-family: "Mansalva", sans-serif;
    text-align: center;
    background: #BBD65F;
}
about-content {
    text-align: center;
}
.nav-list-2 {
text-align: center;
    list-style: none;
    gap: 28px;
    align-items: center;
    margin: 0px 20px;
}
.nav-list-2 a{
    color: var(--secondary);
}
#about-us-join .container {
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    padding: 0px 40px 0px 40px;
}
#about-us-join .container .about-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
#about-us-join .container .about-content h2{
    font-family: "Mansalva", sans-serif;
    font-size: 30px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}
#main-events {
    background-image: url(about5.jpg);
    min-height: 70vh;
    background-position: bottom center;
    background-size: cover;
}
ul {list-style-type: none;}
body {font-family: Verdana, sans-serif;}

.month {
  padding: 70px 25px;
    margin: 0px 0 0 0;
  width: 100%;
  background: #BBD65F;
  text-align: center;
}

.month ul {
  margin: 0;
  padding: 0;
}

.month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.month .prev {
  float: left;
  padding-top: 10px;
}

.month .next {
  float: right;
  padding-top: 10px;
}

.weekdays {
  margin: 0;
  padding: 10px 0;
  background-color:#ddd;
}

.weekdays li {
  display: inline-block;
  width: 13.6%;
  color: #666;
  text-align: center;
}

.days {
  padding: 10px 0;
  background: #eee;
  margin: 0;
}

.days li {
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size:12px;
  color: #777;
}

.days li .active {
  padding: 5px;
  background: #BBD65F;
  color: white !important
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.mySlides {
  display: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.about-teeth {
    max-height: 25vh;
    border-radius: 0;
}
table {
  font-family: "DM Sans", sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #BBD65F;
  text-align: left;
  padding: 8px;
}

tr:nth-child(even) {
  background-color: #BBD65F;
}

#about-us-event .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    padding: 0px 40px 0px 40px;
}
#about-us-event .container .about-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
#about-us-event .container .about-content h2{
    font-family: "Mansalva", sans-serif;
    font-size: 30px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}


#about-us-event p {
    text-align: justify;
    
}
.about-shirt {
    max-height: 40vh;
}
#main-news {
    background-image: url(news.jpg);
    min-height: 70vh;
    background-position: bottom center;
    background-size: cover;
}
#about-us-news .container {
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    padding: 0px 40px 0px 40px;
}
#about-us-news .container .about-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
#about-us-news .container .about-content h2{
    font-family: "Mansalva", sans-serif;
    font-size: 30px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}


#about-us-news p {
    text-align: justify;
    
}
#about-us-news .btn {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    justify-content: space-between;
}
#main-contact {
    background-image: url(contacts.jpg);
    min-height: 70vh;
    background-position: bottom center;
    background-size: cover;
}
#about-us-contact .container {
    align-items: center;
    justify-content: space-between;
    gap: 120px;
    padding: 0px 40px 0px 40px;
}
#about-us-contact .container .about-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
#about-us-contact .container .about-content h2{
    font-family: "Mansalva", sans-serif;
    font-size: 30px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}


#about-us-contact p {
    text-align: justify;
    
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px; 
  border: 1px solid #ccc; 
  border-radius: 4px; 
  box-sizing: border-box; 
  margin-top: 6px; 
  margin-bottom: 16px; 
  resize: vertical;
    font-family: "DM Sans", sans-serif;
}


input[type=submit] {
  background-color: var(--primary);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}
#testimonial-contact {
    background: #BBD65F;
    font-family: "DM Sans", sans-serif;
    padding: 30px;
}

    
@media screen and (max-width: 700px) {
    .menu-btn {
        display: block;
    }
    .nav-list{
        flex-direction: column;
        background: #BBD65F;
        position: absolute;
        top: 0;
        right: -600px;
        width: 80%;
        height: 100vh;
        padding-top: 80px;
        transition: all 0.3s ease;
        display: none;
    }
    .nav-list.active{
        right: 0px;
        display:inherit;
    }
    .nav-list li:not(:last-child) {
        text-align: left;
        width: 100%;
        padding: 10px 30px;
        border-bottom: 1px solid var(--white);
    }
    
    #about-us .container {
        flex-direction: column;
        gap: 30px;
    }
    #about.container {
        flex-direction: column;
        gap: 30px;
    }
    .about {
    max-height: 30vh;
    border-radius: 1000px;
    }
    body{
        max-width: 100%;
    }
}