/* Nails by Jackie — site stylesheet */

:root {
  --pink-pale: #fff3f7;
  --pink-light: #fbd6e6;
  --pink-mid: #f2a8c9;
  --pink-deep: #d15b8c;
  --plum: #4a2e3d;
  --plum-soft: #7a5a68;
  --gold: #c9a15a;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(74, 46, 61, 0.12);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--plum);
  background: var(--pink-pale);
  line-height: 1.7;
}

h1, h2, h3, .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--plum);
  margin: 0 0 .5em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; color: var(--plum-soft); }

a { color: var(--pink-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 243, 247, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--pink-light);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-link img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-link .brand {
  font-size: 1.4rem;
  margin: 0;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--plum);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .02em;
}

nav.main-nav a.active,
nav.main-nav a:hover {
  color: var(--pink-deep);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--plum);
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease;
}

.btn-primary {
  background: var(--pink-deep);
  color: var(--white) !important;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(209, 91, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(209, 91, 140, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--pink-deep);
  border: 2px solid var(--pink-deep);
  text-decoration: none;
}

.btn-ghost:hover { background: var(--pink-light); text-decoration: none; }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  text-decoration: none;
}

.btn-ghost-light:hover { background: rgba(255,255,255,0.18); text-decoration: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,20,45,.55) 0%, rgba(74,20,45,.35) 45%, rgba(74,20,45,.65) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}

.hero-content .brand {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: .2em;
}

.hero-content p.tagline {
  color: #ffe8f1;
  font-size: 1.2rem;
  margin-bottom: 1.8em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Banner (fully booked notice) */
.notice-banner {
  background: var(--pink-light);
  border-bottom: 1px solid var(--pink-mid);
}

.notice-banner .container {
  padding: 18px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.notice-banner .icon {
  font-size: 1.3rem;
  line-height: 1;
}

.notice-banner p {
  margin: 0;
  color: var(--plum);
  font-size: .95rem;
}

.notice-banner strong { color: var(--pink-deep); }

/* Sections */
section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head p { margin: 0; }

.kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink-deep);
  font-weight: 600;
  margin-bottom: 10px;
}

.alt-bg { background: var(--white); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-grid-centered {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.gallery-grid img,
.gallery-grid-centered img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}

/* Match column widths to the 4-column grid above so the row lines up */
.gallery-grid-centered img {
  width: calc((100% - 48px) / 4);
}

.gallery-grid-centered img.wide {
  width: calc((100% - 48px) / 4 * 2 + 16px);
}

.gallery-grid img:hover,
.gallery-grid-centered img:hover { transform: scale(1.03); }

.gallery-grid .wide { grid-column: span 2; }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
}

.card .emoji { font-size: 2rem; margin-bottom: 10px; }

/* Pricing */
.price-group { margin-bottom: 52px; }

.price-group h2 {
  border-bottom: 2px solid var(--pink-light);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--pink-light);
}

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

.price-row .name { font-weight: 600; color: var(--plum); font-size: 1.05rem; }
.price-row .desc { color: var(--plum-soft); font-size: .92rem; margin-top: 4px; }
.price-row .amount {
  white-space: nowrap;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--pink-deep);
  font-weight: 600;
}

.price-note {
  background: var(--pink-pale);
  border: 1px dashed var(--pink-mid);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--plum-soft);
  margin-top: 10px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-photos img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 200px;
  object-fit: cover;
}

.about-photos img:first-child { grid-column: span 2; height: 260px; }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial p { color: var(--plum); font-style: italic; }
.testimonial .who { color: var(--pink-deep); font-weight: 600; font-style: normal; margin: 0; }

/* Find me */
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.info-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--pink-light);
}

.info-list .label {
  min-width: 90px;
  font-weight: 600;
  color: var(--pink-deep);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

.w3w-chip {
  display: inline-block;
  background: var(--pink-pale);
  border: 1px solid var(--pink-mid);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .85rem;
  color: var(--pink-deep);
  font-weight: 600;
}

/* Gift card page */
.gift-panel {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 56px 48px;
}

.gift-panel .emoji { font-size: 2.6rem; margin-bottom: 14px; }

.gift-phone {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--pink-deep);
  margin: 18px 0 28px;
}

/* Footer */
footer.site-footer {
  background: var(--plum);
  color: #f3dbe6;
  padding: 56px 0 28px;
}

footer.site-footer a { color: #ffd9ea; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

footer.site-footer h3 { color: var(--white); font-size: 1.1rem; }

footer.site-footer .brand { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: .85rem;
  color: #d9b7c8;
  text-align: center;
}

/* Responsive */
@media (max-width: 860px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: block; }
  nav.main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--pink-pale);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--pink-light);
  }
  nav.main-nav.open ul { flex-direction: column; gap: 16px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; }
  .gallery-grid-centered img,
  .gallery-grid-centered img.wide { width: 100%; }
  .card-grid { grid-template-columns: 1fr; }
  .about-grid, .find-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  .hero-content .brand { font-size: 2.3rem; }
}
