/* ===========================
   GLOBAL STYLES
=========================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: #222;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
}


/* ===========================
   MAIN HEADER / NAVBAR
=========================== */

.main-header {
  width: 100%;
  background: rgba(0,0,0,0.45);
  padding: 16px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.nav-logo span {
  color: #42ff8f;
}

.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.nav-menu li a:hover {
  color: #42ff8f;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.phone-icon {
  color: #ff2f8a;
  font-size: 20px;
}




.hero-section {
  height: 100vh;
  background: url("assets/aec5bad4-e18f-4f0e-ab96-6ba975b86b66.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

.hero-content {
    position: absolute;
    top: 5%;
    left: 5%;
    transform: translate(-50%, -100%); /* -60% moves UP */
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 900px;
    z-index: 10;
}


.small-title {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
}

.sub {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 500;
}

.tagline {
  margin-top: 6px;
  font-style: italic;
  font-size: 18px;
}

.desc {
  margin-top: 15px;
  font-size: 18px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}
.btn-outline span {
  color: #42ff8f;
}

.scroll-down {
  margin-top: 35px;
  font-size: 14px;
  opacity: 0.9;
}

.arrow {
  font-size: 22px;
  margin-top: -5px;
}

.slider-dots {
  margin-top: 25px;
}
.slider-dots .dot {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.4;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}
.slider-dots .active {
  opacity: 1;
}


/* ===========================
   ABOUT SECTION
=========================== */

.about-section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 5px;
  font-size: 18px;
  letter-spacing: 2px;
  color: #888;
  text-transform: uppercase;
}

.sub-heading {
  text-align: center;
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-text,
.about-section p {
  font-size: 17px;
  margin-top: 15px;
  line-height: 1.7;
}

.mini-title {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
}

.about-list {
  margin-top: 15px;
  margin-left: 25px;
}

.about-list li {
  margin-bottom: 8px;
  font-size: 16px;
}


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

.rooms-section {
  padding: 100px 0;
  background: #f9f9f9;
}

.rooms-sub {
  text-align: center;
  color: #888;
  letter-spacing: 2px;
}

.rooms-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.rooms-desc {
  text-align: center;
  width: 70%;
  margin: auto;
  margin-top: 10px;
  color: #555;
}

.rooms-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.room-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.room-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.room-content {
  padding: 20px 25px;
}

.room-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.room-info {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
  font-size: 14px;
}

.room-text {
  color: #555;
  font-size: 15px;
  margin-bottom: 12px;
}

.room-tags span {
  background: #e8f5ff;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  margin-right: 6px;
  display: inline-block;
  margin-bottom: 8px;
}

.room-btn {
  display: block;
  margin-top: 10px;
  width: 100%;
  background: #84d7ff;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}


/* ===========================
   AMENITIES SECTION
=========================== */

.amenities-section {
  padding: 100px 0;
}

.amenities-sub {
  text-align: center;
  color: #888;
  letter-spacing: 2px;
}

.amenities-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-top: 10px;
}

.amenities-desc {
  text-align: center;
  margin-top: 8px;
  color: #555;
}

.amenities-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

.amenity-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  position: relative;
}

.icon-circle {
  width: 60px;
  height: 60px;
  margin: auto;
  background: #0d1628;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 12px;
}

.badge {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #222;
  color: #fff;
  padding: 3px 8px;
  font-size: 11px;
  border-radius: 6px;
}


/* ===========================
   CONTACT SECTION
=========================== */

.contact-section {
  padding: 100px 0;
}

.contact-sub {
  text-align: center;
  color: #888;
  letter-spacing: 2px;
}

.contact-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  margin-top: 8px;
}

.contact-desc {
  text-align: center;
  color: #555;
  margin-top: 6px;
}

.contact-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 35px;
}

.contact-card,
.form-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-box {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  font-size: 16px;
}

.info-icon {
  font-size: 20px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
}

.form-row {
  display: flex;
  gap: 20px;
}

.submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  background: #0d1628;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.map-box {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
}


/* ===========================
   FOOTER (DARK)
=========================== */

.site-footer-dark {
  background: #0d1628;
  color: #ccd2e3;
  padding: 60px 0 20px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
}
.footer-logo span {
  color: #ffe17a;
}

.footer-about {
  margin: 15px 0;
  font-size: 15px;
}

.footer-info {
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #c9d1e5;
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
}

.footer-input {
  width: 100%;
  padding: 12px;
  background: #1b263b;
  border: none;
  border-radius: 8px;
  margin-top: 5px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-btn {
  width: 100%;
  padding: 12px;
  background: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
}

.footer-social {
  text-align: center;
  margin-top: 25px;
}
.footer-social span {
  margin: 0 8px;
  font-size: 22px;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  color: #cdd4e4;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #23314c;
  font-size: 14px;
}


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

@media (max-width: 900px) {
  .nav-menu { display: none; }

  .rooms-grid,
  .amenities-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .form-row {
    flex-direction: column;
  }

  .hero-content h1 {
    font-size: 40px;
  }
}
/* ===========================
   ABOUT – STATS SECTION
=========================== */

.about-stats {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
}

.stat-icon img {
  width: 70px;
  height: 70px;
  background: #0d1628;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.stat-item h3 {
  font-size: 32px;
  margin-top: 10px;
}

.stat-item p {
  font-size: 14px;
  color: #666;
}



/* ===========================
   WHY CHOOSE US – CARDS
=========================== */

.why-choose {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.choose-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.choose-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 15px;
  color: #555;
}
/* ===========================
   HERO SLIDESHOW BACKGROUND
=========================== */



.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideShow 24s infinite;
}

/* Image Display Order */
.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 6s; }
.hero-slider .slide:nth-child(3) { animation-delay: 12s; }
.hero-slider .slide:nth-child(4) { animation-delay: 18s; }

/* Fade Animation */
@keyframes slideShow {
    0% { opacity: 0; }
    5% { opacity: 1; }
    25% { opacity: 1; }
    30% { opacity: 0; }
    100% { opacity: 0; }
}

/* Dark overlay */
#home::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

/* ===========================
   HERO TEXT STYLING
=========================== */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin-top: 10px;
}

.hero-content h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-content .tagline {
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border-radius: 6px;
    margin: 0 10px;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    border: 1px solid white;
    color: white;
}

.btn-secondary span {
    color: #ffae00;
}

.scroll-indicator {
    margin-top: 35px;
    font-size: 14px;
    letter-spacing: 3px;
}

/* FORCE HERO CONTENT PERFECT CENTER — FIX ALL OVERRIDES */





/* Remove any accidental left margin */
#home * {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
/* ---------------- GALLERY SECTION ---------------- */
#gallery {
    padding: 80px 40px;
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 16px;
    letter-spacing: 2px;
    color: #888;
}

.section-subtitle {
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
}

.section-text {
    color: #666;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-content: center;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    cursor: pointer;
}


/* Responsive */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* ------------------- LIGHTBOX ------------------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 45px;
    color: white;
    cursor: pointer;
}

.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translateY(-50%);
}

.prev:hover, .next:hover {
    background: rgba(255,255,255,0.3);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

@media(max-width: 600px){
    .prev, .next {
        font-size: 30px;
        padding: 8px;
    }
}


.hero-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 1.2s;
    z-index: -1 !important;
}
/* FINAL Hero Layout – the ONLY correct version */
/* ============ FINAL HERO LAYOUT (CENTER FIXED) ============ */

#home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;

    display: flex;
    justify-content: center;   /* horizontally center */
    align-items: center;       /* vertically center */
}

/* Background slideshow images */
.hero-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fade 24s infinite;
}

.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 6s; }
.hero-slideshow img:nth-child(3) { animation-delay: 12s; }
.hero-slideshow img:nth-child(4) { animation-delay: 18s; }

@keyframes fade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    40%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Hero content – EXACT CENTER */
.hero-inner {
    position: relative;
    z-index: 10;
    text-align: center;

    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    color: white;
}

.whatsapp-call {
    color: #ffffff;      /* change to any color you want */
    font-weight: bold;
    text-decoration: none;
}

.whatsapp-call:hover {
    color: #25D366;      /* WhatsApp green on hover */
}
.contact-whatsapp {
    color: #000000;      /* Change number color */
    font-weight: bold;
    text-decoration: none;
}

.contact-whatsapp:hover {
    color: #25D366;      /* WhatsApp green on hover */
}
/* Hide Travels text by default */
.rbs-travels-text {
    display: none;
}

/* When slide 5 or slide 6 is active → show RBS Travels text */
.slide.active:nth-child(5) ~ .hero-content .rbs-travels-text,
.slide.active:nth-child(6) ~ .hero-content .rbs-travels-text {
    display: block;
}

/* Optional – Hide Sharmajee text when car slides show */
.slide.active:nth-child(5) ~ .hero-content .main-resort-text,
.slide.active:nth-child(6) ~ .hero-content .main-resort-text {
    display: none;
}
