/*=====================================================
                HERO
=====================================================*/

#heroSlider{
    position:relative;
}

#heroSlider .carousel-item{
    position:relative;
}

#heroSlider .carousel-item img{
    display:block;
    width:100%;
}

/* Dark Overlay */

#heroSlider .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    z-index:1;

    pointer-events:none;

}

/* Content */

.hero-content{

    position:absolute;

    top:50%;

    left:10%;

    transform:translateY(-50%);

    z-index:2;

}

/* Controls */

.carousel-control-prev,
.carousel-control-next{

    z-index:5;

    width:80px;

    opacity:1;

}

/* ===== HERO SLIDER ===== */
.carousel-item {
  height: 90vh;
  position: relative;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.2)
  );
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-family: 'Argesta', serif;
      font-size: 52px;
    line-height: 45px;
    font-weight: 500;
    letter-spacing:2px;
}

.hero-content p {
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
}

/* arrows */
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

/* ===== ABOUT SECTION ===== */
.about-sec {
  background: #000;
}

/* LEFT CONTENT */
.about-content {
  padding: 100px 80px;
  color: #fff;
}

.about-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 14px;
  color: #ccc;
  max-width: 420px;
}

/* RIGHT IMAGE */
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== POUR SECTION ===== */
.pour-sec {
  background: #000;
  padding: 100px 0;
  text-align: center;
}

/* TEXT */
.pour-content span {
  display: block;
  color: #ccc;
  font-size: 14px;
  margin: 5px 0;
}

.pour-content h2 {
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  margin: 5px 0;
  font-family: 'Argesta', serif;
}

/* IMAGE */
.pour-img {
  margin-top: 50px;
}

.pour-img img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: auto;
}


/* ===== STACK SECTION ===== */
/* STACK SECTION */
.stack-sec {
  background: #000;
}

/* EACH BLOCK */
.stack-item {
  min-height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  background: #000; /* 🔥 MUST (cover old section) */
}

/* FIX OVERLAP ORDER */
.stack-item:nth-child(1) {
  z-index: 1;
}

.stack-item:nth-child(2) {
  z-index: 2; /* 🔥 upar aayega */
}

/* IMAGE */
.stack-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* CONTENT */
.stack-content {
  padding: 80px;
  color: #fff;
}

.stack-content h2 {
  font-family: 'Argesta', serif;
    font-size: clamp(34px, 3vw, 46px);
}

.stack-content p {
  color: #ccc;
  margin: 15px 0;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 18px;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 991px) {

  .stack-item {
    position: relative; /* disable sticky */
    min-height: auto;
  }

  .stack-img {
    height: 300px;
  }

  .stack-content {
    padding: 40px 20px;
  }

}

/* ===== APART SECTION ===== */
.apart-sec {
  background: #000;
}

/* LEFT CONTENT */
.apart-content {
  padding: 100px 80px;
  color: #fff;
}

.apart-content h2 {
 font-family: 'Argesta', serif;
    font-size: clamp(34px, 3vw, 46px);
  margin-bottom: 20px;
}

.apart-content p {
  font-size: 14px;
  color: #ccc;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON */
.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
}

/* RIGHT IMAGE */
.apart-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

  .apart-content {
    padding: 60px 30px;
  }

}

@media (max-width: 768px) {

  .apart-content {
    padding: 50px 20px;
  }

  .apart-content h2 {
    font-size: 30px;
  }

  .apart-img img {
    height: 300px;
  }
}

/* ===== ICON SECTION ===== */
.icon-sec {
  background: #000;
  padding-top: 70px;
  padding-bottom: 30px;
}

/* BOX */
.icon-box {
  margin-bottom: 60px;
}

/* ICON */
.icon-box img {
  height: 50px;
  margin-bottom: 20px;
}

.icon-box img {
  transition: 0.3s;
}

.icon-box:hover img {
  transform: scale(1.1);
}

/* TEXT */
.icon-box p {
  color: #ccc;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .icon-sec {
    padding: 60px 0;
  }

  .icon-box {
    margin-bottom: 40px;
  }

}

/* ===== GALLERY ===== */
/* ===== GALLERY ===== */

.gallery-sec{
    background:#000;
    overflow:hidden;
}

.gallery-sec .container-fluid{
    padding:0;
}

.gallery-sec .row{
    --bs-gutter-x:0;
    --bs-gutter-y:0;
    margin:0;
}

.gallery-sec [class*="col-"]{
    padding:0;
    margin:0;
    overflow:hidden;
    background:#000;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    background:#000;
    line-height:0;
}

.gallery-item img{
    display:block;
    width:100%;
    height:auto;
    object-fit:cover;

    transform:scale(1.001);
    transition:transform .5s ease;

    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    will-change:transform;
}

.gallery-item:hover img{
    transform:scale(1.04);
}


/* ===== BOOK SECTION ===== */
.book-sec {
  background: #000;
  padding-top: 80px;
    padding-bottom: 50px;
}

/* BOX WITH BG IMAGE */
.book-box {
  padding: 50px;
  background: url('../img/form-bg-img.webp');
  background-size: 100% 100%;
  background-position: center center;
  border: 1px solid #534e4e;
  position: relative;
  box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}

/* TEXT */
.sub-title {
  color: #aaa;
  font-size: 13px;
}

.book-box h2 {
  font-family: 'Argesta', serif;
    font-size: clamp(34px, 3vw, 46px);
  color: #fff;
  margin-bottom: 40px;
}

/* ===== FORM GROUP ===== */
.form-group {
  position: relative;
  margin-bottom: 30px;
}

/* INPUT + SELECT */
.form-group input,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #555;
  padding: 10px 35px; /* space for icons */
  color: #fff;
  outline: none;
  appearance: none;
}

/* PLACEHOLDER */
.form-group input::placeholder {
  color: #aaa;
}

/* LEFT ICON */
.form-group i {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 14px;
  color: #aaa;
}

/* RIGHT ARROW ICON */
.right-icon {
  position: absolute;
  right: 0;
  top: 12px;
  font-size: 12px;
  color: #aaa;
  pointer-events: none;
}

/* DROPDOWN OPTION */
.form-group select option {
  background: #000;
  color: #fff;
}

/* REMOVE DEFAULT DATE ICON */
input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/* fix cursor */
.form-group input[type="text"] {
  cursor: pointer;
}

.book-sec
.fa-chevron-down {
left: auto;
right: 0;
}

.book-sec 
.name-txt ,
.book-sec 
.mob-txt {
    padding: 10px 0;
}

.book-btn 
{
  width: 100%;
  background:#956A00;
  color: #fff;
  border: none;
  padding: 15px;
  margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .book-box {
    padding: 40px 20px;
  }

  .book-box h2 {
    font-size: 30px;
  }

}

/* ==========================================
   HERO CAROUSEL ARROWS
========================================== */

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next{
    width:70px;
    opacity:1;
    background:none !important;
    border:0;
    box-shadow:none !important;
    outline:none !important;
    transition:all .3s ease;
}

/* Remove grey overlay on hover */
#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover{
    background:transparent !important;
}

/* Remove grey overlay when clicked */
#heroSlider .carousel-control-prev:active,
#heroSlider .carousel-control-next:active{
    background:transparent !important;
    box-shadow:none !important;
}

/* Remove focus highlight */
#heroSlider .carousel-control-prev:focus,
#heroSlider .carousel-control-next:focus,
#heroSlider .carousel-control-prev:focus-visible,
#heroSlider .carousel-control-next:focus-visible{
    outline:none !important;
    box-shadow:none !important;
    background:transparent !important;
}

/* Remove Firefox inner focus */
#heroSlider .carousel-control-prev::-moz-focus-inner,
#heroSlider .carousel-control-next::-moz-focus-inner{
    border:0;
}