

/* ===== GALLERY PAGE HERO ===== */
.gallery-page-hero {
  position: relative;
  height: 65vh;
  background: url("../img/MAAN0442.JPG") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px; /* header height */
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35)
  );
}

.gallery-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 0 20px;
}

.gallery-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af37;
}

.gallery-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin: 18px 0;
  line-height: 1.1;
}

.gallery-hero-content h1 span {
  color: #d4af37;
}

.gallery-hero-content p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-page-hero {
    height: 50vh;
  }

  .gallery-hero-content h1 {
    font-size: 36px;
  }

  .gallery-hero-content p {
    font-size: 14px;
  }
}









/* ===== GALLERY HERO ===== */
.gallery-hero {
  position: relative;
  height: 70vh;
  background: url("../img/MAAN0442.JPG") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.gallery-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.gallery-hero-content .hero-tag {
  letter-spacing: 3px;
  font-size: 12px;
  color: #d4af37;
}

.gallery-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  margin: 18px 0;
  line-height: 1.1;
}

.gallery-hero-content h1 span {
  color: #d4af37;
}

.gallery-hero-content p {
  font-size: 16px;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-hero {
    height: 55vh;
  }

  .gallery-hero-content h1 {
    font-size: 38px;
  }
}



.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 22px;
}

/* Pattern */
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* Image styling */
.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
@media (max-width: 1024px) {
  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 14px;
  animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}


@media (max-width: 600px) {
  .lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
  }
}


/* Initial hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When visible */
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}



.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }







.stats-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8f5f0, #ffffff);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-box {
  padding: 40px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.stat-box h3 {
  font-size: 3rem;
  color: #b8965a; /* gold accent */
  font-weight: 600;
}

.stat-box p {
  margin-top: 10px;
  color: #444;
  letter-spacing: 1px;
  font-size: 0.95rem;
}


@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-box h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}



.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff, #f8f5f0);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #000;
}

.contact-info p {
  color: #555;
  margin-bottom: 30px;
  max-width: 420px;
}

.contact-details div {
  margin-bottom: 18px;
}

.contact-details strong {
  display: block;
  color: #b8965a;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.contact-details a,
.contact-details span {
  color: #333;
  text-decoration: none;
}

.whatsapp-cta {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #b8965a;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-cta:hover {
  background: #a7844d;
}

/* Form */
.contact-form form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}


@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 2.2rem;
  }

  .contact-form form {
    padding: 30px;
  }
}




.testimonials-section {
  padding: 100px 0;
  background: #111;
  color: #161616;
  text-align: center;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.section-header p {
  color: #bbb;
  margin-bottom: 50px;
}

.testimonial-slider {
  max-width: 700px;
  margin: auto;
  position: relative;
}

.testimonial {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  position: absolute;
  inset: 0;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial h4 {
  font-weight: 500;
  letter-spacing: 1px;
  color: #b8965a;
}

.stars {
  color: #b8965a;
  font-size: 1.3rem;
  margin-bottom: 15px;
}


@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .testimonial p {
    font-size: 1rem;
  }
}



@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.2rem;
  }

  .testimonial p {
    font-size: 1rem;
  }
}


.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.footer {
  background: #111;
  color: #eee;
  padding: 80px 0 30px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

.footer h4 {
  color: #b8965a;
  margin-bottom: 15px;
}

.footer a {
  color: #eee;
  text-decoration: none;
}

.footer a:hover {
  color: #b8965a;
}

.footer-brand img {
  max-width: 120px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
}

/* Scroll Top */
#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #b8965a;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 999;
}



@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-brand,
  .footer-contact,
  .footer-social {
    align-items: center;
    text-align: center;
  }

  .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .social-icons {
    align-items: center;
  }

  .social-icons a {
    display: inline-block;
  }
}
