      *{
  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:#16a34a;
  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/omshreeCottage/frontendview-cottage.jpeg) center/cover;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
}

.hero-content{
  background:rgba(0,0,0,.1);
  padding:40px;
  border-radius:12px;
}

.hero button{
  margin-top:15px;
  padding:12px 30px;
  border:none;
  background:#16a34a;
  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:#f0fdf4;
  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 */
.cottage-amenities {
  background: linear-gradient(120deg, #fdfcfb, #e2d1c3);
}

.cottage-amenities h2 {
  color: #003366;
  font-weight: 700;
}

.amenity-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
  cursor: pointer;
}

.amenity-card i {
  font-size: 40px;
  color: #ff6b6b;
  transition: transform 0.4s, color 0.4s;
}

.amenity-card h5 {
  margin-top: 15px;
  font-weight: 600;
  color: #003366;
}

.amenity-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  background: #ffe8e8;
}

.amenity-card:hover i {
  color: #ff3d3d;
  transform: rotate(-10deg) scale(1.2);
}

/* Amenities end */
/* cottage hero section  start */
.singlePhotoSwiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
}

.bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url(assets/omshreeCottage/frontendview-cottage.jpeg); /* ONE IMAGE */
  background-size: cover;
  background-position: center;
}

.content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* cottage hero section  end */