/* ============================================================
   ICONIC BEAUTY ACADEMY — Home Page Styles
   ============================================================ */

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.48;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
  filter: contrast(1.05) brightness(0.95);
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 10, 10, 0.95) 0%,
      rgba(10, 10, 10, 0.7) 45%,
      rgba(10, 10, 10, 0.2) 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 10, 10, 0.98) 0%,
      rgba(10, 10, 10, 0.4) 30%,
      transparent 55%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-height);
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-7);
  opacity: 0;
  animation: fadeUp 0.9s 0.3s var(--ease-out) forwards;
}

.hero__eyebrow::before {
  content: '';
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, var(--text-8xl));
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: var(--space-7);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s var(--ease-out) forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(250, 250, 250, 0.7);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s var(--ease-out) forwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s var(--ease-out) forwards;
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fadeIn 1s 1.5s var(--ease-out) forwards;
}

.hero__scroll-text {
  font-size: 9px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.8); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero Stats Bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  padding: var(--space-7) 0;
  display: none; /* shown on desktop */
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--gold);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero__stat-label {
  font-size: 9px;
  color: var(--gray-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: var(--space-2);
  display: block;
}

@media (min-width: 1024px) {
  .hero { min-height: 100vh; }
  .hero__stats { display: block; }
  .hero { padding-bottom: 100px; }
}

/* ===========================
   ABOUT TEASER SECTION
   =========================== */
.about-teaser__image {
  height: 560px;
}

.about-teaser__image img {
  height: 100%;
}

.about-teaser__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.about-teaser__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.about-teaser__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--gray-400);
}

.about-teaser__item-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--gold);
  min-width: 6px;
}

/* ===========================
   OFFER GRID SECTION
   =========================== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1280px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .offer-grid { grid-template-columns: 1fr; }
}

/* ===========================
   FOR WHOM SECTION
   =========================== */
.for-whom {
  background: var(--beige);
}

.for-whom__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.for-whom__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(209, 197, 178, 0.7);
  border-radius: 2px;
  font-size: var(--text-sm);
  color: var(--gray-700);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--duration-base) var(--ease-default);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.for-whom__item:hover {
  border-color: var(--gold-dark);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.for-whom__item-icon {
  font-size: 1.25rem;
}

/* ===========================
   TESTIMONIALS SLIDER
   =========================== */
.testimonials-section {
  background: var(--black-soft);
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: var(--space-6);
  transition: transform var(--duration-slow) var(--ease-out);
}

.slider-slide {
  min-width: calc((100% - 2 * var(--space-6)) / 3);
  flex-shrink: 0;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-default);
}

.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.slider-btn:hover svg { stroke: var(--black); }

.slider-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.slider-dots {
  display: flex;
  gap: var(--space-2);
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--gray-700);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.slider-dot.active {
  background: var(--gold);
  width: 24px;
}

@media (max-width: 1024px) {
  .slider-slide { min-width: calc((100% - var(--space-6)) / 2); }
}

@media (max-width: 640px) {
  .slider-slide { min-width: 100%; }
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */
.newsletter {
  background: var(--black-soft);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter__lead-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.lead-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.lead-option:hover,
.lead-option.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.lead-option__icon { font-size: 1.5rem; }

.lead-option__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  display: block;
}

.lead-option__desc {
  font-size: var(--text-xs);
  color: var(--gray-600);
  display: block;
}

@media (max-width: 640px) {
  .newsletter__lead-options { grid-template-columns: 1fr; }
}
