/* GLOBAL */
p{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

nav{
    margin: 15px;
}

@keyframes sway {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px) rotate(.4deg); }
  100% { transform: translateX(0); }
}

.effect-sway {
  animation: sway 6s ease-in-out infinite alternate;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.effect-pulse {
  animation: pulse 4s ease-in-out infinite;
  transform-origin: center top;
}


body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.extra-round {
    border-radius: 25px;
}

.social-nav-logo{
    margin-right: 25px;
}

.navbar-brand{
    margin: 10px;
}

.overlay1{
    margin-top: 0px;
}

.btn-color1{
    background-color: rgb(83, 151, 83);
    color: white;
}

.home-header{
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

#carouselExample .carousel-item {
    transition: none !important;
}


.gallery {
    margin: 0 auto;        
}

.gallery-item {
    width: 50%;              
    padding: 8px;            
    box-sizing: border-box;
}
@media (min-width: 576px) {
    .gallery-item { width: 33.3333%; } 
}

@media (min-width: 768px) {
    .gallery-item { width: 25%; }     
}

.gal-marg{
    margin-top: 120px;
    margin-left: 30px;
    margin-right: 30px;
}

.hover-zoom {
    transition: transform 0.3s ease;
}

.hover-zoom:hover {
    transform: scale(1.05);
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#home-about{
    background-color:rgb(144, 209, 138);
}

.image-container {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-white{
    color: white;
}

.text-green1{
    color: rgb(39, 116, 56);
}

.btn-green1{
    background-color: rgb(39, 116, 56);
    color: white;
}

/* ABOUT */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: rgb(0, 0, 0);
   
}

.carousel-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll-left 20s linear infinite;
    padding: 1rem;
    will-change: transform;
}

.carousel-track img {
    height: 300px;
    aspect-ratio: 3 / 4; 
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-left {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
}


.carousel-track > * {
    flex: 0 0 auto;
}

.text-primary{
    color: rgb(83, 151, 83);
}