*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
    /* Logo palette */
    :root{
      --om-yellow: #f6f6c6; /* pale circle */
      --om-accent: #222;     /* black/charcoal from logo */
      --om-muted: #f3f3e1;
      --accent-dark: #111;
      --cta-green: #2fa85b;
      --cta-yellow: #ffd54a;
      --glass: rgba(255,255,255,0.65);
    }
    
    html,body { height:100%; }
    body {
        font-family: 'Playfair Display', serif;
      color: var(--om-accent);
      background: linear-gradient(180deg, #fff 0%, var(--om-muted) 100%);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.45;
    }
    
    @media (min-width: 1400px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
            max-width: 1520px;
        }
    }
    @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1360px;
    }
}
.section-title {
  font-family: 'Playfair Display', serif;
  color: #2e2e2e;
}
/* ====================navbar===================== */
/* ===== Shree Shanteshwar Navbar Style ===== */
.nav8 a {
  position: relative;
  color: #1c6e2a !important; /* Deep Green for text */
  font-weight: 600;
  text-transform: capitalize;
  font-size: 16px;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.nav8 a:hover {
  color: #ff6600 !important; /* Orange hover */
}

/* Animated underline effect */
.nav8 a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 3px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #1c6e2a, #ff6600);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.nav8 a:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* ===== Logo Text ===== */
.navbar-brand span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1c6e2a;
  text-transform: uppercase;
}

/* ===== Navbar Background & Border ===== */
.navbar.nav8 {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid #1c6e2a;
  transition: all 0.4s ease;
}

/* ===== Navbar Toggle Button ===== */

.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler {
  border: 2px solid #ff6600; /* orange border */
  border-radius: 5px;
  background-color: #fff; /* keeps button visible */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ff6600' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}


/* ===== Responsive ===== */
@media (max-width: 992px) {
  .navbar-brand span {
    font-size: 0.95rem;
  }
  .nav8 .nav-link {
    text-align: center;
    padding: 12px;
  }
  .nav8 .navbar-nav {
    background: #fff;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .nav8 a::before {
    display: none; /* cleaner for mobile */
  }
}


    /* ==================== about /banquet/roo===================== */
    /* Section Background & Style */
/* About Section - Light Orange/Yellow Theme */
.about-section {
  background: linear-gradient(135deg, #fff7e6 0%, #fffef9 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  /* background: linear-gradient(
    90deg, 
    rgba(252, 219, 169, 0.05), 
    rgba(255,223,77,0.15), 
    rgba(247, 208, 151, 0.05)
  ); */
  background:rgba(253, 228, 191, 0.05);
  /* animation: floatGradient 8s linear infinite; */
  z-index: 0;
}

@keyframes floatGradient {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-image img {
  border: 5px solid rgba(255,183,77,0.3);
  transition: all 0.4s ease;
  height: 50vh;
}

.about-image img:hover {
  transform: scale(1.05);
  border-color: rgba(255,183,77,0.7);
  box-shadow: 0 10px 30px rgba(255,183,77,0.25);
}

.about-heading {
  font-size: 1.5rem;
  color: #ffb94d;
  font-weight: 700;
}

.about-short {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
}

.about-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444;
}



@media (max-width: 992px) {
  .about-section {
    padding: 60px 20px;
  }
  .about-heading {
    font-size: 1.3rem;
  }
  .fancy-title {
    font-size: 1.4rem;
  }
}

    section{padding:4rem 0}
    .gallery{background:linear-gradient(180deg, rgba(255,248,236,1), rgba(255,255,255,0.97))}


    /* Gallery grid */
    /* .gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px}
    .gallery-grid img{width:100%;height:120px;object-fit:cover;border-radius:10px} */
    
/* Room Card - Clean & Modern */
.room-card {
  border: 10px solid rgba(255,183,77,0.3); /* subtle light border */
  border-radius: 16px; /* smooth corners */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* soft shadow */
  background: #fff; /* keep base color white/light */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px); /* slight lift on hover */
  box-shadow: 0 8px 20px rgba(0,0,0,0.12); /* subtle stronger shadow */
}

.room-card img {
  height: 450px;
  width: 100%;
  /* object-fit: cover; */
  border: 12px solid rgba(254, 245, 231, 0.2); /* light border accent */
  transition: transform 0.3s ease;
}

.room-card img:hover {
  transform: scale(1.03); /* gentle zoom on hover */
}

.room-card .card-body {
  padding: 18px 16px;
  text-align: center;
}

.room-card .card-title {
  font-size: 1.15rem;
  color: #ffb94d; /* keep warm orange title */
  font-weight: 600;
  margin-bottom: 8px;
}

.room-card .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}


    
    /* 🧱 Facility-Box (Reusable) */
.facility-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 25px 15px;
  transition: all 0.3s ease;
  height: 100%;
}
.facility-box i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 10px;
}
.facility-box p {
  font-weight: 500;
  margin: 0;
}
.facility-box:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #FFF3CD, #FFE8A1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
/* 📞    Contact Box */
.contact-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}


.fancy-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  position: relative;
}

.fancy-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1c6e2a; /* green text */
  margin: 40px 0;
  position: relative;
}

.fancy-title::before,
.fancy-title::after {
  content: "";
  flex: 1;
  height: 3px;
  background-color: #1c6e2a;
  border-radius: 3px;
  max-width: 80px;
  transition: all 0.3s ease;
}

.fancy-title:hover::before {
  transform: translateX(-5px);
}
.fancy-title:hover::after {
  transform: translateX(5px);
}


.fancy-title span {
  letter-spacing: 1px;
}

@media (max-width: 576px) {
  .fancy-title {
    font-size: 1.3rem;
    gap: 10px;
  }
  .fancy-title::before,
  .fancy-title::after {
    max-width: 40px;
  }
}



/* ======== BACKGROUND ANIMATION ======== */
  .wrapt{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1fr;gap:20px}
   .sectiont{background:transparent;padding:14px;border-radius:10px}
  .cardt{background:var(--card);border-radius:var(--radius);box-shadow:0 6px 20px rgba(17,24,39,0.06);padding:18px}
  .rowt{display:flex;gap:12px;align-items:center}
  .avatar{width:56px;height:56px;border-radius:50%;flex:0 0 56px;object-fit:cover}
  .name{font-weight:600}
  .role{color:var(--muted);font-size:13px}
  .quote{font-size:15px;margin-top:8px;color:#111827}
  .t1 .cardt{display:flex;gap:14px;align-items:flex-start}
  .t1 .content{flex:1}
  .t1 .stars{color:gold;margin-bottom:6px}



/* ======== TESTIMONIALS ======== */
.lux-card {
  position: relative;
  background: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 25px;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}
.lux-card:hover {
  transform: translateY(-10px) scale(1.02);
}
.shine-border {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #ffdd00, #ffb700, #fff6b0);
  background-size: 400%;
  filter: blur(8px);
  opacity: 0.3;
  animation: shine 6s linear infinite;
  z-index: -1;
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ======== GOLDEN BOX ======== */
.golden-box {
  background: #fffef7;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, #ffd900, #ffb700) 1;
  position: relative;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 60%);
  animation: rotateSparkle 12s linear infinite;
}
@keyframes rotateSparkle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ======== LUXURY LIST ======== */
.lux-list {
  list-style: none !important;
  padding: 0;
  margin: 0;
}
.lux-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

/* ======== SILVER FRAME ======== */
.silver-frame {
  border: 3px double transparent;
  border-image: linear-gradient(90deg, #e0e0e0, #ffeb99, #e0e0e0) 1;
  background: #fffefb;
}

/* ======== BUTTON GLOW ======== */
.glow-btn {
  background: linear-gradient(90deg, #ffb700, #ffe680);
  font-weight: 600;
  border: none;
  box-shadow: 0 0 10px rgba(255, 200, 0, 0.5);
  transition: all 0.4s;
}
.glow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 200, 0, 0.8);
}
.carousel-caption {
  bottom: clamp(1.25rem, 7vh, 4rem);
  max-width: min(90%, 900px);
}



/* Decorative dots (indicators) */
.hero-carousel .custom-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: transparent;
  margin: 0 6px;
  opacity: 1;
  transition: all 0.3s ease;
}

.hero-carousel .custom-indicators .active {
  background-color: #ffffff;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

/* Indicators position */
.hero-carousel .carousel-indicators {
  bottom: 10px;
}

/* Controls thoda clean */
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
}
/* =============footer================= */

/* Footer Base */
.custom-footer {
  background: linear-gradient(135deg, #07102a 0%, #0a1439 100%);
  color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
}

/* Accent Colors */
.text-orange {
  color: #ff6600;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff6600;
  padding-left: 6px;
}

/* Social Icons */
.social-icon {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icon:hover {
  background-color: #ff6600;
  color: #fff;
  transform: scale(1.1);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .custom-footer {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links a:hover {
    padding-left: 0;
    color: #ff6600;
  }
}
/* ==========scroll& whatsapp btn=========== */
/* ===== Floating Action Buttons ===== */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Hover animation */
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* WhatsApp specific style */
.whatsapp-btn {
  background-color: #25d366;
}

/* Scroll-to-top button styling */
.scroll-top-btn {
  background-color: #ff6600;
  bottom: 90px; /* appears above WhatsApp */
  display: none; /* hidden initially */
  border:none;
}

.scroll-top-btn i {
  font-size: 20px;
}

/* Responsive placement */
@media (max-width: 576px) {
  .floating-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .scroll-top-btn {
    bottom: 80px;
  }
}
