@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
img {
    pointer-events: none;
}

/* Header */


.header{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/banner.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
.header2{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/banner4.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

nav img{
    width: 200px;
}

.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #D4AF37;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.text-box{
    width: 90%;
    color: ivory;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.text-box h1{
    font-size: 45px;
    color:white;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 18px;
    color: white;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 2px #014421;
    padding: 12px 34px;
    font-size: 13px;
    background: #014421;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 2px solid #D4AF37;
    background: #014421;
    transition: 0.7s;
}

nav .fa-solid{
    display: none;
}

@media (max-width: 700px){

    .text-box h1{
        font-size: 20px;
    }

    .nav-links ul li{
        display: block;

    }

    .nav-links{
        position: fixed;
        background: #014421;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.6s;
    }

    nav .fa-solid{
        display: block;
        color: white;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }

    .nav-links ul{
        padding: 50px;
    }

}


/* OurWaters */

.waters{
    width: 80%;
    margin: auto;
    text-align: justify;
    padding-top: 100px;
}

h1{
    font-size: 36px;
    font-weight: 600;
}

p{
    color: #777;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.waters-col{
    flex-basis: 25%;
    background: ivory;
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 5px;
    box-sizing: border-box;
    transition: 0.5s;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px  0;
}

.waters-col:hover{
    box-shadow: 0 0 20px 0px;
}

@media (max-width:700px)
{
    .row{
        flex-direction: column;
    }
}
/*---returns---*/

.returns{
    width:75%;
    margin:auto;
    text-align:center;
    padding-top:50px;
}
h1{
    font-size:36px;
    font-weight:600;
    color:#014421;

}
p{
    font-size:14px;
    color: #014421;
    font-weight:400;
    line-height:22px;
    padding:10px;
}

.row{
    margin-top:5%;
    display:flex;
    justify-content: space-between;
    color:#D4AF37;
}

.returns-col{
    flex-basis:31%;
    background:#014421;
    border-radius:10px;
    margin-bottom:5%;
    padding:20px 12px;
    box-sizing:border-box;
    transition:0.5s;
}

.h3{
    text-align:center;
    font-weight:600;
    margin:10px 0;
}
.returns-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.6);
}

@media(max-width:700px){
    .row{
        flex-direction: column;
    }
}

/* ---------------- Facilites ---------------- */

.facilities{
    width: 75%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    
}

.facilities-col{
    flex-basis: 25%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: left;
}

.facilities-col img{
    width: 95%;
    border-radius: 10px;
}

.facilities-col p{
    padding: 5;
}

.facilities-col h3{
    margin-top: 16px;
    margin-bottom: 15px;
    text-align: left;
}

/* ---------- Contact Us ------------ */



.contact-us{
    width: 70%;
    margin: auto;
}

.contact-col div{
    display: flex;
    align-items: left;
    margin-bottom: 20px;
}

.contact-col div .fa-solid{
    margin: 10px;
    margin-right: 10px;
}

.contact-col div p{
    padding: 0px;
}

.contact-col div h5{
    font-size: 20px;
    margin-bottom: 5px;
    color: #555;
    font-weight: 400;
}

.contact-col input, .contact-col textarea{
    width: 90%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
.join h1{
    text-align:center;
    font-weight:600;
    color: #014421;
    margin:5px 0;
}
.join p{
    font-size:16px;
    color: #014421;
    font-weight:400;
    line-height:22px;
    padding:10px;
}



/* --------- Call to Action --------------*/

.cta{
    margin: 100px auto;
    width: 80%;
    background-image: url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}

.cta h1{
    color: white;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width:700px){
    .cta h1{
    font-size: 24px;
    }
}

.footer{
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.footer h4{
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    color:#014421;
}

.icons .fa-brands{
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}


/* ---------- About Us Page -------------- */

.sub-header{
    height: 50vh;
    width: 100%;
    background-image:url(images/banner5.png);
    background-position: center;
    background-size: cover;
    }
.sub-header3{
    height: 50vh;
    width: 100%;
    background-image:url(images/banner2.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    color: white;
}
.sub-header h1{
    margin-top: 10px;
    text-align: center;
}

.about-us{
    width: 80%;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-col{
    flex-basis: 48%;
    padding: 30px 2px;
}

.about-col img{
    width: 100%;
}

.about-col h1{
    padding-top: 0;
}

.about-col p{
    padding: 15px 0 25px;
    font-size: 17px
}


/* -------------- Blog Content -------------- */

.blog-content{
    width: 95%;
    margin: auto;
    padding: 5px 0;
}

.blog-left{
        flex-basis: 80%;
}

.blog-left img{
    width: 100%;
}

.blog-left h2{
    color: #D4AF37
    font-weight: 600;
    margin: 10px 0;
    text-align: center;
}

.blog-left p{
    color: #014421;
}


.blog-right{
    flex-basis: 20%;
    border: 1px solid #014421;
  border-radius: 10px;
}

.blog-right h3{
    background: #014421;
    color: #D4AF37;
    padding: 17px ;
    font-size: 26px;
    margin-bottom: 5px;
    border-radius: 10px;
}

.blog-right div{
    display: flex;
    align-items: normal;
        color: #D4AF37;
    padding: 8px;
    box-sizing: border-box;
}




/* ---------- Contact Us ------------ */



.join h1{
    text-align:center;
    font-weight:600;
    color: #014421;
    margin:5px 0;
}
.join p{
    font-size:16px;
    color: #014421;
    font-weight:400;
    line-height:22px;
    padding:10px;
}
/*--------------------maps---------------------------------------*/
.img {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}

.img-row {
  display: flex;
}

/* Create 2 equal columns that sits next to each other */
.img-column {
  flex: 50%;
  padding: 10px;
}

.div2 {
  background-color: ivory;
  width: auto;
  border: 5px solid green;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  font-size: 18px;
  font-weight: 600;
}
/*-------------------members Nav---------------------------*/
.mnav{
    display: flex;
    padding: 5% 6%;
    justify-content: normal;
    align-items: normal;
}


.mnav-links{
    flex: 1;
    text-align: justify;
}

.mnav-links ul li{
    list-style: none;
    display: block;
    padding: 18px 12px;
    position: relative;
}

.mnav-links ul li a{
    color: #014421;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
}

.mnav-links ul li::after{
    content: '';
    width: 0%;
    height: 4px;
    background: #D4AF37;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.mnav-links ul li:hover::after{
    width: 100%;
}
/* Container */
.container {
  width:100%;
 display: flex;
 justify-content: center;
 align-items: center;
  padding:10px;

}
.container h2 {
color: #D4AF37;

}
/* Card */
.card {
  background: #014421;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
justify-content: center;
}
.card:hover {
  transform: translateY(-5px);
}

/* Subtitle */
.subtitle {
  font-size: 14px;
  color: #D4AF37;
  margin-bottom: 30px;
}

/* Input Group */
.input-group {
  margin-bottom: 20px;
}
.input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #374151;
}
.input-group input {
  width: 100%;
  padding: 12px 24px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s;
}
.input-group input:focus {
  border-color: #6366f1;
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Options (Remember Me + Forgot Password) */
.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: #6b7280;
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  background:#014421; 
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  background: #D4AF37;
}

/* Signup Section */
.signup {
  margin-top: 25px;
  font-size: 14px;
  text-align: center;
  color: #6b7280;
}
.signup a {
  font-weight: 500;
}
@media (max-width: 480px) {
  .card {
    padding: 30px 20px;
  }
}
.sub-header4{
    min-height: 100vh;
    width: 100%;
    background-image: url(images/banner5.png);
    background-position: center;
    background-size: cover;
    position: relative;
}
<----------------------------------------Gallery-slideshow-------------------------------------------->
.slideshow{
  width: 700px;
  height: 400px;
  overflow: hidden;
}
.middle{
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.navigation{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}
.bar{
  width: 50px;
  height: 10px;
  border: 2px solid #fff;
  margin: 6px;
  cursor: pointer;
  transition: 0.4s;
}
.bar:hover{
  background: #fff;
}

input[name="r"]{
    position: absolute;
    visibility: hidden;
}

.slides{
  width: 400%;
  height: 60%;
  display: flex;
}

.slide{
  width: 20%;
  transition: 0.6s;
}
.slide img{
  width: 100%;
  height: 100%;
}

#r1:checked ~ .s1{
  margin-left: 0;
}
#r2:checked ~ .s1{
  margin-left: -20%;
}
#r3:checked ~ .s1{
  margin-left: -40%;
}
#r4:checked ~ .s1{
  margin-left: -60%;
}
#r5:checked ~ .s1{
  margin-left: -80%;
}









