/* ===== Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #1c1c1c;
  color: #f5f0e1;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(28, 28, 28, 0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.5);
  z-index: 999;
  border-bottom: 1px solid #d4af37;
}

.navbar .logo {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
  letter-spacing: 1px;
}

.navbar nav a {
  text-decoration: none;
  color: #f5f0e1;
  margin: 0 14px;
  font-weight: 600;
  transition: color 0.3s, border-bottom 0.3s;
  padding-bottom: 4px;
}

.navbar nav a:hover {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

.navbar nav a.active {
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}

/* ===== Page Layout ===== */
.page-content {
  padding: 140px 20px 60px;
  text-align: center;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffd700;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.page-content p {
  max-width: 720px;
  margin: 0 auto 20px;
  color: #f5f0e1;
}

/* ===== Info Panels / Buttons ===== */
.info-panel {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid #d4af37;
  color: #ffd700;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

.info-panel:hover {
  background: rgba(212, 175, 55, 0.25);
  color: #fff;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  padding: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  background: #2c2c2c;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  display: block;
  border-radius: 12px;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  border: 4px solid #ffd700;
}

/* ===== WhatsApp Floating Buttons ===== */
.whatsapp-icon, .whatsapp-group {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-icon img, .whatsapp-group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.whatsapp-group {
  bottom: 90px;
}

.whatsapp-icon:hover, .whatsapp-group:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.7);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 24px 0;
  color: #ddd;
  background: #222;
  border-top: 1px solid #d4af37;
  font-size: 14px;
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px 20px;
  }

  .navbar nav a {
    margin: 6px 0;
  }

  .gallery-item img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .gallery-item img {
    height: 150px;
  }
}