@tailwind base;
@tailwind components;
@tailwind utilities;

@import url('https://fonts.googleapis.com/css2?family=Fondamento:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Overlock:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ibarra+Real+Nova:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Solitreo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Cinzel:wght@400..900&family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Cinzel:wght@400..900&family=DM+Serif+Display:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Cinzel:wght@400..900&family=DM+Serif+Display:ital@0;1&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sacramento&display=swap');
.text{
    color: #333333;
}
.item1 {
    font-family: 'Fondamento';
    color: #333333;
  }
  .item2 {
    font-family: 'PT Sans';
  }
  .item3{
    font-family: "Cinzel", serif;
    font-weight: 500;
  }
  .item4{
    font-family: 'inter';
  }
  .item5{
    font-family: "DM Serif Display", serif;;
  }
  .item6{
    
    font-family: "Poppins", sans-serif;
  }
  .item7{
    font-family: 'Bungee Shade';
  }    

body{
    /* background: rgb(255,229,212); */
    /* background: linear-gradient(90deg, rgba(255,229,212,1) 19%, rgba(252,222,218,1) 22%, rgba(250,218,221,1) 71%, rgba(255,229,212,1) 92%); */
    background: #f7f3f9c5;
    /* background-image: linear-gradient(to right top, #d16ba5, #dc7ead, #e591b6, #eea4c0, #f6b7cb, #f7c0dd, #f7caee, #f4d4fd, #d4ddff, #a1e9ff, #6bf4ff, #5ffbf1); */
    /* background-image: linear-gradient(to right top, #e28cbd, #e999c1, #efa5c6, #f5b2cb, #fabfd2, #fcc6d5, #fdccd8, #fed3dc, #fdd5dc, #fcd6dc, #fbd8dd, #fadadd); */
    /* background-image: linear-gradient(to right top, #e28cbd93, #e999c18e, #efa5c670, #f5b2cba0, #fabfd2ae, #fcc6d5aa, #fdccd8b2, #fed3dc99, #fdd5dc, #fcd6dca8, #fbd8ddad, #fadaddbb); */
}




.hero-img{
  height: 500px; /* Adjust height as needed */
  width: 100%;
  filter: brightness(0.5);
  object-fit: cover;
 
}
.hero-heading{
    background-color: #ffc7a648;
    width: 600px;
    height: 200px;


}

/* .faq-title {
    cursor: pointer;
    transition: background-color 0.3s;
  }
  .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .faq-content.open {
    max-height: 200px;
  } */




.faq-item {
    transform: translateY(20px);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-title {
    cursor: pointer;
    user-select: none;
}
.faq-title span:last-child {
    transition: transform 0.3s ease;
}
.active .faq-title span:last-child {
    transform: rotate(45deg);
}
.active .faq-content {
    max-height: 200px;
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
.rounded-md {
    border-radius: 0.375rem;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.faq-title:hover {
    animation: pulse 0.5s ease-in-out;
}




@keyframes pulse1 {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-btn {
    animation: pulse1 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    animation: bounce 1s infinite;
    transform: scale(1.1);
}

.whatsapp-icon {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: rotate(360deg);
}



.collection-section {
    /* opacity: 0;  */
  }
  .collection-img {
    transition: transform 0.5s ease-in-out;
  }
  /* .collection-img:hover {
    transform: scale(1.05) rotate(2deg);
  } */









  .video-carousel-section {
    border-radius: 1rem;
    padding: 2rem;
  }

  .splide__slide {
    padding: 0.5rem;
    transform-origin: center center;
  }

  .video-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  .video-container:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
  }

  .video-container:hover::before {
    opacity: 1;
  }

  .video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
  }

  .video-container:hover .video-element {
    transform: scale(1);
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
  }

  .play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #FFD1DC;
    margin-left: 4px;
  }

  .video-container:hover .play-button {
    transform: translate(-50%, -50%) scale(1);
    background: rgba(255, 255, 255, 1);
  }

  .video-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 2;
  }

  .video-container:hover .video-title {
    transform: translateY(0);
  }

  @media (max-width: 768px) {
    .video-carousel-section {
      padding: 1rem;
    }

    .splide__slide {
      padding: 0.25rem;
    }

    .play-button {
      width: 40px;
      height: 40px;
    }

    .play-button::after {
      border-width: 8px 0 8px 16px;
    }
  }

  .testimonial-section {
    text-align: center;
    padding: 20px;
}
.testimonial-section h1 {
    font-size: 35px;
    color: #333333;
    margin-bottom: 25px;
}
.testimonials {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.testimonial-card {
    background-color: #ffff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    height: 350px;
    text-align: left;


}
.testimonial-card img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.testimonial-text {
    font-size: 22px;
    color: #333333;
    margin-top: 10px;
}
.signature {
  font-family: "Sacramento", cursive;
  font-weight: 400;    font-size: 25px;
    color: #333333;
    margin-top: 10px;
}
.customer-name {
  font-family: "Poppins", sans-serif;;
    font-size: 15px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 10px;
}


.testimonial-card {
  height: 350px;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.main-container {
  width: 100%;
  max-width: 1268px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.text3 {
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.main-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
  scroll-behavior: smooth;
}

.main-slider::-webkit-scrollbar {
  height: 10px;
}

.main-slider::-webkit-scrollbar-thumb {
  background-color: #FFD1DC;
  border-radius: 5px;
}


.card1 {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  margin: 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 407px;
  height: 250px;
  padding: 10px 5px 5px 5px;
  border-radius: 10px;
  border: 1px solid #000000;
  background-color: #FFFFFF;
  scroll-snap-align: start;
}
.icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #333333;
}

.text1 {
  font-size: 22px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;

  line-height: 25px;
  color: #333333;
}

.text2 {
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 22.5px;
  color: #333333;
}

@media (max-width: 767px) {
  .main-container {
      padding: 20px;
  }

  .card1 {
      width: 100%;
      max-width: 100%;
      height: auto;
  }
}

.main-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px;
  scroll-behavior: smooth;
  scroll-padding-left: 20px;
}

/* Loader CSS */
#loader {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 50;
}

/* Loader Animation */
.loader {
  display: flex;
  gap: 10px;
}

.loader .dot {
  width: 15px;
  height: 15px;
  background-color: #FFD1DC; /* Adjust to your primary color */
  border-radius: 50%;
  animation: dotPulse 1s infinite ease-in-out;
}

.loader .dot:nth-child(1) {
  animation-delay: 0s;
}
.loader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.loader .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.5);
  }
}
