/* ═══════════════════════════════════════════════
   SIMORE NAIL TONIQUE — Global Theme
   Pink #d4547a  |  Gold #b8860b
═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --pink:        #d4547a;
  --pink-dark:   #b8405e;
  --pink-light:  #f9e8ef;
  --pink-mid:    #f2c4d4;
  --gold:        #b8860b;
  --gold-light:  #f5edd6;
  --dark:        #2d2020;
  --mid:         #6b4c56;
  --muted:       #9e7c87;
  --white:       #ffffff;
  --bg:          #fdf6f9;
  --border:      #f0d0de;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}
em { color: var(--pink); font-style: italic; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--pink-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(212,84,122,.08);
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--pink);
  padding: 18px 0;
  text-decoration: none;
  letter-spacing: .4px;
}
.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--mid);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 20px;
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--pink-light);
  color: var(--pink);
}
.nav-book {
  background: var(--pink) !important;
  color: var(--white) !important;
}
.nav-book:hover { background: var(--pink-dark) !important; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .9px;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: 30px;
  transition: all .25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(212,84,122,.35);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,84,122,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(184,134,11,.3);
}
.btn-gold:hover { background: #9a7009; transform: translateY(-2px); }

/* ── SECTION TITLES ── */
.section-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted);
  font-size: .95rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── DIVIDER ── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(212,84,122,.13); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.68);
  padding: 60px 48px 30px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--pink);
  margin-bottom: 10px;
}
.footer-tagline { font-size: .84rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s;
}
.footer-social a:hover { background: var(--pink); }
.footer-col h4 {
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; font-size: .83rem; }
.footer-col a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--pink); text-decoration: none; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--pink) 0%, #c4456d 55%, #9e3456 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px 65px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  position: relative;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: .88;
  position: relative;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 300;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--pink);
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 250;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 24px;
  }
  footer { padding: 50px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
