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

body {
  background: black;
  color: white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  padding: 20px 60px;
  z-index: 100;

  background: transparent; 
  transition: all 0.3s ease; 
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
}
.nav-logo {
  height: 70px;
  transition: 0.3s;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: black;
}

/* MAIN CENTER VIDEO (NO BLUR) */
.main-video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* SIDE BLUR VIDEOS */
.side-video {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  object-fit: cover;
  filter: blur(25px);
  transform: scale(1.2); 
  z-index: 1;
}

/* LEFT SIDE */
.left {
  left: 0;
  object-position: left;
}

/* RIGHT SIDE */
.right {
  right: 0;
  object-position: right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 

  width: 100%;
  text-align: center;
  z-index: 5;
}

.hero-title {
  font-size: 7vw;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeUp 1s ease;

  color: white;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3)
}
@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  border: 1px solid white;
  text-decoration: none;
  color: white;
}

.btn.secondary {
  background: white;
  color: black;
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  text-align: center;
}

.dark {
  background: #111;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.card {
  background: #111;
  padding: 20px;
  text-align: center;
  border: 1px solid #333;
  transition: 0.3s;
}

.card:hover {
  border-color: #ffd700;
  transform: translateY(-5px);
}
.about {
  max-width: 1100px;
  margin: auto;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px 0;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
}

.about-text {
  max-width: 500px;
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

/* PLANS */
.pricing {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.price-card {
  background: #111;
  padding: 30px;
  width: 280px;
  border-radius: 15px;
  border: 1px solid #333;
  text-align: center;
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
}

.price {
  font-size: 40px;
  margin: 20px 0;
}

.price span {
  font-size: 14px;
  color: #aaa;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.price-card ul li {
  margin: 10px 0;
  font-size: 14px;
}

/* 🔥 Highlight card */
.highlight {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid #00ff88;
  transform: scale(1.05);
}

/* GALLERY */
.gallery-section {
  overflow: hidden;
}

.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 30px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.gallery-scroll::-webkit-scrollbar {
  display: none;
}

.gallery-card {
  flex: 0 0 350px;   
  height: 420px;

  border-radius: 20px;
  overflow: hidden;

  scroll-snap-align: center;
  transition: transform 0.3s ease;

  position: relative;
}

.gallery-card img {
  width: 100%;
  height: 100%;           
  object-fit: cover;      

  display: block;
}

.map-container {
  margin-top: 30px;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: translateY(-50px);
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: green;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
/* MOBILE MENU */
.menu-toggle{
  display: none;
}

.mobile-menu{
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);

  z-index: 9999;

  transform: translateX(-100%);
  transition: 0.4s ease;
}

.mobile-menu.active{
  transform: translateX(0);
}

.mobile-menu-content{
  width: 72%;
  max-width: 320px;
  height: 100%;

  background: rgba(0,0,0,0.82);

  padding: 120px 30px 40px;

  display: flex;
  flex-direction: column;
  gap: 30px;
}

.close-menu{
  position: absolute;
  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.2);
  color: white;

  font-size: 18px;
}

.mobile-menu a{
  color: white;
  text-decoration: none;
  letter-spacing: 3px;
  font-size: 14px;
}

.mobile-link{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-link span{
  color: white;
}

.mobile-socials{
  margin-top: auto;

  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
  padding: 15px 20px; 
}

.navbar.scrolled {
  background: rgba(0,0,0,0.9);
}

  .nav-logo {
    height: 55px;
  }

  .navbar nav {
    display: none; 
  }
.menu-toggle{
  display: block;

  background: rgba(255,255,255,0.15);
  border: none;

  color: white;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  font-size: 22px;
}

  /* HERO */
  .hero {
    height: 100svh;
  }

  .hero-title {
    font-size: 9vw; 
  }
 .hero-content {
    top: 55%; 
    transform: translate(-50%, -50%);
    padding: 0 10px;
  }

  .hero-content p {
    font-size: 13px;
  }

    .cta-buttons {
    flex-direction: row; 
  }

  .btn {
    width: auto; 
    padding: 10px 15px;
    font-size: 14px;
  }

  .side-video {
    display: none; 
  }

  .main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* ABOUT */
  .features {
    grid-template-columns: 1fr; 
  }

  /* PLANS */
  .plans {
    align-items: center;
  }

  .pricing {
    display: flex;
    flex-wrap: nowrap;            
    overflow-x: auto;
    gap: 20px;

    padding: 20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    justify-content: flex-start;
  }

  .pricing::-webkit-scrollbar {
    display: none;
  }

  .price-card {
    flex: 0 0 85%;               
    max-width: 280px;

    scroll-snap-align: center;
    transition: transform 0.3s ease;
  }
 .price-card {
  transform: scale(0.9);
  opacity: 0.7;
}

.price-card.active {
  transform: scale(1);
  opacity: 1;
}


  /* GALLERY */
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-card {
    flex: 0 0 97%;   
    height: 420px;
  }

  /* MAP */
  .map-container iframe {
    width: 100%;
    height: 300px;
  }
  .about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-row.reverse {
    flex-direction: column;
  }

}