*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

:root{
  --bg:#050816;
  --card:rgba(255,255,255,0.05);
  --text:#ffffff;
  --muted:#9ea3b0;
  --yellow:#facc15;
  --purple:#7c3aed;
  --border:rgba(255,255,255,0.08);
}

body{
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

/* NAVBAR */

nav{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  backdrop-filter:blur(12px);
  background:rgba(5,8,22,0.75);
  border-bottom:1px solid var(--border);
}

.nav-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1rem 0;
}

.logo{
  font-size:1.4rem;
  font-weight:800;
  letter-spacing:2px;
}

.logo span{
  color:var(--yellow);
}

.nav-links{
  display:flex;
  gap:2rem;
  align-items:center;
}

.nav-links a{
  color:white;
  text-decoration:none;
  transition:0.3s;
}

.nav-links a:hover{
  color:var(--yellow);
}

/* BUTTONS */

.btn{
  padding:0.9rem 1.5rem;
  border:none;
  border-radius:14px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.btn-primary{
  background:linear-gradient(135deg,var(--yellow),#f59e0b);
  color:black;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  background:transparent;
  border:1px solid var(--border);
  color:white;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;

  background:
  linear-gradient(to right,
  rgba(5,8,22,0.9),
  rgba(5,8,22,0.5)),

  url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?q=80&w=1974&auto=format&fit=crop');

  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:650px;
  padding-top:5rem;
}

.tag{
  display:inline-block;
  background:rgba(124,58,237,0.2);
  color:#c4b5fd;
  padding:0.5rem 1rem;
  border-radius:999px;
  margin-bottom:1.5rem;
}

.hero h1{
  font-size:clamp(3rem,6vw,5.5rem);
  line-height:1;
  margin-bottom:1.5rem;
}

.hero h1 span{
  color:var(--yellow);
}

.hero p{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:2rem;
}

.hero-buttons{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

/* STATS */

.stats{
  margin-top:3rem;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1rem;
}

.stat-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:1.5rem;
  backdrop-filter:blur(10px);
}

.stat-card h2{
  color:var(--yellow);
  margin-bottom:0.5rem;
}

.stat-card p{
  color:var(--muted);
}

/* SECTION */

section{
  padding:7rem 0;
}

.section-title{
  text-align:center;
  margin-bottom:4rem;
}

.section-title h2{
  font-size:3rem;
  margin-bottom:1rem;
}

.section-title p{
  color:var(--muted);
}

/* ROOMS */

.rooms-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:2rem;
}

.room-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:30px;
  overflow:hidden;
  transition:0.4s;
}

.room-card:hover{
  transform:translateY(-10px);
}

.room-card img{
  width:100%;
  height:250px;
  object-fit:cover;
}

.room-content{
  padding:2rem;
}

.room-content h3{
  margin-bottom:1rem;
}

.price{
  color:var(--yellow);
  font-size:1.4rem;
  font-weight:700;
  margin-bottom:1rem;
}

.features{
  list-style:none;
  margin-bottom:1.5rem;
}

.features li{
  margin-bottom:0.7rem;
  color:var(--muted);
}

/* AMENITIES */

.amenities-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
}

.amenity-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:24px;
  padding:2rem;
  transition:0.3s;
}

.amenity-card:hover{
  transform:scale(1.03);
  background:rgba(124,58,237,0.1);
}

.amenity-card h3{
  margin-bottom:1rem;
}

.amenity-card p{
  color:var(--muted);
  line-height:1.6;
}

/* CTA */

.cta{
  background:linear-gradient(
    135deg,
    rgba(124,58,237,0.2),
    rgba(250,204,21,0.1)
  );

  border:1px solid var(--border);

  border-radius:40px;
  padding:4rem 2rem;
  text-align:center;
}

.cta h2{
  font-size:3rem;
  margin-bottom:1rem;
}

.cta p{
  color:var(--muted);
  margin-bottom:2rem;
}

/* FOOTER */

footer{
  border-top:1px solid var(--border);
  padding:3rem 0;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.footer-content p{
  color:var(--muted);
}

/* RESPONSIVE */

@media(max-width:900px){

  .nav-links{
    display:none;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .stats{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:3rem;
  }

  .section-title h2,
  .cta h2{
    font-size:2rem;
  }

}
/* CONTACT SECTION */

.contact-section {
  padding: 80px 20px;
  background: #050816;
}

/* Center the title */
.contact-section .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.contact-section .section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.contact-section .section-title p {
  color: white;
  margin-top: 10px;
  font-size: 1rem;
}

/* Center the contact box */
.contact-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contact info styling */
.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 450px;
  width: 100%;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #222;
}

.contact-info p {
  font-size: 1rem;
  margin: 10px 0;
  color: #444;
}

/* Optional: Make strong labels stand out */
.contact-info strong {
  color: #000;
}
