/* ==========================================================================
   FONT FACES
   ========================================================================== */

/* Mundial — header/body typeface */
@font-face { font-family: 'Mundial'; src: url('../fonts/mundial/MundialThin.otf'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mundial'; src: url('../fonts/mundial/MundialLight.otf'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mundial'; src: url('../fonts/mundial/MundialRegular.otf'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mundial'; src: url('../fonts/mundial/MundialItalic.otf'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Mundial'; src: url('../fonts/mundial/MundialDemibold.otf'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mundial'; src: url('../fonts/mundial/MundialBold.otf'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Mundial'; src: url('../fonts/mundial/MundialBlack.otf'); font-weight: 900; font-style: normal; font-display: swap; }

/* Zuume — display/sub-header typeface */
@font-face { font-family: 'Zuume'; src: url('../fonts/zuume/Zuume-Light.ttf'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zuume'; src: url('../fonts/zuume/Zuume-Regular.ttf'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zuume'; src: url('../fonts/zuume/Zuume-Medium.ttf'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zuume'; src: url('../fonts/zuume/Zuume-SemiBold.ttf'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zuume'; src: url('../fonts/zuume/Zuume-Bold.ttf'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zuume'; src: url('../fonts/zuume/Zuume-ExtraBold.ttf'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Zuume'; src: url('../fonts/zuume/Zuume-Black.ttf'); font-weight: 900; font-style: normal; font-display: swap; }

/* ==========================================================================
   RESET / BASE
   ========================================================================== */

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

html { scroll-behavior: smooth; }

body {
  background: var(--afters-deep-base);
  color: var(--afters-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }

p { font-size: 1.05rem; max-width: 60ch; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 max(20px, var(--space-md));
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--afters-lilac);
  margin-bottom: var(--space-xs);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  border: 2px solid var(--afters-white);
  color: var(--afters-white);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn:hover { background: var(--afters-white); color: var(--afters-deep-base); }

.btn-solid {
  background: var(--afters-primary);
  border-color: var(--afters-primary);
}

.btn-solid:hover { background: var(--afters-lilac); border-color: var(--afters-lilac); color: var(--afters-white); }

.btn-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: #0b3d24;
}

.btn-whatsapp:hover { background: #1ebc59; color: #0b3d24; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 20, 84, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.site-logo img { height: 28px; width: auto; }

.main-nav ul { display: flex; gap: var(--space-md); align-items: center; }

.main-nav a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.main-nav a:hover { opacity: 1; }

.main-nav .nav-soon {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
  position: relative;
}

.main-nav .nav-soon::after {
  content: 'Soon';
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  text-transform: uppercase;
}

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

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--afters-deep-base);
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open ul { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,20,84,0.2) 0%, rgba(36,20,84,0.95) 100%);
}

.hero.theme-salon::before {
  background: linear-gradient(180deg, rgba(21,9,188,0.25) 0%, rgba(21,9,188,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--space-xl) - 50px) 0 var(--space-lg);
  width: 100%;
}

.hero-content h1 { margin-bottom: var(--space-sm); }
.hero-content p { font-size: 1.2rem; margin-bottom: var(--space-md); max-width: 50ch; }

.hero-actions { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

section { padding: var(--space-xl) 0; }

.section-alt { background: rgba(255,255,255,0.03); }

.theme-salon:not(.hero) { background: var(--afters-menu-blue); }

.section-header { margin-bottom: var(--space-lg); max-width: 65ch; }
.section-header p { margin-top: var(--space-xs); opacity: 0.85; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-md);
}

/* Teaser blocks (Home → Bar / Salon / Radio / Apparel) */
.teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }

@media (max-width: 860px) { .teaser-grid { grid-template-columns: 1fr; } }

.teaser {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--afters-primary);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s ease;
}

.teaser:hover { transform: translateY(-4px); }

.teaser.teaser-salon { background: linear-gradient(135deg, var(--afters-primary), var(--afters-magenta)); }
.teaser.teaser-soon {
  background: transparent;
  border: 1px dashed rgba(255,255,255,0.25);
  opacity: 0.55;
  min-height: 180px;
}

.teaser h3 { margin-bottom: 0.4rem; }
.teaser .eyebrow { color: rgba(255,255,255,0.7); }

/* Price / service list */
.service-list { margin-top: var(--space-sm); }
.service-list .service-category { margin-bottom: var(--space-md); }
.service-list .service-category h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  color: var(--afters-lilac);
  margin-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.4rem;
}
.service-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dotted rgba(255,255,255,0.12);
  font-size: 0.98rem;
}
.service-row span:last-child { opacity: 0.85; white-space: nowrap; margin-left: var(--space-sm); }

/* Info blocks (hours, contact) */
.info-block { margin-bottom: var(--space-md); }
.info-block h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--afters-lilac);
  margin-bottom: 0.4rem;
}

/* Social row */
.social-row { display: flex; gap: var(--space-sm); flex-wrap: wrap; margin-top: var(--space-sm); }
.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
}
.social-row a:hover { opacity: 0.7; }
.social-row svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--afters-black);
  padding: var(--space-lg) 0 var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--afters-lilac);
  margin-bottom: var(--space-sm);
}

.footer-grid ul li { margin-bottom: 0.6rem; opacity: 0.85; }
.footer-grid ul li a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-logo img { height: 22px; margin-bottom: var(--space-sm); }

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: #25D366;
  color: #0b3d24;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}

/* ==========================================================================
   PATTERN / TEXTURE ACCENT
   ========================================================================== */

.a-mark-accent {
  position: absolute;
  opacity: 0.08;
  pointer-events: none;
}

/* ==========================================================================
   SALON PAGE REFINEMENTS
   ========================================================================== */

/* Nail art grid — crop 10px off the bottom of the image */
.art-grid-crop { overflow: hidden; }
.art-grid-crop img { display: block; margin-bottom: -10px; }

/* Extra breathing room between service tiers when requested */
.service-list-spaced .service-category { margin-bottom: calc(var(--space-md) + 20px); }

/* Perfection Guaranteed section — larger type, properly centered */
.perfection-section {
  max-width: 750px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.perfection-section .eyebrow { font-size: 1rem; }
.perfection-section .perfection-lead {
  font-size: 1.35rem;
  margin: var(--space-sm) auto;
  max-width: 55ch;
}
.perfection-section .perfection-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  margin: 0 auto;
  max-width: 55ch;
}
.perfection-section .perfection-fine {
  font-size: 1rem;
  opacity: 0.65;
  margin: var(--space-md) auto 0;
  max-width: 55ch;
  text-align: center;
}
