/* ===== FINESSE BY MONT — Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&family=Dancing+Script:wght@700&display=swap');

:root {
  --pink: #e91e8c;
  --pink-light: #ff4db8;
  --pink-glow: rgba(233, 30, 140, 0.3);
  --pink-soft: rgba(233, 30, 140, 0.12);
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --white: #ffffff;
  --grey: #888888;
  --light-grey: #cccccc;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233, 30, 140, 0.15);
  transition: var(--transition);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--pink);
  letter-spacing: 1px;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light-grey);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.82rem !important;
  letter-spacing: 1px;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--pink-light) !important; transform: translateY(-1px); box-shadow: 0 8px 24px var(--pink-glow); }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--pink-glow);
}

.btn-outline {
  border: 1px solid var(--pink);
  color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--light-grey);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }

/* ===== SECTION LAYOUT ===== */
.section { padding: 100px 5%; }
.section-sm { padding: 60px 5%; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--grey);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== PINK DIVIDER ===== */
.pink-line {
  width: 48px; height: 2px;
  background: var(--pink);
  margin: 0 auto 20px;
}

/* ===== CARDS ===== */
.card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ===== STARS ===== */
.stars { color: var(--pink); font-size: 1.1rem; letter-spacing: 2px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(233, 30, 140, 0.15);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--pink);
  margin-bottom: 12px;
}
.footer-tagline { color: var(--grey); font-size: 0.9rem; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social:hover { border-color: var(--pink); color: var(--pink); }

.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--grey); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--grey);
  font-size: 0.8rem;
}

/* ===== PINK GLOW BG BLOBS ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 400px; height: 400px; background: rgba(233,30,140,0.08); top: -100px; right: -100px; }
.blob-2 { width: 300px; height: 300px; background: rgba(233,30,140,0.05); bottom: 0; left: -80px; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px; right: 32px;
  background: var(--dark-3);
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  padding: 16px 24px;
  color: var(--white);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition);
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: #22c55e; }
.toast.error { border-color: #ef4444; }

/* ===== MOBILE NAV ===== */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--pink); }
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--grey);
  font-size: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section { padding: 80px 5%; }
}

/* ===== PAGE HERO (non-home) ===== */
.page-hero {
  padding: 160px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero-subtitle { color: var(--grey); font-size: 1.05rem; }

/* ===== FORM ELEMENTS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}
.form-select { appearance: none; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--grey); }
