:root{
  --bg:#0b1120;
  --bg2:#111827;
  --card:#172033;
  --gold:#d4af37;
  --text:#f8fafc;
  --muted:#cbd5e1;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* =========================
   NAVBAR
========================== */

.navbar{
  background:rgba(11,17,32,0.85);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  padding:18px 0;
}

.navbar-brand{
  font-family:'Playfair Display',serif;
  font-size:2rem;
  color:white;
  font-weight:700;
  letter-spacing:2px;
}

.nav-link{
  color:#d1d5db !important;
  margin:0 10px;
  position:relative;
  transition:0.3s;
}

.nav-link:hover{
  color:white !important;
}

.nav-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:var(--gold);
  transition:0.3s;
}

.nav-link:hover::after{
  width:100%;
}

/* =========================
   BUTTON
========================== */

.btn-gold{
  background:linear-gradient(135deg,#d4af37,#f5d97b);
  color:#111;
  border:none;
  border-radius:14px;
  font-weight:700;
  padding:12px 28px;
  transition:0.3s;
}

.btn-gold:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(212,175,55,0.35);
}

/* =========================
   AUTH BUTTONS
========================== */

.auth-buttons{
  display:flex;
  align-items:center;
}

.btn-login{
  background:transparent;
  border:1px solid rgba(255,255,255,0.18);
  color:white;
  padding:12px 24px;
  border-radius:14px;
  font-weight:600;
  transition:0.3s;
}

.btn-login:hover{
  background:rgba(255,255,255,0.08);
  border-color:rgba(255,255,255,0.35);
  transform:translateY(-2px);
}

/* =========================
   main
========================== */

.main{
  min-height:100vh;

  background:
  linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.7)),
  url('/resources/images/background.jpg')
  center/cover no-repeat;

  display:flex;
  align-items:center;
}

.main-content{
  max-width:720px;
}

.main-subtitle{
  color:var(--gold);
  letter-spacing:3px;
  margin-bottom:20px;
  font-weight:600;
}

.main-title{
  font-size:5rem;
  font-family:'Playfair Display',serif;
  line-height:1.1;
  margin-bottom:25px;
}

.main-text{
  color:#d1d5db;
  line-height:1.8;
  font-size:1.1rem;
  margin-bottom:40px;
}

.main-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* =========================
   about
========================== */

.about{
  padding:110px 0;
}

.about-title{
  font-size:3rem;
  font-family:'Playfair Display',serif;
  margin-bottom:60px;
}

/* =========================
   GLASS CARD
========================== */

.glass-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:35px;
  backdrop-filter:blur(12px);
  transition:0.4s;
}

.glass-card:hover{
  transform:translateY(-8px);
  border-color:rgba(212,175,55,0.3);
}

.glass-card h3,
.glass-card h4{
  margin-bottom:16px;
}

.glass-card p{
  color:var(--muted);
  line-height:1.8;
}

/* =========================
   ROOMS
========================== */

.room-card{
  background:var(--bg2);
  border-radius:24px;
  overflow:hidden;
  transition:0.4s;
  border:1px solid rgba(255,255,255,0.08);
  height:100%;
}

.room-card:hover{
  transform:translateY(-10px);
}

.room-image{
  height:260px;
  overflow:hidden;
}

.room-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
}

.room-card:hover img{
  transform:scale(1.08);
}

.room-content{
  padding:30px;
}

.room-content h3{
  margin-bottom:10px;
}

.room-price{
  color:var(--gold);
  margin-bottom:20px;
  font-size:1.2rem;
}

.room-features{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:25px;
}

.room-features span{
  background:rgba(255,255,255,0.06);
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  color:#d1d5db;
}

/* =========================
   FEATURES
========================== */

.feature-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:24px;
  padding:35px;
  text-align:center;
  transition:0.4s;
  height:100%;
}

.feature-card:hover{
  transform:translateY(-8px);
  border-color:var(--gold);
}

.feature-card i{
  font-size:3rem;
  color:var(--gold);
  margin-bottom:20px;
}

.feature-card h4{
  margin-bottom:12px;
}

.feature-card p{
  color:var(--muted);
}

/* =========================
   CONTACTS
========================== */

.contact-icon{
  font-size:2.5rem;
  color:var(--gold);
  margin-bottom:20px;
}

/* =========================
   FOOTER
========================== */

footer{
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  background:#070b14;
  color:#94a3b8;
}

/* =========================
   RESPONSIVE
========================== */

@media(max-width:992px){

  .main-title{
    font-size:4rem;
  }

}

@media(max-width:768px){

  .main{
    text-align:center;
  }

  .main-buttons{
    justify-content:center;
  }

  .main-title{
    font-size:3rem;
  }

  .about-title{
    font-size:2.2rem;
  }

}

@media(max-width:576px){

  .main-title{
    font-size:2.4rem;
  }

  .main-text{
    font-size:1rem;
  }

}