/* =============================================
   GOLDEN HOUR SALON — pages.css
============================================= */

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deeper);
  overflow: hidden;
  color: var(--b50);
  text-align: center;
}

.hero-breathing-bg {
  position: absolute; inset: 0;
  background: url('../assets/GH-401.jpg') center 35% / cover no-repeat;
  z-index: 1;
  animation: breathe 20s ease-in-out infinite alternate;
}

@keyframes breathe {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-overlay-sheer {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(62,39,35,.28) 0%, rgba(78,52,46,.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 820px;
  padding: 0 24px;
  transform: translateY(-70px);
}

.hero-tagline {
  font-family: var(--tagline);
  font-size: 2.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 35px;
  margin-bottom: 100px;
  color: var(--b50);
}

.hero-content .btn-primary {
  margin-top: 0;
}

.hero-subtext {
  font-size: .78rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--tw2);
  margin-top: 10px;
  margin-bottom: 110px;
}

/* ══════════════════════════════════════
   INTRO
══════════════════════════════════════ */
.intro-section { background: var(--bg); }

.image-frame-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 460px;
}
.editorial-inline-img { width: 100%; height: 100%; object-fit: cover; }

.intro-text-container .section-title {
  font-family: var(--tagline);
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.38;
}

/* ══════════════════════════════════════
   SPECIALTIES SPLIT (3-across: Extensions / Bridal / Education)
══════════════════════════════════════ */
.specialties-section {
  display: flex;
  width: 100%;
  min-height: 480px;
}

.specialty-block {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.block-bg-image-layer {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  z-index: 1;
  transition: transform .7s var(--ease);
}
.specialty-block:hover .block-bg-image-layer { transform: scale(1.06); }

.block-hover-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 2;
  transition: background .4s ease;
  pointer-events: none;
}
.specialty-block:hover .block-hover-overlay { background: rgba(0,0,0,.62); }

.block-content-layer {
  position: relative;
  z-index: 10;
  max-width: 340px;
  color: var(--b50);
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.spec-title-solid   { font-family: var(--serif); font-size: 1.85rem; letter-spacing: 2px; font-weight: 300; color: var(--b50); margin-bottom: 6px; }
.spec-title-cursive { font-family: var(--cursive); font-size: 2.65rem; color: var(--tw3); display: block; margin-top: -4px; text-transform: none; }
.spec-policy-note   { display: block; font-size: .66rem; letter-spacing: 2px; text-transform: uppercase; color: var(--b100); margin-bottom: 28px; font-weight: 300; }

/* ══════════════════════════════════════
   HOME SUITES MINI GRID
══════════════════════════════════════ */
.home-suites-summary { background: var(--b50); }

.home-suites-mini-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  margin-top: 40px;
}

.suite-mini-card {
  background: var(--bg-card);
  padding: 22px;
  border-radius: var(--r-lg);
  cursor: pointer;
  border: 1px solid rgba(78,52,46,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.suite-mini-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(62,39,35,.1); }

.mini-card-img-holder {
  width: 100%; height: 175px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--b100);
}
.mini-card-img-holder img { width: 100%; height: 100%; object-fit: cover; }

.open-lease-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--accent);
  background: var(--b50);
  color: var(--b400);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
}

.mini-suite-num { font-size: .62rem; color: var(--accent); font-weight: 600; display: block; margin-bottom: 7px; letter-spacing: 2px; }
.suite-mini-card h6 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; margin-bottom: 10px; color: var(--text); }
.mini-suite-btn { font-size: .68rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--b400); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { background: linear-gradient(135deg, rgba(255,214,160,.08) 0%, transparent 42%), var(--bg-dark); }
.testimonials-section .section-title { color: var(--b50); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }

/* ══════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════ */
.extension-featured-box {
  background: linear-gradient(135deg, rgba(255,214,160,.1) 0%, transparent 42%), var(--bg-dark);
  padding: 52px 54px;
  margin-bottom: 48px;
  border-radius: var(--r-lg);
  border: 2px solid var(--accent);
  box-shadow: 0 18px 48px rgba(205,151,119,.28);
}
.extension-featured-box::before {
  content: "OUR SIGNATURE SPECIALTY";
  display: block;
  text-align: center;
  font-size: .64rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--tw2);
  margin-bottom: 16px;
}
.extension-featured-box .card-inner-title { color: var(--b50); }
.extension-featured-box p {
  color: var(--b200);
  font-weight: 300;
  line-height: 1.7;
  font-size: .9rem;
  text-align: center;
}
.featured-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(205,151,119,.2);
  padding-top: 28px;
  margin-top: 28px;
  gap: 18px;
}
.price-consultation { font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--tw1); }

.category-divider {
  border: none;
  border-top: 2px solid var(--b700);
  margin: 44px 0;
  opacity: .35;
}

/* ══════════════════════════════════════
   BRIDAL
══════════════════════════════════════ */
.bridal-pricing-card {
  background: var(--bg-card);
  padding: 52px;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 28px rgba(62,39,35,.05);
}

.card-inner-title  { font-family: var(--serif); font-size: 1.45rem; letter-spacing: 2px; text-align: center; margin-bottom: 14px; color: var(--text); }
.card-desc         { font-size: .88rem; text-align: center; color: var(--b400); margin-bottom: 38px; line-height: 1.65; }
.bridal-fee-line   { display: flex; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid var(--b50); align-items: center; }
.fee-detail        { max-width: 72%; }
.fee-name          { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--text); }
.fee-explanation   { display: block; font-size: .82rem; color: var(--b400); margin-top: 5px; line-height: 1.5; }
.fee-cost          { font-family: var(--serif); font-size: 1.55rem; color: var(--accent); text-align: right; }
.fee-cost small    { display: block; font-size: .62rem; font-family: var(--sans); text-transform: uppercase; color: var(--b400); letter-spacing: 1px; margin-top: 3px; }
.notice-text       { font-size: .82rem; font-style: italic; margin-bottom: 18px; color: var(--b400); }

/* ══════════════════════════════════════
   TEAM
══════════════════════════════════════ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.team-card { flex: 0 1 480px; }

/* ══════════════════════════════════════
   SUITES
══════════════════════════════════════ */
.suites-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ══════════════════════════════════════
   GOLDEN EDUCATION PAGE
══════════════════════════════════════ */
.edu-hero {
  background: linear-gradient(135deg, rgba(255,214,160,.1) 0%, transparent 42%), var(--bg-dark);
  border-radius: var(--r-lg);
  padding: 64px 56px;
  text-align: center;
  margin-bottom: 56px;
  border: 2px solid var(--accent);
  box-shadow: 0 18px 48px rgba(205,151,119,.22);
}
.edu-hero .section-subtitle { color: var(--tw2); }
.edu-hero-title {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--b50);
  line-height: 1.2;
  margin-bottom: 18px;
}
.edu-hero-title .text-cursive { font-size: 1.05em; }
.edu-hero p.section-paragraph {
  color: var(--b200);
  max-width: 620px;
  margin: 0 auto;
}

.edu-feature-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.edu-feature-card {
  background: var(--bg-card);
  padding: 38px 30px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid rgba(78,52,46,.06);
  border-top: 3px solid var(--accent);
  box-shadow: 0 14px 38px rgba(62,39,35,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.edu-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(62,39,35,.14), 0 0 24px rgba(205,151,119,.18);
}
.edu-feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-lt), var(--tw3));
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}
.edu-feature-card h5 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; margin-bottom: 10px; color: var(--text); }
.edu-feature-card p { font-size: .85rem; color: var(--b400); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════════════
   PAGE TRANSITIONS
══════════════════════════════════════ */
@keyframes luxuryContentFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════ */
.gallery-intro { margin-bottom: 56px; }

.stylist-gallery-row {
  display: flex;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, rgba(255,214,160,.1) 0%, transparent 42%), var(--bg-dark);
  border-radius: var(--r-lg);
  padding: 48px 42px;
  margin-bottom: 44px;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 24px rgba(0,0,0,.22), 0 18px 48px rgba(205,151,119,.28);
  transition: box-shadow .35s ease, transform .35s ease;
}
.stylist-gallery-row:hover {
  box-shadow: 0 16px 34px rgba(0,0,0,.3), 0 28px 68px rgba(205,151,119,.4), 0 0 55px rgba(205,151,119,.28);
  transform: translateY(-5px);
}

.stylist-gallery-row:nth-of-type(3n+2) { border-color: var(--tw3); }
.stylist-gallery-row:nth-of-type(3n+3) { border-color: var(--tw6); }

.stylist-gallery-intro { flex: 0 0 230px; text-align: center; }

.stylist-gallery-portrait {
  width: 190px; height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-lt), var(--tw6));
  box-shadow: 0 12px 30px rgba(0,0,0,.3), 0 0 0 3px var(--bg-dark) inset;
  border: none;
  outline: none;
}
.stylist-gallery-intro h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 4px; color: var(--b50); }
.stylist-gallery-intro .stylist-specialty { margin-bottom: 0; }

/* Coverflow stage */
.coverflow {
  position: relative;
  flex: 1;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--r-md);
}
.coverflow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,214,160,.22) 0%, transparent 68%),
              radial-gradient(ellipse 90% 100% at 50% 50%, transparent 55%, rgba(0,0,0,.15) 100%);
  z-index: 0;
  pointer-events: none;
}

.cf-track { position: relative; width: 100%; height: 100%; perspective: 1400px; }

.cf-slide {
  position: absolute;
  top: 50%; left: 50%;
  width: 340px;
  height: 440px;
  border-radius: var(--r-md);
  overflow: hidden;
  transform: translate(-50%,-50%) scale(.7);
  opacity: 0;
  filter: brightness(.5) saturate(.35);
  background: var(--b200);
  padding: 8px 8px 28px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25), 0 14px 34px rgba(205,151,119,.2);
  transition: transform .5s var(--ease), opacity .5s ease, filter .5s ease, box-shadow .5s ease;
  pointer-events: none;
  cursor: pointer;
  box-sizing: border-box;
}
.cf-slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 4px; }

.cf-slide.cf-active {
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  filter: none;
  z-index: 10;
  box-shadow: 0 18px 40px rgba(0,0,0,.35), 0 0 55px rgba(205,151,119,.5);
  pointer-events: auto;
}
.cf-slide.cf-side-left {
  transform: translate(-115%,-50%) scale(.8) rotateY(28deg);
  opacity: .6;
  z-index: 5;
  pointer-events: auto;
}
.cf-slide.cf-side-right {
  transform: translate(15%,-50%) scale(.8) rotateY(-28deg);
  opacity: .6;
  z-index: 5;
  pointer-events: auto;
}
.cf-slide.cf-hidden { opacity: 0; pointer-events: none; }

.cf-arrow {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(62,39,35,.7);
  color: var(--b50);
  border: 1px solid rgba(205,151,119,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 20;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.cf-arrow:hover {
  background: linear-gradient(135deg, var(--accent), var(--tw6));
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 28px rgba(205,151,119,.45);
}
.cf-prev { left: 12px; }
.cf-next { right: 12px; }


/* ══════════════════════════════════════
   TESTIMONIAL CAROUSEL
══════════════════════════════════════ */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.tc-track { position: relative; width: 100%; min-height: 260px; }

.tc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.tc-slide.tc-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.tc-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--bg-dark);
  border: 1px solid rgba(78,52,46,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(62,39,35,.12);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.tc-arrow:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.08);
}

.tc-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 30px;
}
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--b200);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.tc-dot.tc-dot-active {
  background: var(--accent);
  transform: scale(1.3);
}