/* ============================================================
   PAISLEY DIOR HAIR — Hairstylist Website
   Color Palette: Espresso, Champagne, Blush, Warm White, Gold
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --espresso:        #2c2420;
  --espresso-90:     rgba(44,36,32,.9);
  --espresso-70:     rgba(44,36,32,.7);
  --champagne:       #d4b896;
  --champagne-light: #e0cbb0;
  --champagne-dark:  #c2a07a;
  --blush:           #e8d5c4;
  --warm-white:      #f7f2ed;
  --gold:            #b09070;
  --gold-30:         rgba(176,144,112,.3);
  --white:           #FFFFFF;
  --text:            #2c2420;
  --text-light:      #6b5e56;

  --ff-serif:        'Playfair Display', Georgia, serif;
  --ff-sans:         'Raleway', 'Helvetica Neue', Arial, sans-serif;

  --fs-h1:           clamp(2.8rem, 5vw, 4.5rem);
  --fs-h2:           clamp(2rem, 3.5vw, 3rem);
  --fs-h3:           clamp(1.25rem, 2vw, 1.5rem);
  --fs-body:         1rem;
  --fs-small:        0.875rem;
  --fs-label:        0.75rem;

  --radius:          8px;
  --radius-lg:       16px;
  --shadow:          0 4px 30px rgba(44,36,32,.08);
  --shadow-lg:       0 12px 40px rgba(44,36,32,.12);
  --transition:      .35s cubic-bezier(.4,0,.2,1);

  --container:       1200px;
  --gutter:          clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.centered { text-align: center; }

.section-label {
  font-family: var(--ff-sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--gold-30);
}
.section-label.light {
  color: var(--champagne);
  border-bottom-color: rgba(212,184,150,.35);
}
.section-label.on-light {
  color: var(--gold);
  border-bottom-color: var(--gold-30);
}

.section-header h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
}
.section-desc {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--text-light);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  transition: var(--transition);
}
.btn-primary {
  background: var(--champagne);
  color: var(--espresso);
}
.btn-primary:hover {
  background: var(--champagne-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: var(--champagne);
  border-color: var(--espresso);
}
.full-width { width: 100%; text-align: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--espresso-90);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(44,36,32,.15);
  padding: .75rem 0;
}

.header-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--espresso);
  transition: var(--transition);
}
.scrolled .logo { color: var(--champagne); }

.nav-links {
  display: flex;
  gap: 2.25rem;
}
.nav-links a {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--espresso);
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--champagne);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.scrolled .nav-links a { color: rgba(255,255,255,.75); }
.scrolled .nav-links a:hover { color: var(--champagne); }

.header-cta {
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1.5px solid var(--espresso);
  border-radius: 50px;
  color: var(--espresso);
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--champagne);
  color: var(--espresso);
  border-color: var(--champagne);
}
.scrolled .header-cta {
  border-color: var(--champagne);
  color: var(--champagne);
}
.scrolled .header-cta:hover {
  background: var(--champagne);
  color: var(--espresso);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: var(--transition);
}
.scrolled .mobile-toggle span { background: var(--champagne); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--blush);
  background-image:
    linear-gradient(160deg, rgba(247,242,237,0.9) 0%, rgba(232,213,196,0.85) 100%),
    url("../images/paisley cocktail pour.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,213,196,.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 var(--gutter);
}
.hero-tagline {
  font-family: var(--ff-sans);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h1);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}
.hero-scroll-indicator span {
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold-30);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--champagne);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about-text h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.about-text .btn { margin-top: 1rem; }

.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

/* ---------- Image Placeholder ---------- */
.image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--blush);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px dashed var(--gold-30);
}
.image-placeholder.gradient {
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--blush) 100%);
}
.image-placeholder span {
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  color: var(--text-light);
  letter-spacing: 1px;
}
.image-placeholder.large {
  aspect-ratio: 3/4;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--warm-white);
}
.services .section-header {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

/* ============================================================
   ACCORDION SERVICES
   ============================================================ */
.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 0;
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #f7f2ed;
  border: none;
  border-bottom: 1px solid #e8d5c4;
  cursor: pointer;
  transition: background .25s ease;
  font-family: var(--ff-serif);
  outline: none;
}
.accordion-header:hover {
  background: #e8d5c4;
}
.accordion-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: #2c2420;
  letter-spacing: .25px;
}
.accordion-chevron {
  color: #b09070;
  transition: transform .35s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
  background: #ffffff;
}

.accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

/* ---------- Service Card (inside accordion) ---------- */
.svc-card {
  background: #ffffff;
  border: 1px solid #e8d5c4;
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.svc-card:hover {
  box-shadow: 0 4px 20px rgba(44,36,32,.08);
  border-color: #d4b896;
}
.svc-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .5rem;
}
.svc-card-name {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 600;
  color: #2c2420;
  line-height: 1.4;
}
.svc-card-price {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 500;
  color: #b09070;
  white-space: nowrap;
  flex-shrink: 0;
}
.svc-card-desc {
  font-size: 0.88rem;
  color: #6a6a6a;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.svc-card-action {
  display: flex;
  justify-content: flex-end;
}
.btn-request {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 2px;
  background: #d4b896;
  color: #2c2420;
  transition: background .25s ease, transform .2s ease;
  cursor: pointer;
}
.btn-request:hover {
  background: #c2a07a;
  transform: translateY(-1px);
}

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.parallax-divider {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--blush);
  background-image:
    linear-gradient(160deg, rgba(247,242,237,0.9) 0%, rgba(232,213,196,0.85) 100%),
    url("../images/paisley cocktail pour.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,213,196,.15);
}
.parallax-content {
  position: relative;
  z-index: 2;
}
.parallax-content h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--espresso);
}
.testimonials .section-header {
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials-carousel {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  min-width: 100%;
  padding: 2.5rem 3rem;
  text-align: center;
}
.testimonial-stars {
  color: var(--champagne);
  font-size: 1.25rem;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.testimonial-card blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.testimonial-card cite {
  font-family: var(--ff-sans);
  font-size: var(--fs-small);
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--champagne);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,184,150,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne);
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--champagne);
  color: var(--espresso);
  border-color: var(--champagne);
}
.carousel-dots {
  display: flex;
  gap: .5rem;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--espresso-70);
  border: 1px solid rgba(212,184,150,.3);
  transition: var(--transition);
  cursor: pointer;
}
.carousel-dots .dot.active {
  background: var(--champagne);
  border-color: var(--champagne);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: var(--warm-white);
}
.products-grid {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.products-text h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.products-text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.products-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
}
.products-shop-btn {
  background: #d4b896;
  color: #2c2420;
  padding: 18px 48px;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: var(--shadow);
}
.products-shop-btn:hover {
  background: var(--champagne-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.products-collection-link {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  transition: var(--transition);
}
.products-collection-link:hover {
  color: var(--espresso);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.contact-info h2 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.contact-item {
  margin-bottom: 1.5rem;
}
.contact-item h4 {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.contact-item p {
  color: var(--text-light);
}
.contact-hours-intro {
  font-weight: 600;
  font-size: var(--fs-small);
  color: var(--text);
  margin-bottom: 0.4rem;
}
.contact-item-policy p {
  line-height: 1.75;
}
.contact-item a:hover {
  color: var(--champagne-dark);
}

.contact-form-wrap {
  background: var(--warm-white);
  padding: clamp(2rem, 3vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--blush);
}
.contact-form-wrap h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--blush);
  border-radius: var(--radius);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(212,184,150,.2);
}
.form-group textarea { resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--espresso);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--champagne);
}
.footer-social {
  display: flex;
  gap: 1.25rem;
}
.footer-social a {
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footer-social a:hover { color: var(--champagne); }
.footer-copy {
  font-size: var(--fs-small);
  color: rgba(255,255,255,.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  /* no special overrides needed at this breakpoint */
}

@media (max-width: 768px) {
  /* Header */
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--espresso);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .nav-links {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .main-nav .nav-links a { color: var(--champagne); font-size: 1.25rem; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image { order: -1; }

  /* Accordion grid stacks on mobile */
  .accordion-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem 1rem;
  }

  /* Parallax / hero: fixed backgrounds can jitter on mobile */
  .parallax-divider,
  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; text-align: center; max-width: 280px; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
