* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: 'DM Sans', Arial, sans-serif;
  background-color: #0d0d0d;
  color: #e8e4dc;
  line-height: 1.6;
}
 
/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(13,13,13,0.95);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
}
 
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9a84c;
}
 
.nav-links a {
  color: #9a9080;
  text-decoration: none;
  padding: 10px 16px;
  font-size: 14px;
  transition: color 0.2s;
}
 
.nav-links a:hover {
  color: #c9a84c;
}
 
/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d0d0d 0%, #1a1208 60%, #0d0d0d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
}
 
.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}
 
.hero h1 span {
  color: #c9a84c;
}
 
.hero p {
  font-size: 16px;
  color: #9a9080;
  max-width: 520px;
  margin-bottom: 36px;
}
 
.hero-btns {
  display: flex;
  gap: 14px;
}
 
.btn-gold {
  background-color: #c9a84c;
  color: #0d0d0d;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: background-color 0.2s;
}
 
.btn-gold:hover {
  background-color: #e8c97e;
}
 
.btn-outline {
  border: 1px solid rgba(201,168,76,0.4);
  color: #c9a84c;
  padding: 13px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.2s;
}
 
.btn-outline:hover {
  background-color: rgba(201,168,76,0.08);
}
 
/* ── SECTIONS ── */
.section {
  background-color: #161616;
  margin: 25px auto;
  padding: 40px 40px;
  max-width: 960px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}
 
.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c9a84c;
  font-size: 26px;
  border-bottom: 2px solid #c9a84c;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
 
.section p {
  color: #c8c0b0;
  font-size: 15px;
  margin-bottom: 10px;
}
 
/* ── VISION & MISSION ── */
.vm-grid {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
 
.vm-card {
  background-color: #1e1e1e;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 28px;
  flex: 1;
}
 
.vm-card h3 {
  color: #c9a84c;
  font-size: 18px;
  margin-bottom: 12px;
}
 
.vm-card p {
  color: #c8c0b0;
  font-size: 14px;
  margin: 0;
}
 
/* ── CATEGORIES ── */
.cat-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
 
.cat-box {
  background-color: #1e1e1e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 20px 14px;
  width: 165px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
}
 
.cat-box:hover {
  border-color: #c9a84c;
  background-color: #222;
}
 
.cat-box img {
  width: 55px;
  height: 55px;
  filter: sepia(1) saturate(4) hue-rotate(5deg) brightness(0.85);
}
 
.cat-box h3 {
  color: #c9a84c;
  font-size: 14px;
  margin: 10px 0 4px 0;
}
 
.cat-box p {
  color: #9a9080;
  font-size: 12px;
  margin: 0;
}
 
.cat-message {
  margin-top: 18px;
  padding: 14px 18px;
  background-color: #1e1e1e;
  border-left: 4px solid #c9a84c;
  color: #c9a84c;
  border-radius: 4px;
  font-weight: bold;
  display: none;
}
 
/* ── ROOM CARDS ── */
.room-card {
  display: flex;
  gap: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
  background-color: #1e1e1e;
  transition: border-color 0.2s;
}
 
.room-card:hover {
  border-color: rgba(201,168,76,0.3);
}
 
.room-card img {
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
 
.room-info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c9a84c;
  font-size: 20px;
  margin-bottom: 8px;
}
 
.room-info p {
  font-size: 14px;
  color: #c8c0b0;
  margin-bottom: 6px;
}
 
.price {
  font-size: 20px;
  color: #e8c97e;
  font-weight: bold;
  margin: 10px 0 !important;
}
 
.room-info button {
  background-color: #c9a84c;
  color: #0d0d0d;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
}
 
.room-info button:hover {
  background-color: #e8c97e;
}
 
/* ── CONTACT ── */
.contact-grid {
  display: flex;
  gap: 40px;
  margin-top: 10px;
}
 
.contact-info {
  flex: 1;
}
 
.contact-info p {
  margin-bottom: 14px;
  font-size: 15px;
}
 
.contact-form {
  flex: 2;
}
 
/* ── FORM GROUPS ── */
.form-group {
  margin-bottom: 14px;
}
 
.form-group label {
  display: block;
  font-size: 13px;
  color: #c9a84c;
  font-weight: bold;
  margin-bottom: 5px;
}
 
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  background-color: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 5px;
  color: #e8e4dc;
  font-size: 14px;
  font-family: 'DM Sans', Arial, sans-serif;
}
 
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a84c;
}
 
.form-row {
  display: flex;
  gap: 14px;
}
 
.form-row .form-group {
  flex: 1;
}
 
.success-text {
  display: none;
  color: #c9a84c;
  margin-top: 10px;
  font-weight: bold;
}
 
/* ── PRICE BOX ── */
.price-box {
  background-color: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 4px solid #c9a84c;
  border-radius: 6px;
  padding: 14px 18px;
  margin: 16px 0;
}
 
.price-box p {
  margin: 5px 0;
  font-size: 14px;
  color: #c8c0b0;
}
 
/* ── BUTTONS ── */
button {
  background-color: #c9a84c;
  color: #0d0d0d;
  border: none;
  padding: 11px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: 'DM Sans', Arial, sans-serif;
  transition: background-color 0.2s;
}
 
button:hover {
  background-color: #e8c97e;
}
 
/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: rgba(0,0,0,0.75);
  align-items: center;
  justify-content: center;
}
 
.modal-overlay.active {
  display: flex;
}
 
.modal {
  background-color: #1e1e1e;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 36px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
 
.modal h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c9a84c;
  font-size: 22px;
  margin-bottom: 4px;
}
 
.modal p {
  color: #9a9080;
  font-size: 14px;
  margin-bottom: 18px;
}
 
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #9a9080;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
}
 
.modal-close:hover {
  color: #fff;
  background: none;
}
 
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
 
.modal-success div {
  font-size: 40px;
  margin-bottom: 10px;
}
 
.modal-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #c9a84c;
  font-size: 22px;
  margin-bottom: 8px;
}
 
.modal-success p {
  color: #9a9080;
}
 
/* ── FOOTER ── */
.footer {
  background: linear-gradient(135deg, #0d0d0d, #1a1208);
  color: #9a9080;
  text-align: center;
  padding: 20px;
  margin-top: 10px;
  font-size: 13px;
  border-top: 1px solid rgba(201,168,76,0.15);
}