/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
}

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

.geometric-rect {
  position: absolute;
  pointer-events: none;
  border-radius: 24px;
}

.geometric-dots {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #C45742 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.2;
  pointer-events: none;
}

.c1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 87, 66, 0.08) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}

.c2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(229, 168, 68, 0.12) 0%, transparent 70%);
  bottom: 10%;
  right: 5%;
}

.c3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.r1 {
  width: 80px;
  height: 80px;
  background: rgba(196, 87, 66, 0.06);
  transform: rotate(45deg);
  top: 25%;
  right: 12%;
}

.r2 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.06);
  transform: rotate(30deg);
  bottom: -30px;
  left: 10%;
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* ===== NAVBAR ===== */
#navbar {
  background: rgba(253, 248, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(237, 190, 104, 0.15);
}

#navbar.scrolled {
  background: rgba(253, 248, 240, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.nav-line {
  transition: all 0.3s ease;
}

#mobile-toggle.active .nav-line:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

#mobile-toggle.active .nav-line:nth-child(2) {
  opacity: 0;
}

#mobile-toggle.active .nav-line:nth-child(3) {
  width: 5rem;
  margin-left: 0;
}

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

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* ===== ATTRACTION ITEMS ===== */
.attraction-item {
  transition: all 0.3s ease;
}

.attraction-item:hover {
  transform: translateX(4px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== MOBILE LINKS ===== */
.mobile-link {
  transition: color 0.2s ease;
}

.mobile-link:hover {
  color: #C45742;
}

/* ===== FOCUS STYLES ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #C45742;
  outline-offset: 2px;
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(196, 87, 66, 0.15);
  color: #1F1A17;
}
