* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #f8fafc;
  line-height: 1.6;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 800;
}

.logo span {
  color: #38bdf8;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
}

.nav-links a:hover {
  color: #38bdf8;
}

.section {
  padding: 90px 8%;
}

.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.28), transparent 35%),
    linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.95)),
    url("room.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 35px;
}

.lead {
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #38bdf8;
  color: #020617;
  text-decoration: none;
  font-weight: 800;
  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.25);
}

.btn.ghost {
  background: transparent;
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-4px);
  transition: 0.25s;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.card p {
  color: #cbd5e1;
  margin-bottom: 8px;
}

.map-card{
    padding:0;
    overflow:hidden;
}

.map-card iframe{
    display:block;
    width:100%;
    height:320px;
    border:none;
}

.price {
  color: #38bdf8 !important;
  font-size: 2rem;
  font-weight: 900;
  margin: 10px 0;
}

.featured {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.22), rgba(30, 41, 59, 0.9));
  border-color: rgba(56, 189, 248, 0.5);
}

.tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #38bdf8;
  color: #020617 !important;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.about,
.contact {
  background: #111c33;
}

.contact-box {
  max-width: 560px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-box p {
  margin-bottom: 12px;
  color: #cbd5e1;
}

a {
  color: #38bdf8;
}

footer {
  text-align: center;
  padding: 28px 8%;
  background: #020617;
  color: #94a3b8;
}

footer a {
  color: #38bdf8;
  text-decoration: none;
}

@media (max-width: 850px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 6%;
  }
}