/* Foot Touch Foot Reflexology - Custom Styling & Luxury Aesthetics */

@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

:root {
  --bg-ivory: #FFFDF8;
  --bg-cream: #FFF8F2;
  --card-white: #FFFFFF;
  --primary-terracotta: #C97A63;
  --primary-hover: #B26650;
  --secondary-rose: #D89A9E;
  --highlight-peach: #F2C4A5;
  --text-charcoal: #3E3A39;
  --text-muted: #6E6A68;
  --border-beige: #E8DED6;
  --border-light: #F3ECE6;
  --shadow-soft: 0 12px 32px -4px rgba(201, 122, 99, 0.07);
  --shadow-elevated: 0 20px 40px -6px rgba(201, 122, 99, 0.12);
  --radius-custom: 20px;
}

html {
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
  color: var(--text-charcoal);
  background-color: var(--bg-ivory);
}

body {
  background-color: var(--bg-ivory);
  color: var(--text-charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Enhancements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-charcoal);
  letter-spacing: -0.02em;
}

/* Custom Soft Warm Shadows & Borders */
.luxury-card {
  background-color: var(--card-white);
  border: 1px solid var(--border-beige);
  border-radius: var(--radius-custom);
  box-shadow: var(--shadow-soft);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
  border-color: var(--primary-terracotta);
}

/* Buttons Styling */
.btn-terracotta {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-terracotta);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(201, 122, 99, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-terracotta:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(201, 122, 99, 0.35);
  transform: translateY(-2px);
}

.btn-secondary-outline {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  color: var(--text-charcoal);
  font-weight: 600;
  border: 1.5px solid var(--border-beige);
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary-outline:hover {
  border-color: #9E513D;
  color: #FFFFFF !important;
  background-color: #9E513D !important;
}

.btn-secondary-outline:hover * {
  color: #FFFFFF !important;
}

/* Ripple effect */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 600ms linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


/* Pill Badges */
.badge-peach {
  background-color: #FFF1E8;
  color: var(--primary-terracotta);
  border: 1px solid var(--border-beige);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Floating Card Accent */
.floating-card {
  background-color: var(--card-white);
  border: 1px solid var(--border-beige);
  border-radius: 16px;
  box-shadow: 0 10px 25px -3px rgba(201, 122, 99, 0.1);
  padding: 0.75rem 1.25rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--border-beige);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-terracotta);
}

/* FAQ Accordion Styling */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  transition: max-height 0.4s ease-in-out;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--primary-terracotta);
}

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

/* Testimonial Carousel Transitions */
.testimonial-slide {
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  position: relative;
  pointer-events: auto;
}

/* Scroll Fade Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Background Carousel Slider Transitions */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  transition: transform 7s ease-out;
  transform: scale(1);
}

.hero-slide.active img {
  transform: scale(1.06);
}