/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

/* ===== NAVBAR ===== */
.navbar {
  position: absolute;
  width: 100%;
  padding: 20px 8%;
  z-index: 10;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.btn-contact {
  background: #ff6b6b;
  padding: 8px 20px;
  border-radius: 20px;
}

/* ===== HERO ===== */
.gallery-hero {
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1552733407-5d5c46c3bb3b") center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 48px;
}

/* ===== FILTER ===== */
.gallery-filter {
  padding: 40px 8%;
  text-align: center;
}

.filter-btn {
  border: none;
  background: #eee;
  padding: 10px 22px;
  margin: 5px;
  border-radius: 20px;
  cursor: pointer;
}

.filter-btn.active {
  background: #ff6b6b;
  color: #fff;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 40px 8%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* ===== LOAD MORE ===== */
.load-more {
  text-align: center;
  margin-top: 40px;
}

.load-more button {
  padding: 12px 30px;
  border: none;
  background: #ff6b6b;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa,
.floating-wa-icon {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.floating-wa img,
.floating-wa-icon img {
  width: 34px;
}

/* ===== FOOTER ===== */
.footer {
  background: #ff7a00;
  color: #ccc;
  padding: 50px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  border: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #navMenu {
    position: absolute;
    top: 65px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 15px;
    border-radius: 12px;
    display: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  #navMenu.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card img {
    width: 100%;
    height: 180px;
  }

  .detail-btn,
  .detail-btn a {
    width: 100%;
    display: block;
    text-align: center;
  }

  #home h1 {
    font-size: 30px;
  }
}
