
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');


.my-carousel {
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}

.brand-name {
  color: #ffc008;
}

.my-carousel-item {
  --items: 10;
  --width: clamp(150px, 30vw, 300px);
  --height: clamp(200px, 40vw, 400px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 200%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  scroll-snap-align: center;
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform-origin: 0% 100%;
  box-shadow: 0 10px 50px 10px rgba(0, 0, 0, 0.5);
  background: black;
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
}

.my-carousel-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  opacity: var(--opacity);
  font-family: sans-serif;
}

.my-carousel-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5)
  );
}

.my-carousel-title {
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 20px;
  left: 20px;
  font-size: clamp(20px, 3vw, 20px) !important;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}

.my-carousel-num {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 32px;
  left: 20px;
  font-size: clamp(20px, 10vw, 80px);
}

.my-carousel-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.patisserie-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  min-height: 100vh;
}

.patisserie-content {
  padding-left: 120px;
  color: #c7c7c7c9;
  user-select: none;
}

.patisserie-content h1 {
  font-size: clamp(2.5rem, 4vw, 6rem);
  font-weight: 700;
  background-clip: text;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 36px;
  padding-left: 10px;
}

.patisserie-content p {
  font-size: clamp(0.9rem, 4vw, 1.2rem);
  line-height: 1.6;
  padding-right: 100px;
}

.patisserie-btn {
  background-color: #e1ca54;
  font-size: clamp(0.8rem, 8vw, 0.9rem);
  font-weight: 600;
  color: #fff;
  width: max-content;
  outline: 0;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  margin-top: 26px;
  cursor: pointer;
  transition: all 0.2s ease-in;
}

.patisserie-btn:hover {
  box-shadow: 0 4px 10px rgba(247, 101, 145, 0.5);
  transform: scale(0.98);
  color: white;
}

.patisserie-stack {
  position: relative;
}

.patisserie-card {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 350px;
  height: 500px;
  border-radius: 2rem;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25),
    0 15px 20px 0 rgba(0, 0, 0, 0.125);
  transition: transform 0.6s;
}

.patisserie-card img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  pointer-events: none;
}

.patisserie-card:nth-last-child(n + 5) {
  --x: calc(-50% + 90px);
  transform: translate(var(--x), -50%) scale(0.85);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.01);
}

.patisserie-card:nth-last-child(4) {
  --x: calc(-50% + 60px);
  transform: translate(var(--x), -50%) scale(0.9);
}
.patisserie-card:nth-last-child(3) {
  --x: calc(-50% + 30px);
  transform: translate(var(--x), -50%) scale(0.95);
}
.patisserie-card:nth-last-child(2) {
  --x: calc(-50%);
  transform: translate(var(--x), -50%) scale(1);
}
.patisserie-card:nth-last-child(1) {
  --x: calc(-50% - 30px);
  transform: translate(var(--x), -50%) scale(1.05);
}

.patisserie-card:nth-last-child(1) img {
  box-shadow: 0 1px 5px 5px rgba(255, 193, 111, 0.5);
}

.patisserie-swap {
  animation: patisserie-swap 1.3s ease-out forwards;
}

@keyframes patisserie-swap {
  30% {
    transform: translate(calc(var(--x) - 250px), -50%) scale(0.85) rotate(-5deg)
      rotateY(65deg);
  }
  100% {
    transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
    z-index: -1;
  }
}

/* Media queries follow same structure, just change class names to .patisserie-* accordingly */

/* autocorousal */
.wedezine-carousel {
  position: relative;
  height: 700px;
  perspective: 1000px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.5s ease-in-out;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-container {
  margin: auto;
  width: 150px;
  padding-top: 190px;
  transform-style: preserve-3d;
  position: relative;
  perspective: 1000px;
  z-index: 2;
}

.carousel-rotator {
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
}

.carousel-rotator figure {
  width: 180px;
  height: 120px;
  overflow: hidden;
  position: absolute;
  border: 1px solid #555;
  transition: opacity 0.5s ease;
}

.carousel-rotator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-rotator img:hover {
  transform: scale(1.2);
}

.carousel-rotator figure.dim {
  opacity: 0.3;
  filter: grayscale(100%);
}

.carousel-rotator figure.active {
  opacity: 1;
  filter: none;
}

/* Circular positions */
.carousel-rotator figure:nth-child(1) {
  transform: rotateY(0deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(2) {
  transform: rotateY(40deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(3) {
  transform: rotateY(80deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(4) {
  transform: rotateY(120deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(5) {
  transform: rotateY(160deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(6) {
  transform: rotateY(200deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(7) {
  transform: rotateY(240deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(8) {
  transform: rotateY(280deg) translateZ(300px);
}
.carousel-rotator figure:nth-child(9) {
  transform: rotateY(320deg) translateZ(300px);
}

/*button*/
.section__header .title div,
.section__content .title div {
  text-transform: none !important;
}
.btn1 {
  position: absolute;
  right: 621px !important;
  top: 597px;
  background-color: black;
  color: #e2c952;
  font-size: 18px;
  border: 1px solid #e2c952;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
  padding: 20px 25px 20px 25px;
}

.btn1:hover {
  background-color: #e2c952;
  color: black;
  border-color: black;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.6);
}

.work-steps .work-steps__single h5::before {
  background: linear-gradient(
    90deg,
    #e2c952 0%,
    rgba(255, 116, 37, 0) 60.08%
  ) !important;
}

.count {
  font-size: 46px;
}
.mobile-br { display: none; }
@media (max-width: 575.98px) { /* mobile */
  .mobile-br { display: block; }
}

/* video wefurnish */


/*card*/
 
  .cards-section {
  display: flex;
  gap: 20px;
   min-height: 100vh;
  justify-content: center;
  align-items: center;
}

.card {
  border: 4px solid transparent;
  transform: skewX(-10deg);
  height: 500px;
  width: 350px;
}

.img-wrapper {
  position: relative;
  transform: translate(50px, -70px);
}

.img {
  height: inherit;
  width: 100%;
  object-fit: cover;
  opacity: 0;
}

/*.overlay {*/
/*  position: absolute;*/
/*  top: 0; left: 0;*/
/*  width: 100%; height: 100%;*/
/*}*/
.card-overlay{
    opacity:0;
}

@media (max-width: 600px) {
  .cards-section {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .card {
    width: 90%;
    height: auto; /* Allow height to adapt */
    transform: skewX(0deg); /* Remove skew for readability */
  }

  .img-wrapper {
    transform: translate(0, 0); /* Reset translate */
  }

  .img {
    opacity: 1; /* Show image immediately */
    height: auto;
  }
  .card-img{
      height:unset !important;
  }
  .primary-navbar{
      padding: unset !important;
  }
  .g-4, .gy-4 {
    --bs-gutter-y: 3.5rem !important;
}
    .fh-rail {
        margin-top: -473px !important;
    }
    .contact-title{
        line-height:1 !important;
    }
    .progress-wrap{
                display:none !important;
            }
            .floating_btn {
            position: fixed;
             bottom: -9px !important;
                right: -9px !important;
            }
}


/*curate*/
  .curate-image{
           height:300px;
           object-fit:contain;
  }
       /*curate-hero*/
       
   .curate-hero{
       
         height:500px;
           object-fit:cover;
    }   
    .main{
        max-width:1475px !important;
    }
   

  .project-d .project-d__slider img {
    width: 100%;
    min-height: 430px !important;
       }
       
       .section {
    padding: 60px 0px;
}
    /*contact button*/
.section__content-cta {
    text-align: center;
}
@media (max-width: 600px) {
    .map-placeholder {
        height: unset !important;
    }
}