/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* ===== GEOMETRIC SHAPES ===== */
.geo-shape { position: absolute; pointer-events: none; }

.shape-circle-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,98,85,0.12) 0%, transparent 70%);
  top: -100px; right: -150px;
  border-radius: 50%;
}
.shape-circle-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,98,85,0.08) 0%, transparent 70%);
  bottom: 10%; left: 5%;
  border-radius: 50%;
}
.shape-rect-1 {
  width: 120px; height: 120px;
  background: rgba(232,98,85,0.06);
  border: 2px solid rgba(232,98,85,0.15);
  top: 25%; left: 48%;
  transform: rotate(45deg);
  border-radius: 16px;
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid rgba(232,98,85,0.07);
  top: 60%; right: 10%;
}
.shape-dots {
  width: 100px; height: 100px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  bottom: 20%; right: 25%;
}
.shape-circle-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,98,85,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  border-radius: 50%;
}
.shape-dots-light {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 2px, transparent 2px);
  background-size: 14px 14px;
  top: 15%; right: 5%;
}

/* ===== FLOATING CARDS ===== */
.floating-card-1 {
  animation: float1 4s ease-in-out infinite;
}
.floating-card-2 {
  animation: float2 5s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator { opacity: 0.6; }
.scroll-dot {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
#navbar.scrolled {
  background: rgba(20, 22, 27, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  padding-top: 0;
  padding-bottom: 0;
}
#navbar .max-w-7xl { padding-top: 0; padding-bottom: 0; }

/* ===== MOBILE NAV ===== */
#mobileNav.open { opacity: 1 !important; pointer-events: all !important; }

/* ===== AMENITY CARDS ===== */
.amenity-card {
  transform: translateY(0);
}
.amenity-card:hover {
  transform: translateY(-4px);
}

/* ===== SITE CARDS ===== */
.site-card {
  transform: translateY(0);
}
.site-card:hover {
  transform: translateY(-6px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE MENU LINKS ===== */
.mobile-nav-link {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
#mobileNav.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}
#mobileNav.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
#mobileNav.open .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
#mobileNav.open .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
#mobileNav.open .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
#mobileNav.open .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .shape-circle-1 { width: 300px; height: 300px; }
  .shape-circle-2 { display: none; }
  .shape-rect-1 { display: none; }
  .shape-triangle { display: none; }
  .shape-dots { display: none; }
}
</style>
