@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4A574;
  --cream: #FCF9F2;
  --charcoal: #111827;
  --charcoal-light: #374151;
}

body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glass-nav {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(200, 200, 200, 0.2);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.logo-img {
  height: 2.5rem;
  object-fit: contain;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.btn-gold {
  background-color: var(--gold);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-gold:hover {
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
  transform: translateY(-2px);
}

.hero-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.card-hover {
  border-radius: 1.5rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
  transition: all 0.3s ease;
  background-color: white;
}

.card-hover:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
  transform: scale(1.02);
}

.whatsapp-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 100;
}

.whatsapp-sticky:hover {
  transform: scale(1.1);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 200;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}


@media (max-width: 640px) {
  .h-14 { height: 3.5rem; } 
  .logo-img { height: 2.2rem; }
  .whatsapp-sticky { width: 50px; height: 50px; bottom: 1rem; right: 1rem; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  /* Ensure touch targets are large enough */
  .nav-link, .btn-gold, .filter-btn, .whatsapp-sticky {
    min-height: 48px;
    min-width: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
