body{
  background-color: black;
  margin: 5px;
  padding: 0%;
 }

 .hero-section {

  height: 50vh; 
  width: auto;
  /* The core responsive image settings */
  background-image: url('51.jpg');
  background-size: cover;       /* Scales the image to fill the container */
  background-position: center;  /* Centers the image horizontally and vertically */
  background-repeat: no-repeat; /* Prevents tiling */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;   
  padding: 40px; 
  
}

.hero-content {
  color: #ffffff;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.1); /* Dark translucent overlay */
  border-radius: 10px;
}


.hero-content h2{
   text-align: center;
   text-decoration: underline;
   font-style: italic;
}

@media (max-width: 480px){
   .hero-section{
    height: 40vh;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center; 
    padding: 0.5px;
   }
   
   .hero-content {
    color: #ffffff;
    padding-bottom: 100px;
    background-color: rgba(0, 0, 0, 0.0);
   }

}


/* Base button styles */
.call-btn {
  position: fixed;
  bottom: 25px;
  left: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Space between icon and text */
  background-color: #25d366; /* Vibrant green color */
  color: #ffffff; /* White text */
  text-decoration: none; /* Removes underline */
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 50px; /* Fully rounded pill shape */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease; /* Smooth hover effects */
}

/* Icon dimensions */
.call-icon {
  width: 32px;
  height: 32px;
}

/* Hover dynamic animations */
.call-btn:hover {
  background-color: #20ba5a; /* Slightly darker green */
  transform: translateY(-2px); /* Lifts button up */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Click activation feedback */
.call-btn:active {
  transform: translateY(1px); /* Pushes down when clicked */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .call-btn {
    padding: 15px;
    border-radius: 50%;
    bottom: 17px;
    left: 25px;
  }
  .call-text {
    display: none;
  }
}


/* Floating Container */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 50px;
  background-color: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Icon Sizing */
.whatsapp-icon {
  width: 32px;
  height: 32px;
}

/* Hover Effect */
.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-3px)
}

/* Responsive Rules for Small Screens */
@media (max-width: 480px) {
  .whatsapp-btn {
    padding: 15px;
    border-radius: 50%;
    bottom: 17px;
    right: 25px;
  }


  
  .whatsapp-text {
    display: none; /* Hides text on mobile to turn it into a compact bubble */
  }
}


.container {
  /* Set the spacing between columns */
  column-gap: 12px; 
  /* Automatically choose column count based on 250px minimum width */
  column-width: 150px; 
  width: 100%;
  max-width: auto;
  margin-top: 12px; 
}

.gallery {
  /* Prevents items from splitting or breaking across columns */ 
  break-inside: avoid; 
  margin-bottom: 12px;
  background-color: oklch(100% 0.00011 271.152);
  border-radius: 10px;
  overflow: hidden;
}

.gallery img {
  width: 100%;
  display: block;
  height: auto;
}
