/* HERO SECTION */
.hero-section {
  position: relative;
  height: 100vh;
  background: url("/assest/c.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: auto;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 35px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-green {
  background: #0aa35c;
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-green:hover {
  background: #088f50;
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #0b1f3a;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #fff;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #e6e6e6;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ABOUT SECTION */
.about-section {
  padding: 100px 0;
  background: #ffffff;
}

/* LEFT */
.section-tag {
  color: #0aa35c;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b1f3a;
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-text {
  font-size: 16.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.learn-more {
  color: #0aa35c;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.learn-more span {
  transition: transform 0.3s ease;
}

.learn-more:hover span {
  transform: translateX(6px);
}

/* IMAGE */
.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* BADGE */
.experience-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: #0aa35c;
  color: #fff;
  padding: 30px 28px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.experience-badge h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
}

.experience-badge p {
  font-size: 13px;
  letter-spacing: 1px;
  margin: 6px 0 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .experience-badge {
    left: 20px;
    bottom: -20px;
  }
}

/* ROOMS SECTION */
.rooms-section {
  padding: 100px 0;
  background: #f9fbfc;
}

/* HEADING */
.section-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 12px;
}

.section-subheading {
  font-size: 16.5px;
  color: #555;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* CARD */
.room-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
}

.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* CONTENT */
.room-content {
  padding: 22px;
}

.room-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 10px;
}

.room-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* FOOTER */
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BOOK NOW BUTTON */
.book-now-btn {
  background: #0aa35c;
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.book-now-btn:hover {
  background: #088f50;
  color: #fff;
}

/* DETAILS LINK */
.details-link {
  font-size: 14px;
  color: #6c7a89;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
  }

  .room-card img {
    height: 220px;
  }
}

/* SKY DECK SECTION */
.skydeck-section {
  padding: 120px 0;
  background: #ffffff;
}

/* IMAGE COLLAGE */
.image-collage {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.top-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.top-images img,
.bottom-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.top-images img {
  height: 200px;
}

.bottom-image img {
  height: 320px;
}

/* BUTTON */
.dark-btn {
  display: inline-block;
  background: #0b1f3a;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: 0.3s ease;
}

.dark-btn:hover {
  background: #09172d;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .top-images img {
    height: 160px;
  }

  .bottom-image img {
    height: 240px;
  }
}

/* STORIES SECTION */

.explore-section {
  padding: 40px 3%;
  background: #f8fafc;
  font-family: "Inter", sans-serif;
}

.explore-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.explore-tag {
  color: #16a34a;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.explore-header h2 {
  font-size: 40px;
  margin-top: 10px;
  color: #0f172a;
}

.all-stories {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.explore-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.explore-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 24px;
}

.card-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #16a34a;
}

.card-content h3 {
  font-size: 20px;
  margin: 12px 0;
  color: #020617;
}

.card-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}


/* DISCOVER MANALI SECTION */
.discover-section {
  background: #0aa36c;
  padding: 50px 0;
  color: #fff;
}

/* TITLE */
.discover-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.discover-subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* CARD */

/* CARD */
.image-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 420px;
  cursor: pointer;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* OVERLAY */
.image-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.2));
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(100%);
  transition: transform 0.6s ease;
}

/* TEXT */
.overlay h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* HOVER EFFECT */
.image-card:hover img {
  transform: scale(1.08);
}

.image-card:hover .overlay {
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .image-card {
    height: 320px;
  }

  .overlay h3 {
    font-size: 22px;
  }
}
/* BUTTON */
.explore-btn {
  display: inline-block;
  padding: 14px 34px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #fff;
  color: #0aa36c;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .discover-title {
    font-size: 34px;
  }
}

.contact-section {
  background: #f9fbfc;
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  color: #0aa36c;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1320;
}

.section-desc {
  color: #6c7a89;
  margin: 18px 0 30px;
  max-width: 480px;
}

.contact-info .info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0aa36c;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info p {
  margin: 0;
  color: #6c7a89;
  font-size: 14px;
}

/* FORM CARD */
.form-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.form-control {
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid #edf1f4;
  font-size: 14px;
}

.form-control:focus {
  border-color: #0aa36c;
  box-shadow: none;
}

.submit-btn {
  background: #0aa36c;
  color: #fff;
  padding: 14px;
  border-radius: 16px;
  font-weight: 600;
  border: none;
}

.submit-btn:hover {
  background: #08915f;
}
