  *{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

/* NAVBAR */
.header{
  position:fixed;
  top:0;
  width:100%;
  background:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,.1);
  z-index:999;
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{ font-size:24px; font-weight:bold; }

.nav-links{
  display:flex;
  gap:25px;
  align-items:center;
}

.nav-links a{ text-decoration:none; color:#111; }

.book-btn{
  background:#2563eb;
  color:#fff;
  padding:10px 22px;
  border:none;
  border-radius:25px;
}

.hamburger{ display:none; font-size:26px; }

.close-btn{ display:none; }

/* HERO */
.hero{
  height:100vh;
  background:url(assets/omsreeresidency/SIDEVIEW.jpg) center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.hero-content{
  background:rgba(0,0,0,0.1);
  padding:40px;
  border-radius:12px;
}

.hero button{
  margin-top:15px;
  padding:12px 30px;
  border:none;
  background:#2563eb;
  color:#fff;
  border-radius:25px;
}

/* SECTIONS */
section{ padding:80px 60px; }

.about{
  display:flex;
  gap:40px;
  align-items:center;
}

.about img{ width:45%; border-radius:12px; }

.amenities{
  background:#f3f4f6;
  text-align:center;
}

.amenity-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:20px;
}

.rooms .room-cards{
  display:flex;
  gap:30px;
  justify-content:center;
}

.room-card{
  width:300px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  border-radius:12px;
  overflow:hidden;
}

.room-card img{ width:100%; }

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-grid img{
  width:100%;
  border-radius:12px;
}

/* FOOTER */
footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:20px;
}

/* MOBILE */
@media(max-width:900px){
  .nav-links{
    position:fixed;
    top:-100%;
    left:0;
    width:100%;
    height:100vh;
    background:#fff;
    flex-direction:column;
    justify-content:center;
    transition:.4s;
  }

  .nav-links.active{ top:0; }

  .hamburger{ display:block; }

  .book-btn{ display:none; }

  .close-btn{
    display:block;
    position:absolute;
    top:25px;
    right:25px;
    font-size:26px;
  }

  .about{ flex-direction:column; }
  .amenity-grid{ grid-template-columns:1fr; }
  .room-cards{ flex-direction:column; }
  .gallery-grid{ grid-template-columns:1fr; }
}
/* Amenities start */
.amenities-section {
  background: #f8f9fa;
}

.amenity-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.amenity-card i {
  display: block;
}

.amenity-card h5 {
  margin-top: 10px;
  font-weight: bold;
}

/* Amenities end */
/* Hero section start   */
.omshreeResidencySwiper {
  width: 100%;
  height: 100vh;
}

.omshreeResidencySwiper .swiper-slide {
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url(assets/omsreeresidency/FRONTVIEW.jpg); /* ONE IMAGE */
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 750px;
  padding: 20px;
  margin-left: 25%;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.6;
}
/* Hero section end  */