body{
    margin: 0;
    padding: 0;
}
.myButton {
-webkit-box-shadow: 6px 10px 27px -8px #b8b8b8;
box-shadow: 6px 10px 27px -8px #b8b8b8;
-moz-box-shadow: 6px 10px 27px -8px #b8b8b8;
-webkit-box-shadow: 6px 10px 27px -8px #b8b8b8;
background-color: #eba336;
-moz-border-radius: 9px;
-webkit-border-radius: 9px;
border-radius: 9px;
-moz-border-radius: 9px;
-webkit-border-radius: 9px;
border: 2px solid #e3e3e3;
display: inline-block;
cursor: pointer;
color: #ffffff;
font-family: Arial;
font-size: 17px;
padding: 8px 108px;
text-decoration: none;
text-align: center;
text-shadow: 1px 0px 8px #ffcb70;
}
.about-container{
    height: 400px;
    position: relative;
    overflow: hidden  ;
}
.content-container{
    width: 100%;
    position: relative;

}
.carousel-inner {
  height: 100vh; /* Set the height of the carousel to the full viewport height */
}
.img-container{
    width: 100%;
    height: 100vh;

}
.img-container img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.empty-box{
    position: absolute;
    top: 0;
    /* background-color: rgb(248, 202, 20); */
    opacity: 0.3;
    height:100vh;
    width: 100%;

}
.para-container{
    position: absolute;
    top: 26%;
    left: 8%;
    

}
.para-container p{
    font-family: "Pattaya", sans-serif;
    font-size: 5vw;
    font-weight: 500;
    font-style: normal;
    color: #1E3216;
    letter-spacing: 3px;

}
.para-container span{
    font-family: "Roboto", sans-serif;
    font-size: 3vw;
    font-weight: 400;
    font-style: normal;
    color: #1E3216;
   
}
.btn-1{
    border: 1px solid #1E3216 ;
    background-color:#1E3216 ;
    color: white;
    border-radius:50px;
    font-size: 16px;
    padding: 8px 30px;
    margin-left: 40px;
    margin-top: 10px;
    

}

.nav-container{
    position: fixed;
    top: 4%;
    left: 0;
    width: 100%;
}
.parent-container {
  height: 100px;
}
.nav-container1{
  position: fixed;
  top: 4%;
  left: 7%;
  width: 100%;
}
.navbar{
    background-color: rgb(226,178,67,0.7);
    border: none;
    border-radius: 10px;
}
.heading{
    width: 30%;
    text-align: center;
    font-family: "Pattaya", sans-serif;
    font-size: 2.5vw;
    font-weight: 800;
    font-style: normal;
    color: #1E3216;
}
.nav-items{
    width: 70%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.nav-items a{
    text-decoration: none;
    color:#1E3216  ;
    font-size: 2vw;
    font-weight: 600;
    display: inline-block;
    position: relative;
}

 /* Hover effect with underline */
 .nav-items a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    border: none;
    border-radius: 5px;
    display: block;
    background: #1E3216;
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;
  }
  /* Animation when hovering */
  .nav-items a:hover::after {
    width: 100%;
  }
  .navbar a.active::after {
    width: 100%; /* Keeps underline for the active link */
  }

  /* container-2 */
 .about-container{
   height:auto;
   margin-top: 70px;
   overflow: hidden;
   margin-top: 150px;
 }
  .abt{
    
    font-family: "Pattaya", sans-serif;
    font-size: 3vw;
    font-weight: 700;
    font-style: normal;
    color: #1E3216;
    letter-spacing: 3px;
    position: relative;  /* Important to allow ::after positioning */
    display: inline-block;
    
    

  }
  .abt::after{
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    border: none;
    border-radius: 1px;
    display: block;
    background: #1E3216;
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;

  }
  .abt:hover::after{
    width: 100%;
  }
  
  .img img{
    border: none;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 50px;

  }
  .paras{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 150px;
    word-spacing: 8px;
    
  }
  .abt-para{
    font-size: 24px;
    margin: 0px;
    letter-spacing: 0.5px;
  }
  .abt-para span{
    font-size: 24px;
    font-weight: 600;
  }
  /* Events container */
  .column{
    display: flex;
    justify-content: center;
  }
  .card img{
     height:300px;
     border: none;
     border-radius: 10px;
  }
  .card{
    border: none;
    overflow: hidden  ;
  }



  /* Gallery container */
  .gallery-container{
    overflow: hidden  ;
    margin-top: 150px;
  }

  .gallery-container img{
       width: 100%;
       height: 300px;
       border: none;
       cursor: pointer;
       border-radius: 10px;
       box-shadow:  2px 2px 10px 2px  rgba(116, 115, 114, 0.7);
       transition: transform 0.2s;
  }
  .gallery-img:hover{
    transform: scale(1.05);

  }
  .gallery-head {
    font-family: "Pattaya", sans-serif;
    font-size: 3vw;
    font-weight: 700;
    font-style: normal;
    color: #1E3216;
    letter-spacing: 3px;
    position: relative;  /* Make sure this is relative to allow the after pseudo-element to position correctly */
    display: inline-block; /* Ensure the width fits the text content */
  }
  
  .gallery-head::after {
    content: "";
    position: absolute;
    width: 0;  /* Start with no underline */
    height: 4px;
    border: none;
    border-radius: 1px;
    display: block;
    background: #1E3216;
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;
  }
  
  .gallery-head:hover::after {
    width: 100%;  /* Increase width on hover */
  }
  .tittle{
    font-family: "pattaya", sans-serif;
    font-size: 2vw;
    font-weight: 500;
    letter-spacing: 1px;
    font-style: normal;
    color: #1E3216;
  }
  .image-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(95, 94, 94, 0.9); /* Semi-transparent background */
  }
  
  .modal-content{
    position: absolute;
    top: 50%;right: 50%;
    transform: translate(50%,-50%);
    border:4px solid #fbfcfb;
    width: 750px;
    height: 85%;
    object-fit: cover;

  }
  
.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: rgb(253, 252, 252);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}


  /* Event */
  .event-container{
    margin-top: 130px;
    margin-bottom: 50px;
    overflow: hidden  ;
    height: auto;
  }
  .event-head{
    font-family: "Pattaya", sans-serif;
    font-size: 3vw;
    font-weight: 700;
    font-style: normal;
    color: #1E3216;
    letter-spacing: 3px;
    position: relative;  /* Make sure this is relative to allow the after pseudo-element to position correctly */
    display: inline-block; 
  }
  .event-head::after{
    content: "";
    position: absolute;
    width: 0;  /* Start with no underline */
    height: 4px;
    border: none;
    border-radius: 1px;
    display: block;
    background: #1E3216;
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;
  }
.event-head:hover::after{
  width: 100%;
}
.card-title{
    font-family: "Roboto", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    color: #1E3216;
    
}
.card-text{
  font-size: 1rem;
  padding: 0;
  margin-bottom:10px ;
  text-align: left;
}
.card-body{
  padding: 10px 20px;
}
.card{
  display: flex;
  align-items: center;
  position: relative;

}
.card a{
  font-size: 1.2vw;
  text-decoration: none;
  padding: 5px 15px;
  border: 1px solid #1E3216;
  border-radius: 50px;
  background-color: #1E3216;
  color: white;
}
.card a:hover {
  color: white;
}
.card a:active{
  outline: none; 
  border: 2px solid #1E3216;
  box-shadow: none !important;
}
.card a:focus{
  outline: none; 
  border: 2px solid #1E3216;
  box-shadow: none !important;
}
.card .row{
  position: relative;
  width: 85%;
}
.delete-btn{
  position: absolute;
  top:0 ;
  right: 0;
  border: none;
  color: #1E3216;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;

}
.delete-btn:hover{
  background-color: #1E3216;
  color: white;
  border-radius:5px;
  
}
.edit-icon{
  position: absolute;
  top:40px;
  right: 0;
  border: none;
  color: #1E3216;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
}
.edit-icon:hover{
  background-color: #1E3216;
  color: white;
  border-radius:5px;
}

/* contact-container */
.contact-container{
  border: 1px solid rgb(114, 114, 114) ;
  /* background-color:rgb(240, 172, 13) ; */
  background-color:rgb(235,201,123) ;
  border: none;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
}
.contact-head{
  font-family: "Pattaya", sans-serif;
  font-size: 3vw;
  font-weight: 700;
  font-style: normal;
  color: #1E3216;
  letter-spacing: 3px;
  position: relative;  /* Make sure this is relative to allow the after pseudo-element to position correctly */
  display: inline-block; 

}
.contact-head::after{
  content: "";
    position: absolute;
    width: 0;  /* Start with no underline */
    height: 4px;
    border: none;
    border-radius: 1px;
    display: block;
    background: #1E3216;
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;
}
.contact-head:hover::after{
  width: 100%;
}
.col-para{
    margin: 0px;
    padding-left: 30px;
    font-family: "Roboto", sans-serif;
    font-size: 1.8vw;
    font-weight: 800;
    font-style: normal;
    letter-spacing: 1px;
    color: #1E3216;
   
}
.links li{
  list-style-type: none;
  font-size: 1.4vw;
  font-weight: 700;
  color: #1E3216;
  margin-top: 5px;
}
.links{
  padding-left: 30px;
}

.icon-1{
  width: 40px;
}
.icon-2{
  width: 30px;
}
.icon-3{
  width: 30px;
}
.emt{
  width: 100%;
  height: 30px;
  background-color:#1E3216 ;
}

.con-text {
  font-size:1.5vw ;
  font-weight: 700;
  letter-spacing: 0.5px;
  
}
.con-para{
  text-decoration: none;
  color:#1E3216;
  font-size: 1.2vw;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.con-para1{
  color:#1E3216;
  font-size: 1.2vw;
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.mail-text .con-para:hover {
  text-decoration: none;
  color: inherit; 
  cursor: pointer; 
}
.up-arrow{
  position: sticky;
  top: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #1E3216;
  color: white;
  margin-left: 93%;
  border: none;
  border-radius: 20px;
  z-index: 5;
  
}
.whatsapp_float_img {
  border-radius: 50px;
  background-color: transparent;
  width: 60px;
  height: 60px;
}
.whatsapp_float {
position: fixed;
left: 0px;
bottom: 50%;
z-index: 100;
}
.up-arrow img{
  width: 12px;
}
/* map container */
.map-container{
  margin-top: 75px;
  text-align: center;
}
.map-container p{
    font-family: "Pattaya", sans-serif;
    font-size: 3vw;
    font-weight: 700;
    font-style: normal;
    color: #1E3216;
    letter-spacing: 3px;
    position: relative;  /* Important to allow ::after positioning */
    display: inline-block;
}
.form-container p{
  font-family: "Pattaya", sans-serif;
  font-size: 3vw;
  font-weight: 700;
  font-style: normal;
  color: #1E3216;
  letter-spacing: 3px;
  position: relative;  /* Important to allow ::after positioning */
  display: block;
  text-align: center;
}
.map-container p::after{
  content: "";
    position: absolute;
    width: 0;
    height: 4px;
    border: none;
    border-radius: 1px;
    display: block;
    background: #1E3216;
    transition: width 0.3s ease;
    bottom: 0;
    left: 0;
}
.map-container p:hover::after{
  width: 100%;
}
iframe{
  width: 100%;
  margin-bottom: 20px;
 
}

/* reponsive for mobile devices */
@media only screen and (max-width: 768px){

  .img-container{
    width: 100%;
    height: 100vh;
  }
  .img-container img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.carousel-inner {
  height: 100vh; /* Full height for mobile devices */
}
  .empty-box{
    position: absolute;
    top: 0;
    /* background-color: rgb(248, 202, 20); */
    opacity: 0.3;
    height:100vh;
    width: 100%;

}
.para-container{
  position: absolute;
  top: 26%;
  left: 10%;
  

}
  .para-container p{
    font-size:3rem ;
    font-weight: 500;
    letter-spacing: 0px;
  }
  .para-container span{
    font-size: 2rem;
  }
  .btn-1{
    font-size: 10px;
    margin-left: 40px;
    margin-top: 5px;
  }

/* Mobile Navbar Container */
.heading{
  width: 60%;
  text-align: start;
  padding-left: 20px;
  font-size:1.2rem;
  letter-spacing: 0.5px;
}
.nav-container{
  position: fixed;
  top: 3%;
  left: 0;
  text-align: center;
  width:100%;
  overflow: hidden;
  transition: position 0.3s ease-in-out;
}
/* When the menu is open, change nav-container to position fixed */
.nav-container.show1 {
  position: fixed;
  top: 1%;
  left: 0;
  width: 100%;
  background-color: rgb(226,178,67);
  z-index: 1000;  /* Ensure it's on top of other content */
}

.navbar-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(226,178,67,0.8);
  border: none;
  height: 50px;
  border-radius: 10px;
  
}


/* Hamburger Button */
.menu-toggle {
  position: relative;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  font-size: 28px; /* Matches original size */
  color: #1E3216; /* Ensures consistent color */
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px; /* Slightly thicker for visibility */
  background-color: #1E3216;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Transformations for the "close" state */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Nav Links (Initially Hidden) */
  .nav-items-mobile {
    position: fixed;
    top:8%;
    right: -100%; /* Start off-screen */
    width:100%;
    height: 320px;
    background-color: rgba(226, 178, 67);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    /* border-radius: 5px; */
    transition: right 0.3s ease-in-out; /* Smooth slide-in effect */
    z-index: 1000;
  }
  

.nav-items-mobile.show {
  position: fixed;
  top: 8%;
  width:100%;
  right: 0; /* Slide into view */
}

.nav-items-mobile a {
  text-align: start;
  width: 100%;
  font-size: 5vw;
  font-weight: 500;
  color: #1E3216;
  text-decoration: none;
  border-bottom: 1px solid #1E3216;
  padding: 8px 10px;
  transition: color 0.3s ease;
}

.nav-items-mobile a:hover {
  color: #000; /* Adds interactivity */
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: auto;
}

/* ------------------------------------ */
/* carousel */
.carousel-control-next{
  height: 50px;
  margin-top: 100%;
}
.carousel-control-prev{
  height: 50px;
  margin-top: 100%;
}

/* about container */
.abt{
  font-size: 7vw;
}
.about-container{
  height: auto;
  margin-top: 100px;
}
.img img{
  margin-top: 20px;
  width: 100%;
  height: 350px;
}
.img{
  height: 400px;
}
/* about */
.abt-para,.abt-para span{
  font-size: 18px;
  margin: 0px;
  letter-spacing: 0.5px;
}
.paras{
  padding: 10px 20px;
}
.abt{
  margin-bottom: 10px;
}
/* Event container */
.event-head{
  font-size: 7vw;
}
.title{
  font-size: 4vw;
  margin: 0;
}
.text{
  font-size: 3vw;
}
.card a{
  font-size: 2vw;
  width: 100%;
}
/* gallery-container */
.tittle{
  font-size: 6vw;
  margin-top: 10px;
}
.gallery-head{
   font-size: 7vw;
}
.gallery-container{
  overflow: hidden  ;
  margin-top: 80px;
  margin-bottom: 0;
}
.gallery-container img{
  width: 85%;
  height: 300px;
}
.modal-content{
  width: 85%;
  height: 300px;
  object-fit: cover;
}
/* event-container */
.delete-btn{
  position: absolute;
  top:0 ;
  right: 15px;
  border: none;
  color: #fbfcfb;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px;
  background-color: #1E3216;
  border-radius: 5px;

}
.edit-icon{
  position: absolute;
  top:40px;
  right: 15px;
  border: none;
  color: #fbfcfb;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  padding: 9px;
  background-color: #1E3216;
  border-radius: 5px;
}
.card-title{
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-style: normal;
  color: #1E3216;
  
}
.card-text{
font-size: 1rem;
padding: 0;
margin-bottom:10px ;
text-align: left;
}
.card-body a{
  font-size:14px;
}


/* contact container */
.column-box{
  padding-top: 20px;
}
.contact-head{
  font-size: 7vw;
  
}
.map-container p{
  font-size: 1.5rem;
}
.col-para{
  font-size: 5vw;
}
.links{
  padding-left: 10px;
}
.links li{
  font-size: 4vw;
}
.details{
  padding-left: 30px;
}
.con-text{
  font-size: 4vw;
}
.con-para,.con-para1{
  font-size: 3vw;
}
.up-arrow{
margin-left: 90%;

}

}

/* reponsive for mobile devices */
@media only screen and (min-width:1400px){
            
  .nav-container{
    position: fixed;
    top: 4%;
    left: 0%;
    width: 100%;
}
.nav-container1{
  position: fixed;
  top: 4%;
  left: 0;
  width: 100%;
}
.parent-container {
  height: 100px;
}
.heading{
  font-size:2vw;
  width: 25%;
}
.nav-items{
  width: 75%;
}
.nav-items a{
  font-size: 1vw;
}
.carousel-control-next{
  height: 50px;
  margin-top: 550px;
}
.carousel-control-prev{
  height: 50px;
  margin-top: 550px;
}
.con-text {
  font-size:1.2vw ;
  font-weight: 700;
  letter-spacing: 0.5px;
  
}
.con-para{
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.con-para1{
  font-size: 1vw;
}
.icon-1{
  width: 70px;
}
.icon-2{
  width: 50px;
}
.icon-3{
  width: 50px;
  margin-left: 10px;
}
  .up-arrow{
    position: sticky;
    top:450px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1E3216;
    color: white;
    margin-left: 72%;
    border: none;
    border-radius: 30px;
    z-index: 5;
  }
  .up-arrow img{
    width:30px

  }


}

















