/* ================================
   FONT IMPORTS
================================ */
@font-face {
  font-family: "Qogee";
  src: url("../fonts/Qogee.otf") format("opentype"),
       url("../fonts/Qogee.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Runalto";
  src: url("../fonts/Runalto.woff") format("woff"),
       url("../fonts/Runalto.otf") format("opentype"),
       url("../fonts/Runalto.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Candara Regular */
@font-face {
    font-family: "Candara";
    src: url("../fonts/Candara.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Candara Italic */
@font-face {
    font-family: "Candara";
    src: url("../fonts/Candara_Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Candara Bold */
@font-face {
    font-family: "Candara";
    src: url("../fonts/Candara_Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Candara Bold Italic */
@font-face {
    font-family: "Candara";
    src: url("../fonts/Candara_Bold_Italic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


/* FONT & BASE */
body {
  font-family: "Qogee", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  color: #3b2f2f;
}


/* Apply Runalto to headings and luxury titles */
h1, h2, h3, h4, h5, h6,
.section-title,
.footer-heading,
.booking-title,
.cta-section h2,
.couple-quote {
  font-family: "Runalto", serif;
  letter-spacing: 0.5px;
  font-weight: 400;
}


.c-button{
    border-radius: 1px !important;
    font-size: 14px;
    padding: 5px 0px;
    color: #ebe5dc;
    width: 250px;
    border-color: #ebe5dc;
}
.c-dark-btn{
    border-radius: 1px !important;
    font-size: 14px;
    padding: 5px 0px;
    width: 250px;
    border-color: #969696 !important;
    background-color: #efdcbc !important;
    color: #000 !important;
}

/* ================================
   NAVBAR (same theme)
================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 10px 0;
    min-height: 90px;
    overflow: hidden;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #14100e 0%, #3B322A 40%, #817260 100%);
  z-index: -2; /* move behind everything */
}

.navbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: -1; /* above the base gradient, below navbar content */
}

.offcanvas .nav-link { cursor: pointer; }

.navbar-nav .nav-link {
    color: #fff !important;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}
.btn-outline-light:hover {
    background-color: #ffc107 !important;
    color: #000 !important;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important;
  transition: color 0.2s ease-in-out;
}
.btn-warning {
  color: #000 !important;
  font-weight: 500;
}
.dropdown-menu a:hover {
  background-color: #f8f9fa;
}

body {
  /* font-family: "GFS Didot", serif; */
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 10px 0;
  min-height: 64px;
  overflow: hidden;
}

.navbar-nav .nav-link {
  color: #fff !important;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #efdcbc !important;
}
.btn-outline-light:hover {
  background-color: #efdcbc !important;
  color: #000 !important;
}
.btn-warning {
  color: #000 !important;
  font-weight: 500;
}




/* ================================
   HERO SECTION WITH FULL VIDEO FIX
================================ */
.hero-section {
  position: relative;
  height: 85vh;
  background: url('../images/web-cover.jpg') center/cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Perfect video scaling without cutting */
.video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 95%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.30),
      rgba(0, 0, 0, 0.40)
  );
  z-index: 1;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  /* display: none; */
}

.hero-inner {
  max-width: 700px;
  margin: auto;
  padding-top: 120px;
}

/* Glass */
.hero-glass {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(0px);
  border-radius: 2px;
  padding: 30px 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

/* Divider */
.hero-divider {
  width: 1px;
  height: 45px;
  background: #fff;
  margin: 25px auto;
}

.hero-tagline {
  font-size: 24px;
  letter-spacing: 1px;
  display: block;
}

/* =========================
   RESPONSIVE (MOBILE FIXES)
========================= */
@media (max-width: 768px) {
  .hero-section { height: 80vh; }

  .hero-inner { padding-top: 90px; }

  /* Mobile: adjust video position */
  .hero-video {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: 100%;
      width: 100%;
      object-fit: cover;
  }

  .hero-glass {
      padding: 20px 15px;
      border-radius: 10px;
  }

  .hero-tagline { font-size: 18px; }
  .video-container {
    height: 85%;
  }
}

@media (max-width: 480px) {
  .hero-section { height: 75vh; }

  /* Further mobile refinement */
  .hero-video {
      top: 50%;
      transform: translate(-50%, -50%);
  }
}






/* ================================
   FEATURE SECTION (soft gradient)
================================ */
.feature-section {
  background: linear-gradient(180deg, #f8f3e7 0%, #efe3d0 100%);
  color: #3b2f2f;
  padding: 4rem 1rem;
  text-align: center;
}
.feature-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.feature-section hr {
  border-color: #b8945e;
  width: 80px;
  margin: 1rem auto;
}

/* ================================
   ABOUT RITUAL SECTION (with image)
================================ */
.about-section {
  position: relative;
  background: url('../images/second-sec.jpg') center/cover no-repeat;
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}
.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.about-section > * {
  position: relative;
  z-index: 2;
}
.section-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #f8f8f8;
  
  text-transform: uppercase;
}
.section-title {
  font-weight: normal;
  margin-top: 0.5rem;
}
.section-divider {
  width: 50px;
  height: 1px;
  background: #fff;
  margin: 1rem auto;
}
.section-text {
  font-size: 16px;
  line-height: 1.8em;
  max-width: 600px;
  margin: auto;
  
}

/* ================================
   BOOKING SECTION (gradient)
================================ */
.booking-section {
  background: linear-gradient(180deg, #3b2f2f 0%, #5b4a3b 50%, #8a745e 100%);
  color: #fff;
  padding: 4rem 1rem;
  text-align: center;
}
.booking-title {
  font-size: 22px;
  letter-spacing: 0.1em;
}
.booking-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.booking-note {
  margin-top: 1rem;
  font-size: 16px;
  
}

/* ================================
   COUPLE SECTION (image)
================================ */
.couple-section {
  position: relative;
  background: url('../images/gallery/couple-f.jpg') center/cover no-repeat;
  color: #fff;
  padding: 5rem 2rem;
  text-align: center;
}
.couple-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.couple-section > * {
  position: relative;
  z-index: 2;
}
.couple-quote {
  font-size: 22px;
  color: #fff;
}
.couple-subtitle {
  font-size: 16px;
  color: #f3e6ce;
}
.couple-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* ================================
   SERVICES SECTION (gradient)
================================ */
.services-section {
  background: linear-gradient(180deg, #f8f3e7 0%, #efe3d0 100%);
  color: #3b2f2f;
  padding: 4rem 1rem;
}
.section-header {
  margin-bottom: 2rem;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.service-item {
  text-align: center;
}
.service-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 0 auto 1rem;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item h5 {
  font-size: 16px;
  color: #3b2f2f;
}

/* ================================
   CTA SECTION
================================ */
.cta-section {
  background-color: #ab9c81;
  color: #3b2f2f;
  padding: 4rem 1rem;
}
.cta-section h2 {
  font-size: 28px;
  font-weight: 400;
}
.cta-section p {
  color: #494136;
  font-size: 16px;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Hero overlay & text */
#services-hero { position: relative; text-align: center; color: #fff; }
#services-hero .overlay { background: rgba(0,0,0,0.6); backdrop-filter: blur(2px); position: absolute; top:0; left:0; width:100%; height:100%; }
#services-hero .container { position: relative; z-index: 2; }

/* Tabs & Cards */
.nav-pills .nav-link { font-weight: 500; transition: 0.3s; }
.nav-pills .nav-link.active { background-color: #333; color: #fff; }

.services-tabs .service-tab-btn {
    border-radius: 1px !important;
    font-size: 14px;
    padding: 5px 0px;
    color: #000000;
    width: 250px;
    border: 1px solid #d6af75;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Active State */
.services-tabs .service-tab-btn.active {
    border-color: #969696 !important;
    background-color: #efdcbc !important;
    color: #000 !important;
}

/* Hover effect */
.services-tabs .service-tab-btn:hover {
    background-color: rgba(235, 229, 220, 0.15);
}

.service-card { border: none; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.service-card img { height: 180px; object-fit: cover; }
.service-card h5 { font-size: 1.1rem; margin-top: 10px; }
.service-card p { font-size: 1.0rem; color: #d8d8d8; }

/* Table styling for spa prices */
.spa-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.spa-table th, .spa-table td { padding: 12px; border-bottom: 1px solid #ddd; text-align: left; }
.spa-table th { background: #f8f8f8; }
.book-btn { 
    margin-top: 10px; 
    display: inline-block; 
    background: #655925; 
    color: #fff; 
    padding: 5px 15px; 
    border-radius: 20px; 
    text-decoration: none; 
    font-size: 0.9rem;
    font-family: "Candara", sans-serif;
    border: 1px solid #977b00;
}

/* .book-btn { margin-top: 10px; display: inline-block; background: #655925; color: #fff; padding: 5px 15px; border-radius: 20px; text-decoration: none; font-size: 0.9rem; } */
.book-btn:hover { background: #655925; color: #fff; border: 1px solid #977b00; }



/* ===== Footer Styling ===== */
.luxury-footer {
    background: linear-gradient(180deg, #3b2f2f 0%, #5b4a3b 50%, #8a745e 100%);
    position: relative;
    overflow: hidden;
}
.luxury-footer {
    padding: 2.5rem 0 1.0rem 0;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    z-index: 0; /* Send behind content */
    pointer-events: none; /* Allow clicking through */
}

.luxury-footer .container {
    position: relative;
    z-index: 2;
}

.footer-heading {
    color: #f5e9d0;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-text {
    color: #e6d7b8;
    font-size: 16px;
    margin-bottom: 0.3rem;
}

.footer-link {
    color: #e6d7b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

#footer .container,
#footer .footer-bottom,
#footer .text-center {
    position: relative;
    z-index: 2;
}

/* ===== Social Icons ===== */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: none;
}

/* Base style for all icons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    font-size: 20px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
    font-size: 15px;
    color: #e6d7b8;
    opacity: 0.9;
}

input.form-control, textarea.form-control {
    border-radius: 1px;
}


.service-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 350px; /* adjust as needed */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.service-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55); /* black overlay */
}

.service-content {
    position: relative;
    z-index: 5;
    padding-bottom: 5px;
}
.text-white-90{
    color: #fff;
}

.book-now-btn{
  background: #655925;
  color: #fff;
}

.whatsapp-float {
    position: fixed;
    left: auto !important;
    right: 33px !important;
    bottom: 95px !important;
    background-color: #615428;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

.whatsapp-float i {
    outline: none !important;
}

.whatsapp-float {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}


.whatsapp-float {
    outline: none !important;
}

.whatsapp-float:focus,
.whatsapp-float:active,
.whatsapp-float:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}
.payment-icons {
    gap: 12px !important; /* to ensure consistent spacing */
}
.payment-icon {
    height: 16px;          /* same height for all logos */
    width: auto;           /* preserve aspect ratio */
    object-fit: contain;   /* ensures no distortion */
    display: inline-block;
}

/* ------------------------------
   HERO (reusing your services-hero)
------------------------------ */
#services-hero {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

#services-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}

/* Repair hero text fonts */
#services-hero h1 {
    font-family: "Runalto", serif;
    font-size: 44px;
    color: #f6e9d4;
}

#services-hero p {
    font-family: "Qogee", serif;
    font-size: 18px;
    color: #e8d9c0;
}




/* ------------------------------
   MEMBERSHIP SECTION
------------------------------ */
.section-main-title {
    font-family: "Runalto", serif;
    font-size: 34px;
    color: #3b2f2f;
    margin-bottom: 40px;
}

/* Add beautiful soft gradient to the background */
.bg-light {
    background: linear-gradient(180deg, #f8f3e7 0%, #efe3d0 100%) !important;
}

/* Membership Card */
.membership-card {
    background: linear-gradient(180deg, #ffffff 0%, #f5efe5 100%);
    border-radius: 16px;
    padding: 35px;
    text-align: center;
    color: #3b2f2f;
    border: 1px solid #d6c7a7;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Gorgeous hover lift */
.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

/* Title Styling */
.plan-title {
    font-family: "Runalto", serif;
    font-size: 28px;
    color: #3b2f2f;
    margin-bottom: 5px;
}

img.img-fluid.offer-image.mb-3 {
    border-radius: 20px;
}

.plan-duration {
    font-family: "Qogee", serif;
    font-size: 15px;
    color: #7d6f5e;
    margin-bottom: 15px;
}

/* Border Colors */
.membership-card.diamond { border-top: 5px solid #66d5ff; }
.membership-card.gold { border-top: 5px solid #d6b66d; }
.membership-card.silver { border-top: 5px solid #cfcfcf; }

.plan-details p {
    margin: 6px 0;
    font-family: "Qogee", serif;
    font-size: 15px;
}

/* Pricing */
.price {
    font-family: "Qogee", serif;
    font-size: 22px;
    color: #3b2f2f;
    margin-top: 10px;
}

/* ------------------------------
   REDEEMABLE SERVICE BOXES
------------------------------ */
.service-box {
    background: #fbf7ef;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid #eaddc9;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.2s ease;
}

.service-box:hover {
    background: #f3e8d6;
}

/* Service Titles */
.service-title {
    font-family: "Runalto", serif;
    font-size: 20px;
    color: #3b2f2f;
    margin-bottom: 8px;
}

/* Price List */
.service-price-list p {
    margin: 3px 0;
    font-family: "Candara", serif;
    font-size: 15px;
    color: #6b5a47;
}



/* Remove all bold globally */
* {
    font-weight: normal !important;
}



/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(3px);
}

/* Popup Box */
.popup-box {
    background: #fffaf4;
    width: 90%;
    max-width: 420px;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    animation: fadeInUp 0.4s ease;
    border: 2px solid #d1b28a;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #6c5a4a;
}

/* Title */
.popup-title {
    font-family: 'Qogee', serif;
    font-size: 26px;
    font-weight: 600;
    color: #6c5a4a;
}

/* Subtitle */
.popup-subtitle {
    color: #a3856a;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 500;
}

/* Body Text */
.popup-text {
  font-size: 16px;
  color: #6c5a4a;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Call-to-action Button */
.popup-btn {
  display: inline-block;
  background: #d1b28a;
  color: #fff;
  padding: 10px 24px;
  font-size: 15px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.popup-btn:hover {
  background: #b8976c;
}

.logoIconCloud__ptqae.icons__LE_1M, .jivoIcon__WYjTj.icons__LE_1M{
  filter: brightness(0) invert(1) !important;
}
.header__ROjFi._dark__n0H6y.header__ROjFi .agentName__pggjN,
.header__ROjFi._dark__n0H6y.header__ROjFi .title__XnMQg {
  color: #fff !important;
}

/* Animation */
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(20px);}
    to {opacity: 1; transform: translateY(0);}
}

._orientationRight__GVOqj .button__QajTG{
  transform: scale(0.73) !important;
}

/* Responsive adjustments */
@media(max-width:767px){
    .service-card img { height: 150px; }
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
    }
}
