/* =========================
   GALLERY INTRO
========================= */

.gallery-intro{
  padding:100px 0 70px;

  overflow:hidden;

  text-align:center;

  background:
  radial-gradient(
    circle at top left,
    rgba(212,175,55,0.06),
    transparent 28%
  ),

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* CONTENT */

.gallery-intro-content{
  max-width:900px;

  margin:0 auto 55px;
}


/* HEADING */

.gallery-intro-content h2{
  margin-bottom:28px;
}


/* TEXT */

.gallery-intro-content p{
  margin-bottom:22px;

  color:#d0d0d0;
}


/* =========================
   CATEGORY PILLS
========================= */

.gallery-categories{
  display:flex;
  align-items:center;
  justify-content:center;

  gap:16px;

  flex-wrap:wrap;
}


/* ITEM */

.gallery-category{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:52px;

  padding:0 26px;

  border-radius:60px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(212,175,55,0.12);

  color:#d4af37;

  font-size:14px;
  font-weight:500;

  transition:0.3s ease;
}


/* ACTIVE */

.gallery-category.active{
  background:#d4af37;

  color:#000000;
}


/* HOVER */

.gallery-category:hover{
  border-color:rgba(212,175,55,0.35);

  transform:translateY(-3px);
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

  .gallery-intro{
    padding:70px 0 50px;
  }

}


@media(max-width:576px){

  .gallery-category{
    width:100%;
  }

}
/* =========================
   LUXURY GALLERY
========================= */

.luxury-gallery{
  padding:40px 0 100px;

  overflow:hidden;

  background:
  radial-gradient(
    circle at top right,
    rgba(212,175,55,0.06),
    transparent 28%
  ),

  radial-gradient(
    circle at bottom left,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* =========================
   GRID
========================= */

.luxury-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:28px;
}


/* =========================
   CARD
========================= */

.gallery-item{
  position:relative;

  overflow:hidden;

  border-radius:30px;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(212,175,55,0.10);

  transition:0.4s ease;
}


/* HOVER */

.gallery-item:hover{
  transform:translateY(-8px);

  border-color:rgba(212,175,55,0.35);

  box-shadow:
  0 20px 45px rgba(212,175,55,0.08);
}


/* =========================
   IMAGE
========================= */

.gallery-image{
  position:relative;

  overflow:hidden;

  aspect-ratio:3/4;
}


/* IMAGE */

.gallery-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  transition:0.5s ease;
}


/* IMAGE HOVER */

.gallery-item:hover .gallery-image img{
  transform:scale(1.06);
}


/* =========================
   BADGE
========================= */

.gallery-badge{
  position:absolute;

  right:28px;
  bottom:16px;

  z-index:2;

  display:flex;
  align-items:center;
  justify-content:center;

  min-width:92px;
  height:42px;

  padding:0 18px;

  border-radius:50px;

  background:
  linear-gradient(
    145deg,
    rgba(0,0,0,0.82),
    rgba(20,20,20,0.72)
  );

  backdrop-filter:blur(10px);

  border:1px solid rgba(212,175,55,0.18);

  color:#d4af37;

  font-size:12px;
  font-weight:700;

  letter-spacing:1px;

  text-transform:uppercase;
}


/* =========================
   CONTENT
========================= */

.gallery-content{
  padding:26px 24px;
}


/* TOP */

.gallery-content-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:14px;

  margin-bottom:20px;
}


/* NAME */

.gallery-content h3{
  font-size:2rem;

  line-height:1.3;
}


/* META */

.gallery-meta{
  color:#d4af37;

  font-size:14px;
  font-weight:500;

  white-space:nowrap;
}


/* LINK */

.gallery-link{
  display:inline-flex;
  align-items:center;

  color:#ffffff;

  font-size:15px;
  font-weight:500;

  transition:0.3s ease;
}


/* LINK HOVER */

.gallery-item:hover .gallery-link{
  color:#d4af37;
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

  .luxury-gallery{
    padding:20px 0 70px;
  }


  /* GRID */

  .luxury-gallery-grid{
    grid-template-columns:repeat(2,1fr);

    gap:20px;
  }

}


@media(max-width:576px){

  .luxury-gallery-grid{
    gap:16px;
  }


  /* CONTENT */

  .gallery-content{
    padding:20px 18px;
  }


  /* TOP */

  .gallery-content-top{
    flex-direction:column;
    align-items:flex-start;

    gap:6px;
  }


  /* NAME */

  .gallery-content h3{
    font-size:1.7rem;
  }


  /* META */

  .gallery-meta{
    font-size:13px;
  }


  /* BADGE */

  .gallery-badge{
    min-width:78px;

    height:36px;

    padding:0 14px;

    font-size:11px;
  }

}
/* =========================
   FEATURED VIP
========================= */

.featured-vip{
  padding:100px 0;

  overflow:hidden;

  background:
  radial-gradient(
    circle at top right,
    rgba(212,175,55,0.06),
    transparent 28%
  ),

  radial-gradient(
    circle at bottom left,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #0a0a0a,
    #17120d
  );
}


/* WRAP */

.featured-vip-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:70px;
}


/* IMAGE */

.featured-vip-image{
  width:40%;

  overflow:hidden;

  border-radius:30px;

  position:relative;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.45);
}


/* IMAGE */

.featured-vip-image img{
  width:100%;
  height:100%;

  display:block;

  object-fit:cover;

  border-radius:30px;

  transition:0.5s ease;
}


/* HOVER */

.featured-vip:hover .featured-vip-image img{
  transform:scale(1.04);
}


/* CONTENT */

.featured-vip-content{
  width:60%;
}


/* HEADING */

.featured-vip-content h2{
  margin-bottom:24px;
}


/* META */

.featured-vip-meta{
  display:flex;
  flex-wrap:wrap;

  gap:14px;

  margin-bottom:30px;
}


/* META ITEM */

.featured-vip-meta span{
  display:flex;
  align-items:center;
  justify-content:center;

  height:46px;

  padding:0 20px;

  border-radius:50px;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.10),
    rgba(212,175,55,0.03)
  );

  border:1px solid rgba(212,175,55,0.12);

  color:#d4af37;

  font-size:14px;
  font-weight:500;
}


/* TEXT */

.featured-vip-content p{
  margin-bottom:24px;

  color:#d0d0d0;
}


/* LOCATIONS */

.featured-vip-locations{
  margin-top:30px;
  margin-bottom:40px;

  color:#d0d0d0;

  line-height:1.8;
}


/* LABEL */

.featured-vip-locations span{
  color:#d4af37;

  font-weight:600;
}


/* BUTTONS */

.featured-vip-btns{
  display:flex;
  align-items:center;

  gap:18px;

  flex-wrap:wrap;
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

  .featured-vip{
    padding:70px 0;
  }


  /* WRAP */

  .featured-vip-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

  .featured-vip-image,
  .featured-vip-content{
    width:100%;
  }


  /* CONTENT */

  .featured-vip-content{
    text-align:center;
  }


  /* META */

  .featured-vip-meta{
    justify-content:center;
  }


  /* BUTTONS */

  .featured-vip-btns{
    justify-content:center;
  }


  /* LOCATIONS */

  .featured-vip-locations{
    text-align:center;
  }


  /* IMAGE */

  .featured-vip-image{
    max-width:520px;

    margin:0 auto;
  }

}
/* =========================
   GALLERY LUXURY CONTENT
========================= */

.gallery-luxury-content{
  padding:100px 0;

  overflow:hidden;

  background:
  radial-gradient(
    circle at top left,
    rgba(212,175,55,0.06),
    transparent 28%
  ),

  radial-gradient(
    circle at bottom right,
    rgba(212,175,55,0.05),
    transparent 25%
  ),

  linear-gradient(
    145deg,
    #090909,
    #17120d
  );
}


/* WRAP */

.gallery-luxury-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:70px;
}


/* LEFT */

.gallery-luxury-left{
  width:60%;
}


/* HEADING */

.gallery-luxury-left h2{
  margin-bottom:28px;

  max-width:720px;
}


/* TEXT */

.gallery-luxury-left p{
  margin-bottom:24px;

  color:#d0d0d0;
}


/* LINKS */

.gallery-luxury-left a{
  color:#d4af37;

  font-weight:600;

  transition:0.3s ease;
}


/* HOVER */

.gallery-luxury-left a:hover{
  color:#ffffff;
}


/* BUTTONS */

.gallery-luxury-btns{
  display:flex;
  align-items:center;

  gap:18px;

  margin-top:40px;

  flex-wrap:wrap;
}


/* RIGHT */

.gallery-luxury-right{
  width:40%;

  display:grid;
  grid-template-columns:repeat(2,1fr);

  gap:22px;
}


/* CARD */

.gallery-luxury-card{
  padding:34px 26px;

  border-radius:28px;

  text-align:center;

  background:
  linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );

  border:1px solid rgba(212,175,55,0.12);

  transition:0.35s ease;
}


/* HOVER */

.gallery-luxury-card:hover{
  transform:translateY(-6px);

  border-color:rgba(212,175,55,0.35);

  box-shadow:
  0 18px 40px rgba(212,175,55,0.08);
}


/* ICON */

.gallery-luxury-icon{
  display:flex;
  align-items:center;
  justify-content:center;

  width:68px;
  height:68px;

  margin:0 auto 24px;

  border-radius:50%;

  background:
  linear-gradient(
    145deg,
    rgba(212,175,55,0.10),
    rgba(212,175,55,0.03)
  );

  border:1px solid rgba(212,175,55,0.12);

  color:#d4af37;

  font-size:28px;
}


/* HEADING */

.gallery-luxury-card h3{
  font-size:1.5rem;
}


/* =========================
   MOBILE
========================= */

@media(max-width:991px){

  .gallery-luxury-content{
    padding:70px 0;
  }


  /* WRAP */

  .gallery-luxury-wrap{
    flex-direction:column;

    gap:45px;
  }


  /* WIDTH */

  .gallery-luxury-left,
  .gallery-luxury-right{
    width:100%;
  }


  /* CONTENT */

  .gallery-luxury-left{
    text-align:center;
  }


  /* BUTTONS */

  .gallery-luxury-btns{
    justify-content:center;
  }

}


@media(max-width:576px){

  .gallery-luxury-right{
    grid-template-columns:1fr;
  }

}