/* ============================================================
   Luxetouch Nails — style.css
   ============================================================ */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: hsl(350, 20%, 98%);
  color: hsl(340, 30%, 15%);
  line-height: 1.6;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ---- CSS Variables ---- */
:root {
  --pink-primary: hsl(340, 82%, 58%);
  --pink-light: hsl(350, 30%, 96%);
  --pink-muted: hsl(350, 20%, 90%);
  --rose-gold: hsl(350, 60%, 75%);
  --background: hsl(350, 20%, 98%);
  --card: hsl(350, 20%, 99%);
  --foreground: hsl(340, 30%, 15%);
  --foreground-muted: hsl(340, 10%, 45%);
  --border: hsl(350, 20%, 90%);
  --container: 1200px;
  --radius: 1rem;
  --radius-lg: 2.5rem;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* ---- Section Label ---- */
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(253, 251, 251, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 150, 170, 0.1);
  transition: box-shadow 0.3s;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  letter-spacing: -0.02em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.navbar__links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--foreground-muted);
  transition: color 0.3s;
}

.navbar__links a:hover {
  color: var(--pink-primary);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1.5px solid var(--pink-primary);
  color: var(--pink-primary) !important;
  border-radius: 9999px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}

.navbar__cta:hover {
  background: var(--pink-primary);
  color: #fff !important;
}

/* Mobile nav */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links a {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
  }

  .navbar__hamburger {
    display: flex;
    z-index: 101;
  }

  .navbar__cta-desktop {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fdfbfb 0%, #fff0f5 50%, #f4d4db 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(235, 150, 170, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 52rem;
  padding: 8rem 1.5rem 6rem;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.hero__eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--pink-primary);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: hsl(340, 30%, 20%);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--foreground-muted);
  font-weight: 300;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--pink-primary);
  color: #fff;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(210, 60, 110, 0.3);
  transition: all 0.3s;
  text-decoration: none;
}

.btn:hover {
  background: hsl(340, 82%, 52%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(210, 60, 110, 0.4);
  color: #fff;
}

.btn:active {
  transform: translateY(0);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground-muted);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s ease both;
  opacity: 0;
  animation-fill-mode: forwards;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--pink-primary), transparent);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 7rem 0;
  background: var(--background);
}

.about__inner {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about__title em {
  font-style: italic;
  color: var(--pink-primary);
}

.about__divider {
  width: 4rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink-primary), transparent);
  margin: 0 auto 2rem;
}

.about__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--foreground-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 7rem 0;
  background: var(--pink-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--foreground);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery__item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--pink-muted);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.gallery__item:hover::after {
  opacity: 1;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 7rem 0;
  background: var(--background);
}

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

@media (min-width: 700px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing__card {
  background: var(--card);
  border: 1px solid rgba(210, 100, 140, 0.12);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pricing__card:hover {
  border-color: rgba(210, 100, 140, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.pricing__card-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing__card-name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--foreground);
  flex: 1;
}

.pricing__dotted-line {
  flex: 1;
  border-bottom: 2px dotted rgba(140, 80, 100, 0.25);
  margin-bottom: 0.35rem;
  min-width: 1rem;
}

.pricing__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--pink-primary);
  white-space: nowrap;
}

.pricing__card-desc {
  font-size: 0.9rem;
  color: var(--foreground-muted);
  font-weight: 300;
  line-height: 1.7;
}

.pricing__note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--foreground-muted);
  font-style: italic;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 7rem 0;
  background: hsl(350, 60%, 90%, 0.15);
  background: rgba(246, 210, 220, 0.15);
}

.contact__card {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact__card {
    padding: 5rem 4rem;
  }
}

.contact__card::before {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(ellipse, rgba(220, 120, 150, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact__card::after {
  content: '';
  position: absolute;
  bottom: -4rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(ellipse, rgba(235, 170, 190, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.contact__subtitle {
  font-size: 1.1rem;
  color: var(--foreground-muted);
  font-weight: 300;
  max-width: 32rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.contact__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .contact__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}

.contact__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(210, 60, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}

.contact__icon svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--pink-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.contact__link:hover .contact__icon {
  background: var(--pink-primary);
}

.contact__link:hover .contact__icon svg {
  stroke: #fff;
}

.contact__link-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
}

.contact__link-value {
  font-size: 0.8rem;
  color: var(--foreground-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 3rem 0;
  background: var(--background);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--foreground-muted);
  font-weight: 300;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
