/* ===================================================
   NAILS FOREVER — Beauty Autopilot Template
   Apple minimalism · pink luxury · horizontal scroll
   =================================================== */

:root {
  /* Core palette — Apple-inspired, pink luxury */
  --white: #ffffff;
  --bg: #fafaf9;
  --bg-alt: #f5f5f3;
  --card: #ffffff;
  --border: #e8e8e5;
  --border-light: #f0f0ed;

  --pink: #f5a0b8;
  --pink-light: #fce4ec;
  --pink-dark: #e07a9a;
  --pink-glow: rgba(245, 160, 184, 0.12);

  --rose-gold: #e8b4b8;
  --rose-gold-light: #f8e0e2;
  --gold: #d4a862;
  --gold-light: #eedbba;
  --champagne: #f5edd6;

  --text: #1d1d1f;
  --text-secondary: #6e6e73;
  --text-tertiary: #aeaeb2;
  --text-muted: #d2d2d7;

  --shadow: rgba(0,0,0,0.04);
  --shadow-strong: rgba(0,0,0,0.08);

  --font-sans: 'Inter', -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  --font-display: 'Inter', -apple-system, 'SF Pro Display', sans-serif;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.47059;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body { min-height: 100vh; }

::selection { background: var(--pink-light); color: var(--text); }
a { color: var(--text); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; display: block; }

/* ----- Header — ultra clean Apple style ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 2rem;
}

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

.brand-mark {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark::before {
  content: '💅';
  font-size: 1rem;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}

.nav-links a {
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.1px;
  transition: color 0.2s;
  border-radius: 20px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-alt);
}

/* ----- Hero — full center, clean ----- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Decorative floating circles — Apple-like */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.hero::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 98, 0.05) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Buttons — pill-shaped, Apple-like ----- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--text);
  color: var(--white);
  letter-spacing: -0.2px;
  transition: all 0.25s;
}

.button:hover {
  opacity: 0.85;
  transform: scale(1.02);
  color: var(--white);
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  letter-spacing: -0.2px;
  transition: all 0.25s;
}

.ghost-button:hover {
  border-color: var(--text-tertiary);
  color: var(--text);
}

/* ----- Section base ----- */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1.1;
}

.section-header .tag {
  display: block;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 400px;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* ========== HORIZONTAL SCROLL SERVICES ========== */

.scroll-area {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  margin: 0 -2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-light) transparent;
}

.scroll-area::-webkit-scrollbar {
  height: 4px;
}
.scroll-area::-webkit-scrollbar-track {
  background: transparent;
}
.scroll-area::-webkit-scrollbar-thumb {
  background: var(--pink-light);
  border-radius: 4px;
}

.track-horizontal {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0;
}

/* Scroll hint */
.scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.scroll-hint::after {
  content: '→ → →';
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--pink);
}

/* Individual slide card — like Apple product cards */
.slide-card {
  scroll-snap-align: start;
  width: 320px;
  flex-shrink: 0;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
  overflow: hidden;
}

.slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
}

.slide-card:hover,
.slide-card:active {
  border-color: var(--pink-light);
  box-shadow: 0 12px 40px var(--shadow-strong);
  transform: translateY(-4px);
}

.slide-card:hover::before {
  opacity: 1;
}

.slide-card .emoji-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

.slide-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.3px;
}

.slide-card .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 0.25rem;
}

.slide-card .duration {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.slide-card .desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.slide-card .button {
  font-size: 0.8rem;
  padding: 0.5rem 1.25rem;
  background: var(--pink);
  color: var(--white);
}

.slide-card .button:hover {
  background: var(--pink-dark);
}

/* ----- Gallery — horizontal swiper ----- */
.gallery-slide {
  width: 300px;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border-light);
  transition: all 0.35s;
  box-shadow: 0 2px 8px var(--shadow);
}

.gallery-slide:hover {
  box-shadow: 0 12px 40px var(--shadow-strong);
  transform: translateY(-4px);
}

.gallery-slide picture {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slide:hover img {
  transform: scale(1.06);
}

.gallery-slide figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========== Team — vertical elegant cards ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.master-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--card);
  transition: all 0.35s;
  box-shadow: 0 2px 8px var(--shadow);
}

.master-card:hover {
  box-shadow: 0 12px 40px var(--shadow-strong);
  transform: translateY(-4px);
  border-color: var(--pink-light);
}

.master-card picture {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.master-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.master-card:hover img { transform: scale(1.05); }

.master-card .info {
  padding: 1.25rem;
}

.master-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.master-card .specialty {
  font-size: 0.8rem;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.master-card .bio {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.master-card .experience {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* ========== Contacts — minimalist list ========== */
.contacts-minimal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contacts-minimal { grid-template-columns: 1fr; }
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}

.contact-row:hover {
  box-shadow: 0 4px 16px var(--shadow);
}

.contact-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-row .label {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-row .val {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-row .val a {
  color: var(--pink-dark);
}

.qr-minimal {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.qr-minimal img {
  margin: 0 auto 1rem;
  border-radius: var(--radius);
}

.qr-minimal figcaption {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ========== Footer — ultra minimal ========== */
.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 2rem;
  text-align: center;
}

.footer-inner p {
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

.footer-inner .brand-name {
  color: var(--pink);
  font-weight: 600;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; letter-spacing: -0.8px; }
  .hero-lead { font-size: 1rem; }
  .section-header h2 { font-size: 1.8rem; }
  .slide-card { width: 280px; }
  .gallery-slide { width: 260px; }

  .site-header {
    padding: 0 1rem;
  }
  .nav-links a {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }
}
