/* Footer Wrapper Namespace */
.site-footer,.site-footer * {
  all: unset;
  display: revert;
  box-sizing: border-box;
}

.site-footer {
  all: revert;
  font-family: Arial, sans-serif;
}

/* Footer Base */
.site-footer footer {
  width: 100%;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  font-size: 0.9rem;
  border-radius: 25px; /* Smooth rounded corners */
}

.site-footer p {
	color: black;
    font-weight: normal;
    text-align: left;
    font-size: clamp(0.7rem, 0.7vw, 1.0rem);
	background-color: rgb(255,255,255,0.7);
    padding: 0 0 20px;
    box-sizing: border-box;
  }

/* Footer Links */
.site-footer .footer-links {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 800px;
}

/* Content Flex */
.site-footer .content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 900px) {
  .site-footer .content {
    flex-direction: column;
  }
}

/* Container */
.site-footer .container {
  flex: 1;
  max-width: 800px;
  display: flex;
  align-items: center;
}

/* Categories */
.site-footer .categories {
  flex: 1;
  max-width: 150px;
  margin: 0 50;
}

/* Image Container */
.site-footer .container2 {
  display: flex;
  justify-content: center; /* Center the images horizontally */
  gap: 20px; /* Space between images */
}
.site-footer .container2 img {
  max-width: 100%; /* Make images responsive */
  height: auto;
}

/* Text + Image Content Blocks */
.site-footer .content1 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.site-footer .text {
  flex: 1; /* Take up remaining space */
}

.site-footer .image {
  flex: 1; /* Or set a fixed width if preferred */
}

/* Responsive Text/Image Stack */
@media (max-width: 768px) {
  .site-footer .text,
  .site-footer .image {
    flex: 1 1 100%; /* stack vertically */
  }
}

/* Logo & Address Block */
.site-footer .logo-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* Adds space between logo and text */
}

@media (max-width: 768px) {
  .site-footer .logo-address {
    flex-direction: column; /* Stack logo above address */
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .site-footer .logo-address img {
    margin-bottom: 15px;
  }
}

.site-footer .boilerplate {
	background-color:#fff; 
	color:#000; 
	padding:0; 
	width:100%; 
	display:flex; 
	justify-content:center; 
	align-items:center;
}

#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 70px;
  height: 70px;
  background-color: #14b302; /* Green */
  color: white;
  font-size: 32px;          /* Bigger arrow */
  font-weight: bold;         /* Bold arrow */
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;        /* Circle button */
  display: none;

  /* ✅ Center the arrow perfectly */
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;                /* Remove offset padding */
  text-align: center;        /* Ensure text is centered */
  line-height: 1;            /* Remove vertical misalignment */
  transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #0e7c02; /* Darker green */
  transform: scale(1.1);     /* Hover effect */
}



