/* ================= GLOBAL ================= */
:root {
  --primary: #01044a;
  --gold: #ebb207;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= NAVBAR ================= */
.custom-nav {
  background: var(--primary);
}
#logo{
  border-radius: 5px;
  margin-left: 28px;
}
.navbar .nav-link {
  color: #fff !important;
  padding: 10px 14px;
}
.navbar .nav-link:hover{
    color: #ebb207;
}

.btn-gold-nav {
  background: var(--gold);
  color: var(--primary) !important;
  border-radius: 20px;
  padding: 6px 16px;
}

/* ================= BUTTONS ================= */
.btn-gold {
  background: var(--gold);
  color: var(--primary);
 
  padding: 12px 28px;
  font-weight: 500;
  border: none;
  box-shadow: 0px 10px 10px rgb(136, 91, 1);
  transition: all 0.3s;
}

.btn-gold:hover {
  background:var(--primary);
  color: var(--gold);
  box-shadow: 0px 6px 8px rgba(1, 3, 136, 0.575);
   border-radius: 13px;
   transform: translateY(7px);
}

/* ================= HERO (COMMON) ================= */
.hero-overlay,
.rooms-hero-overlay,
.gallery-hero-overlay,
.contact-hero-overlay {
  height: 100%;
  background: rgba(1, 3, 74, 0.308);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}
/* ================= INDEX ================= 
.hero-premium {
  height: 85vh;
  background: url('images/3d-rendering-beautiful-comtemporary-luxury-bedroom-suite-hotel-with-tv.jpg') center/cover no-repeat;
  background-attachment:fixed ;
}*/

/* VIDEO HERO */
/* ================= VIDEO HERO ================= */

.video-hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
  background: #01044a;
}

/* Fallback image */
.hero-fallback {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Background video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Overlay content */
.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(1,4,74,0.65); /* brand overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 0 15px;
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {

  .video-hero {
    height: 75vh;
  }

  /* Optional: disable video on low-end mobile */
  /* .hero-video { display: none; } */
}


/* ================= FEATURES ================= */
.feature-box {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 15px rgba(3, 3, 36, 0.479);
  border-bottom: 5px solid var(--gold);
}

/* ================= ROOMS ================= */
.rooms-hero {
  height: 75vh;
  background: url('images/room1-3.jpg') center/cover no-repeat;
  
}

.room-features {
  list-style: none;
  padding-left: 0;
}

.room-features li {
  margin-bottom: 6px;
}

/* ================= NEW GALLERY ================= */

/* Hero */
.gallery-hero {
  height: 75vh;
  background: url('images/top-outlook.jpg') center/cover no-repeat;
  position: relative;
}

.gallery-hero-overlay {
  height: 100%;
  background: rgba(1, 3, 74, 0.445);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Masonry */
.gallery-masonry {
  column-count: 2;
  column-gap: 12px;
  padding: 0 10px;
}

.gallery-masonry img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-masonry img:hover {
  transform: scale(1.03);
}

/* Desktop enhancement */
@media (min-width: 992px) {
  .gallery-masonry {
    column-count: 4;
    padding: 0 60px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .gallery-hero-new {
    height: 35vh;
  }
}


/* ================= CONTACT ================= */
.contact-hero {
  height: 75vh;
  background: url('images/main-ent.jpg') center/cover no-repeat;
}

.quick-action {
  display: block;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.quick-action.call {
  background: var(--primary);
  color: #fff;
}

.quick-action.whatsapp {
  background: #25d366;
  color: #fff;
}

.booking-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,.1);
}

/* ================= CTA ================= */
.cta-section {
  background: var(--primary);
  color: #fff;
  padding: 50px 15px;
  text-align: center;
}
/* ================= MISSION · VISION ================= */

.mv-section {
  background: linear-gradient(180deg, #ffffff, #f8f9fa);
  padding: 80px 15px;
}

/* Title */
.mv-title {
  text-align: center;
  margin-bottom: 50px;
}

.mv-title h2 {
  font-family: 'Playfair Display', serif;
  color: #01044a;
  margin-bottom: 8px;
}

.mv-title p {
  font-size: 14px;
  color: #ffffff;
}

.mv-line {
  width: 60px;
  height: 3px;
  background: #ebb207;
  display: inline-block;
  margin: 10px 0;
}

/* ================= MISSION · VISION (PREMIUM) ================= */

.parallax-bg {
  position: relative;
  background-image: url('images/ent-3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  padding: 100px 15px;
}

.mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1, 3, 74, 0.637);
  z-index: 1;
}

.mv-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Title */
.mv-title {
  text-align: center;
  margin-bottom: 40px;
}

.mv-title h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
  color: var(--gold);
}

.mv-line {
  width: 60px;
  height: 3px;
  background: #ebb207;
  display: inline-block;
  margin: 10px 0;
}

/* Counters */
.mv-counters {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.counter-box h3 {
  font-size: 34px;
  color: #ebb207;
}

.counter-box p {
  font-size: 14px;
}

/* Cards */
.mv-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mv-card {
  background: #ffffff;
  color: #333;
  padding: 35px 30px;
  border-radius: 22px;
}

/* Values */
.values-title {
  text-align: center;
  margin-bottom: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.value-card {
  background: #ffffff;
  color: #333;
  padding: 30px 20px;
  border-radius: 22px;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll; /* disable parallax on mobile */
    padding: 70px 15px;
  }

  .mv-counters {
    flex-direction: column;
    gap: 20px;
  }
}


/* ================= GOOGLE REVIEWS ================= */

.reviews-section {
  background: #f8f9fa;
  padding: 60px 15px;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  text-align: center;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 10px;
}

.google-badge img {
  width: 22px;
}

.verified {
  color: #1a73e8;
  font-size: 13px;
}

.rating-summary {
  font-size: 18px;
}

.rating-number {
  font-size: 32px;
  font-weight: 700;
  color: #01044a;
}

.stars {
  color: #ebb207;
  margin: 6px 0;
}

/* Slider */
.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: center;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.review-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Dots */
.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.review-dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.review-dots span.active {
  background: #01044a;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .review-card {
    min-width: 240px;
  }
}
/* Smooth interaction */
.reviews-slider {
  cursor: grab;
}

.reviews-slider:active {
  cursor: grabbing;
}


/* ================= FOOTER ================= */
.footer {
  background: var(--primary);
  color: #ccc;
  text-align: center;
  padding: 20px;
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 768px) {

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  p  { font-size: 14px; }

  .hero-premium { height: 75vh; }
  .rooms-hero,
  .gallery-hero,
  .contact-hero { height: 35vh; }

  .gallery-grid img { height: 180px; }
  #logo{width: 230px;height: 25px;}
}
