@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

.get-started-form {
  @media (max-width: 640px) {
    height: 85%;
  }
}

.image-blocks {
  width: 5rem;
  height: 5rem;

  @media (max-width: 640px) {
    width: 4rem;
    height: 4rem;
  }
}

.order-image {
  height: 200px;

  @media (max-width: 640px) {
    height: 80px;
  }
}

.image-grid {
  grid-template-columns: repeat(auto-fit, 70px);

  @media (max-width: 640px) {
    grid-template-columns: repeat(auto-fit, 60px);
  }
}

.btn-secondary {
  background-color: #fefae0;
  color: #283618
}

.text-green-primary {
  color: #3A606E;
}

.btn-green-secondary {
  border: 1px solid #3A606E;
  transition: background-color 0.3s, color 0.3s;
}

.btn-green-secondary:hover {
  background-color: #3A606E;
  color: white;
}

.green-border {
  border: 2px solid #3A606E;
}

.green-top-border {
  border-top: 1px solid #3A606E;
}

.bg-red-primary {
  background-color: #F25757;
}

.bg-green-primary {
  background-color: #3A606E;
}

.bg-red-secondary {
  background-color: #ED7E7E;
}

.btn-primary {
  background-color: #F25757;
}

.btn-primary:hover {
  background-color: #ED7E7E;
}

p, a, h1, span {
  color: #3A606E;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500 !important;
}

.step-border {
  border: 2px solid #283618;
}

/* Account Tab Styles */
.tab-button {
  border: 2px solid transparent;
}

.tab-active {
  background-color: #283618;
  color: #fefae0;
  border-color: #283618;
}

.tab-inactive {
  background-color: #fefae0;
  color: #283618;
  border-color: #283618;
}

.tab-inactive:hover {
  background-color: #f7f3d0;
}


/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Guru Carousel Styles */
.guru-carousel .swiper-pagination {
  position: static !important;
  /* margin-top: 1rem; */
}

.swiper-pagination-bullet-custom {
  width: 8px;
  height: 8px;
  background: #d1d5db;
  border-radius: 50%;
  opacity: 1;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active-custom {
  background: #3b82f6;
  transform: scale(1.2);
}

.guru-carousel .swiper-wrapper {
  padding-bottom: 10px;
  overflow: visible !important;
}

.guru-carousel {
  padding: 0 20px;
  overflow: visible !important;
}

.guru-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center center;
}

/* Make inactive slides smaller and faded */
.guru-carousel .swiper-slide:not(.swiper-slide-active) {
  transform: scale(0.75) translateY(20px);
  opacity: 0.5;
}

.guru-carousel .swiper-slide:not(.swiper-slide-active) > div {
  pointer-events: none;
  filter: blur(1px);
}

/* Ensure active slide is prominent */
.guru-carousel .swiper-slide-active {
  transform: scale(1) translateY(0);
  opacity: 1;
  z-index: 2;
}

.guru-carousel .swiper-slide-active > div {
  filter: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .guru-carousel {
    padding: 0 10px;
  }
  
  .guru-carousel .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.8) translateY(15px);
  }
}
