/* ==========================================================================
   Red Hair Salon — v2, styled after the business card:
   serif logotype, gold frame + scissors, script accents, red hair-strand
   waves, and a light "card back" panel for services and prices.
   ========================================================================== */

:root {
  --black: #0d0d0f;
  --panel: #141416;
  --panel-alt: #1a1a1d;
  --red: #c8221c;
  --red-bright: #e8322a;
  --red-deep: #8f1b16;
  --cream: #d9c9a3;
  --gold: #b89b5e;
  --text: #e6e1d6;
  --text-muted: #9b958a;
  --rule: rgba(184, 155, 94, 0.35);
  --light-bg: #f2ede4;
  --light-text: #3a3531;
  --light-muted: #7a726a;
  --light-rule: rgba(143, 27, 22, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 560px;
}

.container.wide {
  max-width: 960px;
}

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  text-decoration: none;
  font-size: 1.15rem;
  white-space: nowrap;
}

.nav-brand span {
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 0.7em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Ornament divider  — · —  (used under every heading, like the card)
   -------------------------------------------------------------------------- */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.25rem auto 2.5rem;
}

.ornament .line {
  width: 46px;
  height: 1px;
  background: var(--gold);
}

.ornament .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red-bright);
}

.light-panel .ornament .line {
  background: var(--red-deep);
}

.light-panel .ornament .dot {
  background: var(--red-deep);
}

/* --------------------------------------------------------------------------
   Hero — card-front treatment
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(232, 50, 42, 0.08), transparent 65%),
    linear-gradient(180deg, var(--panel) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--rule);
}

.hair-wave {
  position: absolute;
  top: 0;
  height: 100%;
  width: clamp(160px, 28vw, 340px);
  pointer-events: none;
}

.wave-left { left: 0; }
.wave-right { right: 0; }

.hero-frame {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem 3rem;
  border: 1px solid var(--gold);
  outline: 1px solid var(--rule);
  outline-offset: 5px;
}

.scissors {
  width: 64px;
  height: auto;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 13vw, 7rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-right: -0.22em; /* offset trailing letter-space so title centres true */
  line-height: 1;
  background: linear-gradient(180deg, var(--red-bright) 0%, var(--red) 55%, #a01d18 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(232, 50, 42, 0.2);
}

.hero-subtitle {
  margin-top: 0.9rem;
  color: var(--gold);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.55em;
  margin-right: -0.55em;
  text-transform: uppercase;
}

.hero-script {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  color: var(--text);
  line-height: 1.3;
}

.hero-tagline {
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-actions {
  margin-top: 2.25rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--gold);
  color: var(--black);
}

/* --------------------------------------------------------------------------
   Intro
   -------------------------------------------------------------------------- */

.intro {
  padding: 4rem 0;
  text-align: center;
}

.intro p {
  font-size: 1.05rem;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  padding: 4.5rem 0;
  text-align: center;
}

.section-alt {
  background: var(--panel);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Light panel — card-back treatment for services + prices
   -------------------------------------------------------------------------- */

.light-panel {
  background: var(--light-bg);
  color: var(--light-text);
  border-top: 3px solid var(--red-deep);
  border-bottom: 3px solid var(--red-deep);
}

.light-panel .section-title {
  color: var(--red-deep);
}

/* --------------------------------------------------------------------------
   Services (two columns, like the card back)
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.services-col + .services-col {
  border-left: 1px solid var(--light-rule);
}

.services-heading {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--red);
  margin-bottom: 1rem;
}

.services-list {
  list-style: none;
  display: inline-block;
  text-align: left;
}

.services-list li {
  padding: 0.4rem 0;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.services-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  margin-right: 0.6rem;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   Price list (on the light panel) — Gents / Ladies columns like the board
   -------------------------------------------------------------------------- */

.prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.price-col + .price-col {
  border-left: 1px solid var(--light-rule);
  padding-left: 2.5rem;
}

.price-heading {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-deep);
  margin-bottom: 1rem;
}

.price-list {
  list-style: none;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.price-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--light-rule);
}

.price-list li:last-child {
  border-bottom: none;
}

.price-name {
  font-weight: 400;
  letter-spacing: 0.04em;
}

.price-name small {
  color: var(--light-muted);
  font-size: 0.8em;
}

.price-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(122, 114, 106, 0.6);
  transform: translateY(-4px);
}

.price-amount {
  font-weight: 600;
  color: var(--red-deep);
  letter-spacing: 0.05em;
}

.walk-ins {
  margin-top: 2.5rem;
  color: var(--red-deep);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Gallery / photo frames
   -------------------------------------------------------------------------- */

/* shopfront featured on its own row, the two working shots paired below */
.gallery-feature {
  max-width: 400px;
  margin: 0 auto 1.25rem;
}

.gallery-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 300px));
  justify-content: center;
  gap: 1.25rem;
}

.photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--panel-alt);
  border: 1px solid var(--rule);
  overflow: hidden;
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(232, 50, 42, 0.06), transparent 70%),
    var(--panel-alt);
}

.photo-fallback small {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.photo-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.75rem;
  background: rgba(13, 13, 15, 0.75);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* --------------------------------------------------------------------------
   Meet Mehmet
   -------------------------------------------------------------------------- */

.mehmet-layout {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.mehmet-layout .photo-frame.portrait {
  flex: 0 0 240px;
  aspect-ratio: 3 / 4;
}

/* when the portrait frame has removed itself (photo not added yet),
   the text becomes the only child — centre it so nothing looks missing */
.mehmet-layout .mehmet-text:only-child {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.mehmet-text p {
  font-size: 1rem;
}

.mehmet-text p + p {
  margin-top: 1rem;
}

.mehmet-sign-off {
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Opening hours
   -------------------------------------------------------------------------- */

.hours-table {
  margin: 0 auto;
  border-collapse: collapse;
  min-width: 300px;
}

.hours-table th,
.hours-table td {
  padding: 0.7rem 1.25rem;
  border-bottom: 1px solid rgba(184, 155, 94, 0.15);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table th {
  text-align: left;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.08em;
}

.hours-table td {
  text-align: right;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   Find us
   -------------------------------------------------------------------------- */

.address {
  font-style: normal;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.phone {
  margin-bottom: 2rem;
}

.phone a {
  color: var(--red-bright);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.phone a:hover,
.phone a:focus {
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  background: var(--panel);
  border-top: 1px solid var(--rule);
}

.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--red-bright);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 1.1rem;
}

.footer-brand span {
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  font-size: 0.75em;
  text-transform: uppercase;
}

.footer-script {
  margin-top: 0.5rem;
  font-family: "Great Vibes", cursive;
  color: var(--cream);
  font-size: 1.3rem;
}

.footer-legal {
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus {
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Small screens
   -------------------------------------------------------------------------- */

@media (max-width: 720px) {
  .gallery-pair {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .mehmet-layout {
    flex-direction: column;
    text-align: center;
  }

  .mehmet-layout .photo-frame.portrait {
    flex: none;
    width: min(280px, 80vw);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 400px;
  }

  .services-col + .services-col {
    border-left: none;
    border-top: 1px solid var(--light-rule);
    padding-top: 2rem;
  }

  .prices-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 480px;
  }

  .price-col + .price-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--light-rule);
    padding-top: 2.5rem;
  }

  .hair-wave {
    opacity: 0.5;
  }

  .hero-frame {
    padding: 2.5rem 1.25rem 2rem;
  }
}

@media (max-width: 520px) {
  .nav {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    padding: 3.5rem 1rem;
  }

  .hours-table {
    min-width: 0;
    width: 100%;
  }
}
