* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, p, a {
  color: #FFFFFF;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

section {
  padding: 80px 10%;
  text-align: center;
}

.navbar {
  position: fixed;
  width: 100%;
  padding: 20px 10%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-btn {
  background: #FFFFFF;
  color: #000000;
  padding: 8px 20px;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-btn:hover {
  background: #BFBFBF;
}

.hero {
  height: 100vh;
  background: url('IMG_4465 (1).jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #FFFFFF;
  color: #000000;
}

.btn-primary:hover {
  background: #BFBFBF;
}

.btn-secondary {
  border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #000000;
}

.cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  border: 1px solid #333;
  padding: 30px;
  width: 260px;
  background-color: #111;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: #BFBFBF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* SCROLL ANIMATION */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 2000;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 8px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #FFFFFF;
  color: #000000;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
