body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #f8f9fb;
  color: #fff;
  line-height: 1.6;
}

header {
  background: rgba(30, 27, 48, 0.95);
}

.site-header {
  background: #1e1b30;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo {
	width: 140px;
	height: 130px;
}

.main-nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #d97706; /* accent indigo */
}

.hero {
  background: url("../images/rooms-hero.jpg") center/cover no-repeat;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 1rem;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
}

.rooms {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.rooms h2 {
  text-align: center;
  color: #1e1b30;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.room-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.room-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card h3 {
  margin: 0.8rem 0;
  color: #1e1b30;
}

.room-card p {
  margin: 0.5rem 1rem;
  color: #555;
}

.price {
  font-weight: bold;
  color: #4f46e5;
  margin-bottom: 1rem;
}

.room-card button {
  margin:1px;
  background: #4f46e5;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  margin-bottom: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.room-card button:hover {
  background: #3730a3;
}

.facilities {
  background: #f0f1f5;
  padding: 3rem 1rem;
}

.facilities h2 {
  text-align: center;
  color: #1e1b30;
  margin-bottom: 2rem;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.facility-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.facility-card img {
  width: 180px;
  height: 200px;
  margin-bottom: 1rem;
}

.facility-card h3 {
  color: #1e1b30;
  margin-bottom: 0.5rem;
}

.facility-card p {
  color: #20281d;
  margin-bottom: 0.5rem;
}

