:root {
    --brand-dark: #000000;
    --brand-gold: #d4af37;
    --brand-light: #f8f9fa;
    --brand-accent: #05d9e8;
  }
  * { scroll-behavior: smooth; }

  html, body {
  overflow-x: hidden;
  }

  *, *::before, *::after {
  box-sizing: border-box;
  }
  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--brand-dark);
    color: var(--brand-light);
  }
  h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
  a { text-decoration: none; }
  .btn-gold {
    background: var(--brand-gold);
    color: var(--brand-dark);
    border: 2px solid var(--brand-gold);
    transition: .3s;
  }
  .btn-gold:hover {
    background: transparent;
    color: var(--brand-gold);
    box-shadow: 0 0 10px var(--brand-gold);
  }

  .top-strip {
    height: 40px;
    background: linear-gradient(to right, #111, #1c1c1c); /* Dark stylish gradient */
    font-size: 0.875rem;
    color: var(--brand-light);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040; /* Above everything */
    font-weight: 500;
  }
  
  .top-strip a {
    color: var(--brand-gold);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .top-strip a:hover {
    color: var(--brand-light);
  }
  

  .navbar {
    background: var(--brand-dark);
  }

  /* HERO with background video – banner_video_new.mp4 */
  .hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--brand-light);
  }
  .hero .video-bg {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    overflow: hidden;
    z-index: -2;
  }
  .hero .video-bg iframe {
    width:100vw;
    height:100vh;
    object-fit: cover;
    filter: brightness(0.5);
  }
  .hero .video-bg video {
    /* banner_video_new.mp4 – visible and playing on all devices */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.5);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.5s ease-out;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    isolation: isolate;
    contain: layout style paint;
    -webkit-tap-highlight-color: transparent;
    -webkit-perspective: 1000;
    perspective: 1000;
  }
  
  /* Responsive adjustments for different screen sizes */
  @media (max-width: 1200px) {
    .hero .video-bg video {
      object-fit: cover;
      object-position: center;
    }
  }
  
  @media (max-width: 768px) {
    .hero .video-bg video {
      object-fit: cover;
      object-position: center;
    }
  }
  
  @media (max-width: 576px) {
    .hero .video-bg video {
      object-fit: cover;
      object-position: center;
    }
  }
  
  /* Landscape orientation optimization */
  @media (orientation: landscape) and (max-height: 500px) {
    .hero .video-bg video {
      object-fit: cover;
      object-position: center;
    }
  }
  /* .hero .overlay {
    position:absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(107, 121, 110, 0.6);
    z-index: -1;
  } */
  .hero .content {
    z-index: 1;
  }
/* here section ends */

  /* Stats */
  .stats .stat { text-align: center; }
  .stats .stat h3 {
    font-size: 2.5rem;
    color: var(--brand-gold);
  }

  /* Cards */
  .menu-card, .chef-card, .post-card {
    /* background: rgba(255,255,255,0.05); */
    /* border: 1px solid var(--brand-gold); */
    transition: transform .3s;
  }
  .menu-card:hover, .chef-card:hover, .post-card:hover {
    transform: translateY(-5px);
  }

.gallery-swiper {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.gallery-swiper .swiper-slide {
  background: transparent;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.gallery-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--brand-gold);
  width: 3rem;
  height: 3rem;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.5rem;
}

/* Styled heading underline (if not already) */
h2.styled-heading {
  position: relative;
  display: inline-block;
  margin: 0 auto 2rem;
  padding-bottom: 0.5rem;
}
h2.styled-heading::before,
h2.styled-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  border-radius: 2px;
}
h2.styled-heading::before {
  width: 120px;
  bottom: 0;
  background: var(--brand-gold);
}
h2.styled-heading::after {
  width: 60px;
  bottom: -10px;
  background: var(--brand-light);
}

/* Responsive tweak */
@media (max-width: 768px) {
  .gallery-swiper .swiper-slide {
    width: 200px;
  }
}



  /* FAQ */
  .faq .accordion-button {
    background: rgba(255,255,255,0.05);
    color: var(--brand-light);
  }

  /* Testimonials */
  .testimonial {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: .5rem;
  }

  footer {
   
    padding: 2rem 0;
  }
  /* ////////////////////////////////////////////////// */


  footer a {
    transition: 0.3s ease;
  }
  footer a:hover {
    color: var(--brand-gold);
  }
  footer hr {
    opacity: 0.1;
  }
  form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
  }
  form .form-control:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 5px var(--brand-gold);
    background-color: rgba(255, 255, 255, 0.05);
  }


  .flatpickr-calendar {
    background: #111;
    color: var(--brand-light);
    border: 1px solid var(--brand-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }
  .flatpickr-day.today {
    background: var(--brand-gold);
    color: #000;
  }
  .flatpickr-day.selected {
    background: var(--brand-light);
    color: #000;
  }
  
    
  .swiper-slide iframe {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  }

  /* RESPONSIVE CONTAINERS AND TEXT */
.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 1rem;
  }
  
  h1, h2, h3 {
    word-wrap: break-word;
  }
  
 
  h2.styled-heading {
    display: block;
    width: fit-content;
    margin: 0 auto 2rem auto; /* Center the heading */
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--brand-light);
  }
  
  h2.styled-heading::before,
  h2.styled-heading::after {
    content: "";
    position: absolute;
    height: 4px;
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  h2.styled-heading::before {
    width: 120px; /* Longer first line */
    bottom: 0;
    background-color: var(--brand-gold);
  }
  
  h2.styled-heading::after {
    width: 60px; /* Longer second line */
    bottom: -12px;
    background-color: var(--brand-light);
  }
  


  .calendar-input {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease-in-out;
  }
  
  .calendar-input:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--brand-light);
    box-shadow: 0 0 15px var(--brand-light);
  }
  
  /* Bigger flatpickr calendar popup */
  .flatpickr-calendar {
    font-size: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background-color: #121212;
    border: 1px solid var(--brand-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  }
  
  /* Highlight selected day with brand gold */
  .flatpickr-day.selected {
    background: var(--brand-gold);
    color: var(--brand-dark);
    font-weight: bold;
  }
  
  /* Today’s highlight */
  .flatpickr-day.today {
    border: 2px solid var(--brand-light);
  }
  
  /* Weekday names */
  .flatpickr-weekday {
    color: var(--brand-gold);
    font-weight: 600;
  }


  .calendar-container {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    border-radius: 1rem;
  }
  
  .flatpickr-calendar {
    background: #111 !important;
    color: var(--brand-light);
    border: 2px solid var(--brand-gold);
    border-radius: 1rem;
    font-size: 1.1rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
  }
  
  .flatpickr-day.today {
    background: var(--brand-gold);
    color: #000;
    border-radius: 50%;
    font-weight: bold;
  }
  
  .flatpickr-day.selected {
    background: var(--brand-light);
    color: #000;
    border-radius: 50%;
  }
  
  .flatpickr-months {
    background: #1a1a1a;
    color: var(--brand-light);
  }
  
  .flatpickr-weekday {
    color: var(--brand-gold);
    font-weight: bold;
  }

  #timePickerContainer {
    transition: all 0.4s ease-in-out;
  }
  

  .about-simple {
    font-family: 'Montserrat', sans-serif;
    color: #eaeaea;
    font-size: 1.05rem;
    line-height: 1.8;
  }
  
  .text-gold {
    color: var(--brand-gold);
    font-weight: 600;
  }
  
  .text-accent {
    color: var(--brand-light);
    font-weight: 500;
  }

  
  /* Ensure the next section starts flush */
  #gallery {
    padding-top: 60px; /* adjust to compensate for overlap */
  }

  .why-card {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
  }

  .why-card:hover {
    transform: scale(1.08);
  }

  .why-icon {
    font-size: 35px;
    height: 30px;
    color: #ffc107;
    margin-bottom: 20px;
  }

  /* Premium Offerings Section */
  #offerings.offerings-section {
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.97) 0%, rgba(18, 18, 22, 0.98) 50%, rgba(10, 10, 12, 0.97) 100%);
    overflow: hidden;
  }
  #offerings.offerings-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 55%);
    pointer-events: none;
  }
  #offerings .offerings-subtitle {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.85);
  }
  #offerings .offering-card {
    position: relative;
    height: 100%;
    background: linear-gradient(145deg, rgba(28, 28, 32, 0.95) 0%, rgba(22, 22, 26, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }
  #offerings .offering-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
    opacity: 0.7;
  }
  #offerings .offering-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.45);
  }
  #offerings .offering-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  }
  #offerings .offering-card .offering-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: background 0.35s ease, border-color 0.35s ease;
  }
  #offerings .offering-card:hover .offering-icon-wrap {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.28) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.55);
  }
  #offerings .offering-card .offering-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f8f9fa;
    margin-bottom: 0.5rem;
    line-height: 1.3;
  }
  #offerings .offering-card .offering-desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
  }
  #offerings .offering-card .card-body {
    padding: 1.6rem 1.5rem;
  }
  #offerings .offerings-cta {
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--brand-gold);
    background: linear-gradient(135deg, var(--brand-gold) 0%, #c9a227 100%);
    color: #0a0a0c;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  #offerings .offerings-cta:hover {
    color: #0a0a0c;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.45);
  }
  @media (max-width: 768px) {
    #offerings .offering-card .card-body {
      padding: 1.35rem 1.25rem;
    }
    #offerings .offering-card .offering-title {
      font-size: 1.05rem;
    }
    #offerings .offering-card .offering-desc {
      font-size: 0.875rem;
    }
  }
  

  
  @keyframes pulseGlow {
    0%, 100% {
      transform: scale(1);
      opacity: 0.6;
    }
    50% {
      transform: scale(1.2);
      opacity: 0.1;
    }
  }
  .calendar-container {
    /* background: #1c1c1c; */
    border-radius: 10px;
  }
  
  #datetime-picker {
    background-color: #212529;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
  }

  

  
  /* RESPONSIVE TEXT */
  @media (max-width: 768px) {
    .hero .content h1 {
      font-size: 2.5rem;
    }
    .hero .content p {
      font-size: 1rem;
    }
    .stats .stat h3 {
      font-size: 2rem;
    }
  }
  @media (max-width: 576px) {
    .hero .content h1 {
      font-size: 2rem;
    }
    .hero .content p {
      font-size: 0.9rem;
    }
    .btn-gold {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
    }
  }

  .event-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
  }
  .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  }
  .card-img-top {
    height: 220px;
    object-fit: cover;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  }


  .event-marquee {
    position: relative;
    overflow: hidden;
    background-color: #FFC107;
    color: #212529;
    font-weight: 600;
    white-space: nowrap;
    padding: .5rem 0;
  }
  
  .event-marquee::before,
  .event-marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 4rem;
    pointer-events: none;
    z-index: 2;
  }
  
  .event-marquee::before {
    left: 0;
    background: linear-gradient(to right, #FFC107 0%, rgba(255,193,7,0) 100%);
  }
  
  .event-marquee::after {
    right: 0;
    background: linear-gradient(to left, #FFC107 0%, rgba(255,193,7,0) 100%);
  }
  
  .marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
  }
  
  /* .event-marquee:hover .marquee-content {
    animation-play-state: paused;
  } */
  
  @keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  
  /* NEW: inline image styling */
  .marquee__img {
    display: inline-block;
    width: 2.5rem;               /* 40px */
    height: 2.5rem;
    margin: 0 0.75rem;           /* space around it */
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    vertical-align: middle;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  }
  
  .marquee__img:hover {
    transform: scale(1.2);
  }
  

  

  /* its offer section style */

    .offer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
        backdrop-filter: blur(12px);
        z-index: 10000;
        display: none;
        justify-content: center;
        align-items: center;
        animation: overlayFadeIn 0.5s ease-out;
    }

    @keyframes overlayFadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .offer-modal {
        background: rgba(255, 255, 255, 0.95);
        width: 70%;
        max-width: 600px;
        border-radius: 30px;
        padding: 40px;
        position: relative;
        transform: scale(0.8) translateY(50px);
        opacity: 0;
        animation: modalSpring 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
        box-shadow: 0 25px 50px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.2);
        overflow: hidden;
    }

    @keyframes modalSpring {
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }

    .offer-close {
        position: absolute;
        top: 25px;
        right: 25px;
        background: rgba(0,0,0,0.1);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .offer-close:hover {
        background: rgba(0,0,0,0.15);
        transform: rotate(90deg);
    }

    .offer-close::before {
        content: '×';
        font-size: 28px;
        color: #333;
        margin-top: -3px;
    }

    .offer-content {
        position: relative;
        z-index: 1;
    }

    .offer-header {
        font-size: 2.8rem;
        color: #2d3436;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        background: linear-gradient(45deg, #6c5ce7, #ff7675);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textFlow 8s infinite linear;
    }

    @keyframes textFlow {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .offer-list {
        list-style: none;
        padding: 0;
        margin: 30px 0;
    }

    .offer-list li {
        padding: 15px 20px;
        margin: 15px 0;
        background: rgba(108, 92, 231, 0.05);
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .offer-list li:hover {
        transform: translateX(10px);
        background: rgba(108, 92, 231, 0.1);
    }

    .offer-icon {
        width: 30px;
        height: 30px;
        background: #6c5ce7;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 14px;
    }

    .offer-cta {
        background: linear-gradient(45deg, #6c5ce7, #ff7675);
        color: white;
        padding: 18px 45px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    }

    .offer-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
    }

    .offer-decor {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(108,92,231,0.1) 0%, rgba(108,92,231,0) 70%);
        pointer-events: none;
    }

    .offer-body {
      color: #0e457b;
    }

    .decor-1 { top: -50px; right: -50px; }
    .decor-2 { bottom: -50px; left: -50px; transform: rotate(180deg); }

    @media (max-width: 768px) {
        .offer-modal {
            width: 90%;
            padding: 25px;
        }
        
        .offer-header {
            font-size: 2rem;
        }
    }

  /* BTS Logo Styling */
  .bts-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .navbar-brand:hover .bts-logo {
    transform: scale(1.05);
  }
  
  .brand-text {
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* Responsive logo sizing */
  @media (max-width: 768px) {
    .bts-logo {
      height: 35px;
    }
    .brand-text {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 576px) {
    .bts-logo {
      height: 30px;
    }
    .brand-text {
      font-size: 0.85rem;
    }
  }
  