header {
  text-align: center;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex; /* Enables flexbox on the body */
  flex-direction: column;
  align-items: center; /* Vertically center the content */
  margin: 0; /* Remove default margin */
  padding-bottom: 70px; /* Ensure there's space for the sticky banner */
}

footer {
  text-align: center;
  padding: 20px; /* Adjust padding as needed */
  position: relative; /* Ensure footer is positioned relative to the content */
}

.whatsapp-banner {
  position: fixed; /* Make the banner stick to the bottom of the viewport */
  bottom: 0;
  left: 0;
  width: 100%; /* Full width of the viewport */
  background-color: #f7aa47; /* Solid background color */
  border-top: 2px solid #d9903b; /* Slightly darker border at the top */
  color: #2b2a29; /* Dark text color */
  text-align: center; /* Center the text */
  padding: 15px 0; /* Padding for the banner */
  z-index: 1000; /* Ensure it stays on top of other content */
  display: flex; /* Enable flexbox */
  align-items: center; /* Vertically center items */
  justify-content: center; /* Horizontally center items */
  transition: background-color 0.3s ease-in-out; /* Smooth transition for background color */
}

.whatsapp-banner:hover {
  background-color: #e59e36; /* Highlight background color on hover */
}

.whatsapp-banner a {
  color: #2b2a29; /* Dark color for the link text */
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none; /* Remove underline */
  display: flex; /* Enable flexbox for the link */
  align-items: center; /* Vertically center items inside the link */
  gap: 10px; /* Space between image and text */
  font-size: 16px; /* Font size for readability */
  padding: 12px 20px; /* Padding for clickability */
  background-color: transparent; /* Transparent background */
  border: none; /* Remove border */
  border-radius: 5px; /* Rounded corners */
  transition: color 0.3s ease-in-out; /* Smooth transition for text color */
}

.whatsapp-banner a:hover {
  color: #2b2a29; /* Maintain text color on hover */
}

.whatsapp-banner img {
  width: 30px; /* Larger image size for better touch targets */
  height: 30px; /* Larger image size for better touch targets */
  vertical-align: middle; /* Align image vertically in the middle */
}

.logo {
  max-width: 70%; /* Increase logo width on mobile */
  padding: 8px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Create a 3-column grid */
  grid-gap: 16px; /* Add spacing between images */
  padding: 8px;
}

.image-grid img {
  width: 100%; /* Make images fill their container */
  height: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Crop images to fit container */
  opacity: 1;
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Media Queries for Mobile Adjustments */
/* Desktop Hover Effect */
@media (min-width: 769px) {
  .image-grid {
    overflow: hidden; /* Prevent overflow from scaling */
  }

  .image-grid img {
    transition: transform 0.3s ease-in-out; /* Smooth transition for scaling */
    transform-origin: center; /* Ensure scaling happens from the center */
  }

  .image-grid img:hover {
    transform: scale(1.05); /* Slightly scale up the image on hover */
  }
}



@media (max-width: 768px) {
  .logo {
    max-width: 70%; /* Ensure logo covers 70% of the width */
  }

  .whatsapp-banner {
    padding: 15px 0; /* Ensure enough padding for mobile */
  }

  .whatsapp-banner a {
    font-size: 16px; /* Increase font size for better readability on mobile */
    gap: 10px; /* Ensure enough space between image and text */
    padding: 12px 20px; /* Increase padding for better clickability */
  }

  .whatsapp-banner img {
    width: 30px; /* Larger image size for mobile */
    height: 30px; /* Larger image size for mobile */
  }

  body {
    padding-bottom: 80px; /* Ensure there's enough space for the banner on mobile */
  }
}

/* Modal Overlay */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 2000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
  text-align: center; /* Center content */
}

/* Modal Content (Image) */
.modal-content {
  margin: auto;
  display: block;
  max-width: 80%; /* Responsive max width */
  max-height: 80%; /* Responsive max height */
  border-radius: 10px; /* Optional rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
  animation: zoomIn 0.3s ease-in-out; /* Zoom-in animation */
}

/* Close Button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

/* Close Button Hover */
.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Keyframes for zoom-in animation */
@keyframes zoomIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}




