/* Hair by Kendra Juliette — Luxury Hair Studio */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a96e;
  --gold-light: #dcc291;
  --dark: #1a1a1a;
  --darker: #111;
  --card: #222;
  --text: #e8e8e8;
  --text-muted: #999;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--darker);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; }

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 0.05em;
}

.section-subtitle {
  text-align: center;
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1rem auto 1.5rem;
  display: block;
}

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: background 0.3s;
}

nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

nav .logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav .nav-links { display: flex; gap: 2rem; list-style: none; }

nav .nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-weight: 400;
}

nav .nav-links a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('../images/hero.jpg') center/cover no-repeat;
  position: relative;
}

.hero-content { max-width: 700px; }

.hero h1 {
  font-size: 4rem;
  color: #fff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.hero .subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s;
  font-family: var(--sans);
  font-weight: 500;
}

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

.btn-filled {
  background: var(--gold);
  color: var(--darker);
}

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

/* ── Sections ── */
section { padding: 6rem 2rem; }

.container { max-width: 1200px; margin: 0 auto; }

/* ── About ── */
#about { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-text .highlight {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* ── Services ── */
#services { background: var(--darker); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service-card .price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ── Gallery ── */
#gallery { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: opacity 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover { opacity: 0.8; }

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
}

.gallery-cta a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: color 0.3s;
}

.gallery-cta a:hover { color: var(--gold-light); }

/* ── Pricing ── */
#pricing { background: var(--darker); }

.pricing-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-column {
  background: var(--card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 2.5rem 2rem;
}

.pricing-column h3 {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.pricing-item:last-child { border-bottom: none; }

.pricing-item .service-name { color: var(--text); }
.pricing-item .service-price { color: var(--gold); font-weight: 500; }

/* ── Reviews ── */
#reviews { background: var(--dark); }

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

.review-card {
  background: var(--card);
  padding: 2.5rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.review-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.review-card .reviewer {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.stars { color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 2px; }

/* ── Contact ── */
#contact { background: var(--darker); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail .label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-detail p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-detail a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail a:hover { color: var(--gold); }

.social-links { margin-top: 2rem; display: flex; gap: 1.5rem; }

.social-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover { color: var(--gold); }

.contact-map {
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: none;
  filter: grayscale(1) invert(1) contrast(0.8) brightness(0.7);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../images/cta-bg.jpg') center/cover no-repeat;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ── Footer ── */
footer {
  background: var(--darker);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  padding: 3rem 2rem;
  text-align: center;
}

footer .footer-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ── Products ── */
#products { background: var(--dark); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: var(--card);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 0;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-img-placeholder {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card h3 {
  font-size: 1.3rem;
  color: #fff;
  margin: 1.5rem 1.5rem 0.5rem;
}

.product-card .product-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}

.product-card .product-price {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.product-card .btn {
  margin-bottom: 1.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.7rem;
}

/* ── Testimonials ── */
#testimonials { background: var(--darker); }

.testimonials-featured {
  margin-bottom: 3rem;
}

.testimonial-large {
  background: var(--card);
  border: 1px solid var(--gold);
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-large .testimonial-quote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--card);
  padding: 2rem;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: border-color 0.3s;
}

.testimonial-card:hover { border-color: rgba(201, 169, 110, 0.3); }

.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-author span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-large .testimonial-author {
  align-items: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero h1 { font-size: 2.8rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pricing-columns { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img { height: 350px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero .tagline { font-size: 1.1rem; }
  .section-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-large { padding: 2rem; }
  .testimonial-large .testimonial-quote { font-size: 1.1rem; }
  nav .nav-links { display: none; }
  nav .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
  }
  .menu-toggle { display: block; }
  section { padding: 4rem 1.5rem; }
}
