

.hero-banner {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 500px;
  max-height: 800px;
  background-color: #0c0809; 
  display: flex;
  align-items: center;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://res.cloudinary.com/doddjwjov/image/upload/f_auto,q_auto,w_1600/v1789878446/xrqfqf0utcpmfkoolmqe.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) scale(1.06); 
  opacity: 0.28; 
  z-index: 1;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    color-mix(in srgb, var(--color-primary) 32%, transparent) 50%, 
    rgba(0, 0, 0, 0.95) 100%
  );
  z-index: 2;
  pointer-events: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-accent-light);
  margin-bottom: 1.25rem;
  display: inline-block;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.15s;
}

.hero-banner h1 {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.35s;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.75s;
}

.hero-actions .btn {
  padding: 0.9rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 40px; 
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn-primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--color-primary) 35%, transparent);
}

.hero-actions .btn-primary:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--color-primary) 50%, transparent);
}

.hero-actions .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.75);
  color: #FFFFFF;
  background: transparent;
}

.hero-actions .btn-outline:hover {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .hero-banner h1 {
    font-size: 2.6rem;
  }

  .hero-desc {
    font-size: 1.05rem;
    margin-bottom: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
}

.collections-section h2 {
  font-family: var(--font-serif);
}

.collection-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px var(--color-shadow);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.collection-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  z-index: 1;
}

.collection-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 50%, rgba(45, 35, 30, 0.85) 100%);
  z-index: 2;
  transition: opacity 0.3s;
}

.collection-card h3 {
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  z-index: 3;
  margin-bottom: 0;
  position: relative;
  transition: transform 0.3s;
}

.collection-card:hover img {
  transform: scale(1.05);
}

.collection-card:hover h3 {
  transform: translateY(-5px);
  color: var(--color-accent-light);
}

.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.trending-header h2 {
  text-align: left;
  margin-bottom: 0.5rem;
}

.carousel-nav {
  display: flex;
  gap: 0.75rem;
}

.carousel-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  background-color: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed);
}

.carousel-nav-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: var(--color-surface-muted);
}

.journey-section {
  background-color: var(--color-surface-muted);
  text-align: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

.journey-step {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.journey-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-speed);
}

.journey-step:hover .journey-step-icon {
  transform: translateY(-4px);
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.journey-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.journey-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.voices-section {
  text-align: center;
}

.voices-title-large {
  font-size: 5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: -1.5rem;
  font-family: var(--font-serif);
  font-weight: 300;
  opacity: 0.5;
}

.testimonial-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: left;
  box-shadow: 0 4px 12px var(--color-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border-left: 3px solid var(--color-accent);
}

.testimonial-quote {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

.testimonial-card:nth-child(2) .testimonial-avatar {
  background-color: var(--color-accent);
}

.testimonial-card:nth-child(3) .testimonial-avatar {
  background-color: var(--color-text);
}

.testimonial-info h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.testimonial-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  padding: 0.5rem 0.25rem 1.5rem; 
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 calc(25% - 1.5rem); 
  min-width: 280px; 
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  transition: transform var(--transition-speed);
}

@media (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(50% - 1rem); 
    min-width: 260px;
  }
}

@media (max-width: 600px) {
  .carousel-track {
    gap: 1rem;
    padding: 0.5rem 0 1.5rem;
    scroll-snap-type: x mandatory;
  }
  .carousel-item {
    flex: 0 0 100%; 
    min-width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}