/* ===== BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background-color: #1E0A1F;
  color: #f0e6f6;
}

::selection {
  background: #F5A623;
  color: #4A1C4D;
}

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(30, 10, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#navbar.scrolled .flex.items-center {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* ===== HERO GEOMETRIC SHAPES ===== */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.geo-circle--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.geo-circle--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(163, 63, 174, 0.12) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.geo-circle--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 45%;
  animation: float 6s ease-in-out infinite;
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 104px solid rgba(245, 166, 35, 0.06);
  top: 20%;
  right: 5%;
  transform: rotate(15deg);
  animation: spin-slow 20s linear infinite;
}

.geo-dots {
  position: absolute;
  bottom: 15%;
  left: 3%;
  display: grid;
  grid-template-columns: repeat(5, 8px);
  gap: 12px;
  opacity: 0.3;
}

.geo-dots::before,
.geo-dots::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #F5A623;
  border-radius: 50%;
  box-shadow:
    12px 0 0 #F5A623,
    24px 0 0 #F5A623,
    0 12px 0 #F5A623,
    12px 12px 0 #F5A623,
    24px 12px 0 #F5A623,
    0 24px 0 #F5A623,
    12px 24px 0 #F5A623,
    24px 24px 0 #F5A623;
}

/* ===== CABIN CARDS ===== */
.cabin-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cabin-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(245, 166, 35, 0.2);
}

/* ===== AMENITY ITEMS ===== */
.amenity-item {
  transition: transform 0.3s ease;
}

.amenity-item:hover {
  transform: translateX(6px);
}

/* ===== ATTRACTION CARDS ===== */
.attraction-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s 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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== MOBILE MENU ===== */
#mobileMenu {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== INPUT STYLES ===== */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
  cursor: pointer;
}

select option {
  background: #4A1C4D;
  color: #f0e6f6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .geo-circle--1 {
    width: 300px;
    height: 300px;
  }

  .geo-circle--2 {
    width: 200px;
    height: 200px;
  }

  .geo-triangle {
    display: none;
  }

  .geo-dots {
    display: none;
  }
}
