

.container{ position: relative; z-index: 2;}

.header .luxury-btn {
  font-size: 12px;
  padding: 9px 15px;
  border: 0; background: #212121;
  line-height: 20px;
}


.header .modalbtn{}

.head-nav {
  font-size: 16px;
  text-transform: uppercase;
  display: flex; 
  align-items: center;
}

.menu-icon {
  width: 36px;
}

.luxury-btn.modalbtn {
  padding: 3px 6px; background: transparent!important;
}

.scrolled .header{ padding: 2px 0;}



.main{ position: relative;}

.bg-video{ position: fixed;
  inset: 0;
  width: 100%;opacity: 0.3;
  height: 100%;
  object-fit: cover; }

/* HERO */

/* VIDEO */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  z-index: 2;
}

/* LOGO */
.hero-logo {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: none;
}

.hero-logo img {
  width: 300px;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.8s ease;
}



/* Zoom in */
.hero-logo.show img {
  transform: scale(1);
  opacity: 1;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  display: none;
}

.hero-content h1{ text-transform: uppercase; font-size: 66px;}

/* HEADER */
.hidden-header {
  opacity: 0;
  transform: translateY(-30px);
}

.show-header {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

/* Overlay base */
.overlay-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* dark transparent */
  
  
}



.luxury-btn {
  display: inline-block;
  padding: 14px 24px;
  font-size: 16px;  
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;font-family: 'riviera_nights_triallight';
  background: linear-gradient(135deg, #8b4a2f, #c57a42);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Hover shine effect */
.luxury-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: all 0.6s ease;
}

.luxury-btn:hover::before {
  left: 100%;
}

/* Hover animation */
.luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  /* background: linear-gradient(135deg, #c57a42, #8b4a2f);  */
  color: #fff;
}


/* about info sec */

.about-info { background: transparent /*url("../img/marbelbg.png") 0 0 no-repeat*/; background-size: cover; min-height: 300px; position: relative; height: 100vh; }

.about-info .container{ z-index: 2; position: relative;}

.about-logo{ width: 250px; margin-bottom: 30px;}


/* Floating animation */
.float-ani {
  animation: float-ani 3s ease-in-out infinite;
}

@keyframes float-ani {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}



.aout-wrap img {
  max-width: 250px;
  margin-bottom: 25px;border-radius: 15px;
  
}

.aout-wrap {
  text-align: center;
}

.aout-wrap h3, .aout-wrap p {
  text-transform: uppercase; margin: 17px 0; letter-spacing: 1.3px;
}


/*  */



.img-zoom {
  overflow: hidden; 
}

.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-zoom:hover img {
  transform: scale(1.1);
}





/* deco section */

/* Parent section */
/* Parent section */
.deco {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video */
.deco .deco-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.deco .deco-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
background: -webkit-linear-gradient(11deg,rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 100%);
background: -moz-linear-gradient(11deg,rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(11deg,rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#000000",
  endColorstr="#000000",
  GradientType=0
);
  z-index: 1;
}

/* Content */
.deco .deco-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: start;
  text-align: left;
  padding: 60px;
}

/* Animated title */
.deco .deco-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #fff;
  letter-spacing: 2px;
  opacity: 0;

  /* animation */
  animation: decoTitleReveal 1.5s ease-out forwards;
  animation-delay: 2s; /* 👈 appears after 2 seconds */
}
/* Animation */
@keyframes decoTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Parent section */
.art-living {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video */
.art-living .art-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.art-living .art-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}


/* Animated title */

.art-living .art-title {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #fff;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}


.luxury-img {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.4s ease;
}

/* Image */
.luxury-img img {
  width: 100%;
  height: 100%; max-height: 700px;
  object-fit: cover;
  display: block;
}

/* Hover shine effect */
.luxury-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );
  transition: all 0.6s ease;
  pointer-events: none;
}

/* Hover shine movement */
.luxury-img:hover::before {
  left: 100%;
}

/* Hover animation (same as button) */
.luxury-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}



/* limited collection */

.lc-info { width: 25%; }

.limited-coll .wrapper {
  width: 100%;
  height: 80vh; overflow: hidden;
  position: relative;
  background-image: url("../img/suite/suits-bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.limited-coll .image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: aquamarine;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.limited-coll .buttons-container {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  align-items: center;
}

.limited-coll .lc-info {
  padding: 10px 0px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  /* flex:1 1 auto; */
    flex-grow:1;
    flex-shrink:1;
}




/*  */
/* Full height container */
/* Full height container */
.hover-panel {
  height: 100vh;
  width: 100%;
  background: url("bg.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
  display: flex; padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* Blur overlay */
.hover-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: backdrop-filter 0.6s ease, background 0.6s ease;
  z-index: 1;
}

/* Hover blur */
.hover-panel:hover::before {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.45);
}

/* Title */
.hover-title {
  font-size: 40px;
  font-family: 'riviera_nights_triallight';
  letter-spacing: 2px;
  z-index: 2;
  transition: transform 0.6s ease;
}

/* List */
.hover-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  z-index: 2;
}

.hover-list li {
  opacity: 0; 
  transform: translateY(20px);
  transition: all 0.5s ease;
  margin: 15px 0;
  font-size: 20px;
  letter-spacing: 1px;
}

/* Hover animations */
.hover-panel:hover .hover-title {
  transform: translateY(-10px);
}

.hover-panel:hover .hover-list li {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect */
.hover-panel:hover .hover-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.hover-panel:hover .hover-list li:nth-child(2) {
  transition-delay: 0.2s;
}
.hover-panel:hover .hover-list li:nth-child(3) {
  transition-delay: 0.3s;
}






/*  */

.map-info{ background: transparent}



.b-logo {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}





/* residance helth */

.resi-health-card {
  
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

/* Image */
.resi-health-card img {
  
  object-fit: cover;
}

/* Overlay */
.resi-health-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  transition: all 0.45s ease;
}

/* Title */
.resi-health-title {
  margin: 0;
  font-size: 48px; text-transform: uppercase;font-family: 'riviera_nights_triallight';
  
  transition: transform 0.45s ease;
}

/* Hover content (hidden initially) */
.resi-health-hover {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.45s ease;
}

/* Description */
.resi-health-desc {
  font-size: 18px;
  margin: 10px 0 20px;
  line-height: 1.5;
}


.health-logo{ min-height: 100px;}

/* Logo animation */
.resi-health-logo {
  width: 150px;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.45s ease;
}

/* Hover effects */
.resi-health-card:hover .resi-health-overlay {
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
}

.resi-health-card:hover .resi-health-title {
  transform: translateY(-12px);
}

.resi-health-card:hover .resi-health-hover {
  opacity: 1;
  transform: translateY(0);
}

.resi-health-card:hover .resi-health-logo {
  opacity: 1;
  transform: scale(1) rotate(360deg);
}


/*  */
/* MAIN CARD */






/* CARD */
.rs-comfort-ani {
  width: 100%;
  height: 372px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: #000;
}
.rs-comfort-ani-full{ height: 100%;}
/* IMAGE */
.rs-comfort-ani img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
}

/* OVERLAY */
.rs-overlay {
  position: absolute;
  inset: 0; padding: 15px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.35)
  );
}

/* CONTENT WRAPPER */
.rs-content {
  position: absolute;
  left: 18px;
  bottom: 15px; /* default position */
  max-width: 85%; 
  transition: transform 0.7s cubic-bezier(.19,1,.22,1);
}

/* TITLE */
.rs-title {
  margin: 0;
  color: #fff; text-transform: uppercase;
  font-size: 26px;
  
}

/* PARAGRAPH (HIDDEN INITIALLY) */
.rs-desc {
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.5;
  color: #eaeaea;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* HOVER EFFECTS */
.rs-comfort-ani:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.rs-comfort-ani:hover .rs-content {
  transform: translateY(-30px); /* final 30px from bottom */
}

.rs-comfort-ani:hover .rs-desc {
  opacity: 1;
  transform: translateY(0);
}




/* residece filter */

 .residence-filter {
      background: #fbf8f3;
      padding: 20px 24px;
      border-radius: 6px;
    }

    .residence-filter label {
      font-size: 14px;
      color: #9b6b3e;
      margin-bottom: 4px;
    }

    .residence-filter select {
      border: none;
      border-bottom: 1px solid #c8a27a;
      border-radius: 0;
      background-color: transparent;
      padding-left: 0;
      font-size: 15px;
      color: #333;
    }

    .residence-filter select:focus {
      box-shadow: none;
      border-bottom-color: #9b6b3e;
    }

    .reset-btn {
      width: 42px;
      height: 42px;
      border: 1px solid #c8a27a;
      background: transparent;
      color: #9b6b3e;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .reset-btn:hover {
      background: #9b6b3e;
      color: #fff;
    }






     /* =========================
       FOOT VIDEO SECTION
    ========================== */
    .foot-video {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      background: #000;
    }

    /* VIDEO */
    .foot-video video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* DARK OVERLAY */
    .foot-video::after {
      content: "";
      position: absolute;
      inset: 0;
      background: #000000;
background: -webkit-linear-gradient(35deg,rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 100%);
background: -moz-linear-gradient(35deg,rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 100%);
background: linear-gradient(35deg,rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(
  startColorstr="#000000",
  endColorstr="#000000",
  GradientType=0
);
      z-index: 1;
    }

    /* LOGO */
    .foot-video .foot-logo {
      position: absolute;
      bottom: 30%;
      left: 8%;
      transform: translate(-50%, -50%) scale(0.7);
      
      z-index: 2;
      animation: footFloat 4s ease-in-out infinite;
      max-width: 250px;

    }

    .foot-video .foot-logo.show {
      
      transform: translate(-50%, -50%) scale(1);
      transition: opacity 1.2s ease, transform 1.2s ease;
    }

    /* FLOATING LOGO ANIMATION */
    @keyframes footFloat {
      0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
      }
      50% {
        transform: translate(-50%, -50%) translateY(-20px);
      }
    }

    /* TEXT */
    .foot-video .foot-text {
      position: absolute;
      left: 50px;
      bottom: 30%;
      z-index: 2;
      max-width: 40%;
      
      transform: translateY(40px);
    }

    /* .foot-video .foot-text.show {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 1.2s ease, transform 1.2s ease;
    } */

    .foot-video .foot-text h1 {
      color: #fff;
      font-size: 54px;      
      margin-bottom: 12px; text-transform: uppercase;
    }

    .foot-video .foot-text p {
      color: #eaeaea;
      font-size: 16px;
      line-height: 1.6;
    }

    /* RESPONSIVE */
    @media (max-width: 767px) {
      .foot-video .foot-text {
        left: 20px;
        bottom: 30px;
      }

      .foot-video .foot-text h1 {
        font-size: 28px;
      }
    }