body, html {
  margin: 0;
  padding: 0;
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: 'Montserrat';
}

.gallery-section {
  margin-top: -50px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://res.cloudinary.com/dzcfc1ggo/image/upload/v1764830735/Lady_Hill_47_Hero_smwnoz.webp') center/cover no-repeat;
  z-index: 0;
}

.gallery-content {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.gallery-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 500px;
}

.gallery-title {
              font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
}

.gallery-title h1 {
              font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
            font-weight: 100;
            letter-spacing: 1px;
}

.gallery-description {
  max-width: 800px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-tab {
  background: none;
  border: none;
  padding: 15px 25px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #777;
  cursor: pointer;
  position: relative;
  margin: 5px;
  white-space: nowrap;
}

.gallery-tab.active {
  color: #C19A6B ;
}

.gallery-tab span {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #C19A6B ;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.gallery-tab.active span {
  transform: scaleX(1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-flow: dense;
  gap: 10px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

#close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .gallery-title { font-size: 3.5rem; }
}
@media (max-width: 768px) {
  .gallery-title { font-size: 2.8rem; }
  .gallery-description { font-size: 1rem; }
}
@media (max-width: 576px) {
  .gallery-title { font-size: 2rem; }
  .gallery-tab { padding: 8px 12px; font-size: 0.75rem; }
}


/* Round WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      bottom: 25px;
      right: 18px;
      width: 60px;
      height: 60px;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      z-index: 999;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }

    .whatsapp-icon {
      color: white;
    }


    @media (max-width: 768px) {
      .whatsapp-float {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 24px;
        padding: 12px;
      }
    }