/*-----------------------------------
    About Us Section (Responsive)
------------------------------------*/

.history-section {
  padding: 30px 0 90px;
  background-color: #EFDCAB;
}

.about-section {
  margin-bottom: 80px;
  padding: 40px 20px;
}

.blur-text {
  font-size: 18px;
  background: linear-gradient(to bottom, #fff 60%, rgba(255, 255, 255, 0));
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 60%, transparent);
}

/* Image Styling */
.lightgallery img {
    width: 100%; 
    max-height: 800px; 
    border-radius: 12px; 
    object-fit: fill;
  
}

/* Button Styling */
.btn-brown {
  color: #F2F6D0;
  background-color: #443627;
  border-color: #443627;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-brown:hover {
  background-color: #D98324;
  border-color: #D98324;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .about-section {
      padding: 20px;
      margin-bottom: 40px;
  }

  .blur-text {
      font-size: 16px;
  }

  .btn-brown {
      font-size: 16px;
      padding: 10px 20px;
  }

  .lightgallery {
      margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .about-section {
      padding: 15px;
      margin-bottom: 30px;
  }

  .blur-text {
      font-size: 14px;
  }

  .btn-brown {
      font-size: 14px;
      padding: 8px 16px;
  }
}