/*FOOTER */
/*FOOTER */

/* Footer Layout */
/* The fade-in keyframes */
@keyframes introAnimation {
  0% {
    opacity: 0; /* Start invisible */
  }
  100% {
    opacity: 1; /* End fully visible */
  }
}
 .bgcolor {
  background-color: #F5F5DB;
 }


.footer {
    display: flex;
    justify-content: space-between;
    padding: 40px 10%;
    color: #1E1E1E;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Column Styling */
.footer-column {
    flex: 1;
    margin: 20px;
    max-width: 33%; /* Ensures each column takes up 1/3 of the container on large screens */
}

.footer-left {
    position: relative;
    font-size: 40px;
    font-family: Konkhmer Sleokchher;
    font-weight: 400;
    line-height: 40px;
    word-wrap: break-word;
    margin-bottom: 15px;
    margin-top: 24px;
}

/* Heading Styles */
.footer-column h3 {
    font-weight: 300;
    font-family: Konkhmer Sleokchher;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Paragraph Styles */
.footer-column p {
    font-family: Konkhmer Sleokchher;
    font-size: 0.75em;
    line-height: 1.6;
}

/* Map Container and iframe */
.map-container {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
}

.google-map {
    border: 0;
    width: 100%;
    height: 100%;
    max-width: 600px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding: 20px;
    }

    .footer-column {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .google-map {
        height: 200px; /* Adjust map height for smaller screens */
    }
}

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* When visible */
.fade.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Copyright Section - Outside Footer */
.copyright {
    text-align: center;
    background-color: #F5F5DB;
    padding: 10px 0;
    color: white;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.copyright p {
    font-family: Konkhmer Sleokchher;
    color: #1E1E1E;
    font-size: 0.60em;
    margin: 0;
}


/* Hover Effect for the Button */
.back-to-top:hover {
    background-color: #F5F5DB;
}

/* Show Button When Scrolled Down */
body.scrolled .back-to-top {
    display: block;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 60px; /* Just above the copyright section */
    right: 20px; /* Positioned towards the bottom-right corner */
    background-color: #E3BA28;
    color: #2A2929;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100;
    display: none; /* Initially hidden */
}

@media (max-width: 480px) {
  .back-to-top::before {
    content: "▲"; /* Up arrow symbol */
    font-size: 20px;
    border-radius: 50px;
    
  }

  .back-to-top {
    font-size: 0; /* Hide original text */
    padding: 15px 20px; /* Make button square */
    border-radius: 50px;
  }
}


  .footer-info p{
    max-width: 300px;
    font-family: "Jost", sans-serif;
    font-size: 16px;
  }

  .footer-top {
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .footer-top a {
    font-family: "Jost", sans-serif;
    color: #1E1E1E;
  }

  .footer-social a{
    color: #1E1E1E;
    font-family: "Jost", sans-serif;
  }

  .footer-social {
    margin-top: 20px;
  }
  footer p, footer address {
    font-style: normal; /* Ensures no italics */
  }

