body {margin:0;background:#0a0a0a;color:#fff;font-family:'Inter',sans-serif;}

html {
  scroll-behavior: smooth;
}
.image-stack img {
  animation: slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.gallery-item:hover img {
  transform: scale(1.1);
}
nav {
  position:fixed;
  width:95%;
  padding:20px 40px;
  display:flex;
  justify-content:space-between;
  background:rgba(0,0,0,0.7);
  z-index:1000;
}

nav img {height:40px;}

nav a {color:#fff;margin-left:20px;text-decoration:none;}
.hero {
  position: relative;
  overflow: hidden;
}

/* LOGO IN BACKGROUND */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
  width: 500px;
  max-width: 80%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;

  animation: logoFade 2s ease forwards;
  animation-delay: 0.5s;
}

/* FADE-IN ANIMATION */
@keyframes logoFade {
  to {
    opacity: 0.06; /* 🔥 subtle is key */
    transform: translate(-50%, -50%) scale(1);
  }
}

/* KEEP TEXT ABOVE */
/* HERO BASE */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* DARK CINEMATIC OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.95));
  z-index: 1;
}

/* BACKGROUND LOGO */
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  max-width: 80%;
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 0;
  z-index: 0;
  pointer-events: none;

  animation: logoFade 2s ease forwards, float 12s ease-in-out infinite;
}

/* CONTENT ABOVE EVERYTHING */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* TEXT ANIMATION */
.hero-content h1 {
  font-size: 60px;
  font-family: 'Playfair Display', serif;
  opacity: 0;
  transform: translateY(30px);
  animation: textFade 1s ease forwards;
}

.hero-content p {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: textFade 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-content .btn {
  margin-top: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: textFade 1s ease forwards;
  animation-delay: 0.6s;
}

/* TEXT COLOR */
.hero span {
  color: #d4af37;
}

/* BUTTON GLOW */
.btn:hover {
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
}

/* ANIMATIONS */
@keyframes textFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFade {
  to {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes float {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(-50%, -48%) scale(1.03); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.section {
  display:grid;
  grid-template-columns:1fr 1fr;
}

.block {
  padding:60px;
  border:1px solid #222;
}

.block:hover {background:#111;}

.cta {
  text-align:center;
  padding:100px 20px;
}

.btn {
  background:#d4af37;
  color:#000;
  padding:12px 25px;
  text-decoration:none;
  display:inline-block;
  margin:5px;
}

.form-box {
  max-width:900px;
  margin:auto;
  background:#111;
  padding:20px;
  border-radius:10px;
}

.whatsapp {
 position:fixed;
 bottom:20px;
 right:20px;
 background:#25D366;
 color:#fff;
 padding:15px 20px;
 border-radius:50px;
 text-decoration:none;
 font-weight:bold;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* CAPTION OVERLAY */
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #fff;
  font-size: 14px;
  text-align: left;
}

/* OPTIONAL HOVER EFFECT */
.gallery-item:hover .caption {
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
}
.caption {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .caption {
  opacity: 1;
}
.gallery {
  padding: 100px 20px;
  text-align: center;
  background: #0a0a0a;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  opacity: 0.85;
}

.gallery-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* MOBILE */
@media(max-width:768px){
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.image-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; /* tall rectangle */
}

.image-stack img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 1s ease;
}

.image-stack img.active {
  opacity: 1;
}
.reviews {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a, #111);
}

.reviews h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 50px;
  font-size: 32px;
}

.slider {
  overflow: hidden;
  cursor: grab;
}

.slider:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 20px;
  user-select: none;
  scroll-behavior: smooth;
}

.review {
  min-width: 300px;
  background: #111;
  border: 1px solid #222;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.review:hover {
  transform: translateY(-10px);
}

.review p {
  font-size: 14px;
  line-height: 1.6;
}

.review strong {
  color: #d4af37;
  display: block;
  margin: 10px 0;
}

.review span {
  font-size: 13px;
  opacity: 0.7;
}

.review small {
  display: block;
  margin-top: 8px;
  color: #d4af37;
  font-size: 12px;
}

/* SLIDER ANIMATION */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MOBILE */
@media(max-width:768px){
  .slider-track {
    animation: scroll 40s linear infinite;
  }
}
@media(max-width:768px){
  .section {grid-template-columns:1fr;}
  .hero h1 {font-size:38px;}
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
}

.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

.footer {
  background: #050505;
  padding: 60px 20px 20px;
  color: #ccc;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

/* ACCREDITATION LOGOS */
.accreditations {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.accreditations img {
  height: 50px;
  background: #fff;
  padding: 5px;
  border-radius: 6px;
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .accreditations {
    justify-content: center;
  }

.hero {
  background-attachment: fixed;
}
