/* ==========================================================================
   Miss Amalu Nnenna Benedeth — Personal Landing Page
   Classy, Clean, Girly & Editorial Style System
   ========================================================================== */

:root {
  /* Girly & Classy Color Palette */
  --bg-page: #FAF6F7;
  --bg-white: #FFFFFF;
  --bg-soft-pink: #FDF0F4;
  --bg-card-pink: #FFF7FA;
  
  --rose-subtle: #F8DCE5;
  --rose-border: #F3CBD9;
  --rose-accent: #E03E7E;
  --rose-deep: #B8255F;
  --rose-dark: #3B0E23;

  --gold-warm: #C99738;
  --gold-light: #F7E7C4;

  --text-main: #2C1820;
  --text-muted: #6B555E;
  --text-light: #8E7882;

  --font-editorial: 'Playfair Display', Georgia, serif;
  --font-serif-italic: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-subtle: 0 4px 20px rgba(184, 37, 95, 0.05);
  --shadow-card: 0 12px 35px rgba(184, 37, 95, 0.08);
  --shadow-hover: 0 18px 45px rgba(184, 37, 95, 0.14);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

/* Magic Floating & Mouse Glitter Sparkle Canvas */
#sparkle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}

/* Background Ambient Glows */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.glow-top {
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FEDAE6 0%, rgba(254, 218, 230, 0) 70%);
}
.glow-bottom {
  bottom: 5%;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #FBE0D5 0%, rgba(251, 224, 213, 0) 70%);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-editorial);
  color: var(--rose-dark);
  line-height: 1.25;
  font-weight: 700;
}

.italic-serif {
  font-family: var(--font-serif-italic);
  font-style: italic;
  font-weight: 600;
  color: var(--rose-accent);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFF;
  border: 1px solid var(--rose-border);
  color: var(--rose-deep);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-subtle);
  margin-bottom: 1.25rem;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose-accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.section-heading {
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243, 203, 217, 0.4);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-editorial);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-size: 0.72rem;
  color: var(--rose-deep);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--rose-accent);
}

.nav-btn {
  background: #FFF;
  color: var(--rose-deep) !important;
  border: 1px solid var(--rose-border);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-subtle);
  font-weight: 700 !important;
}

.nav-btn:hover {
  background: var(--bg-soft-pink);
  border-color: var(--rose-accent);
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 4.5rem 0 5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-headline {
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.14;
  margin-bottom: 1.5rem;
  color: var(--rose-dark);
}

.hero-bio {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.hero-bio strong {
  color: var(--rose-dark);
  font-weight: 600;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.25rem;
}

.quick-tags .tag {
  background: #FFF;
  border: 1px solid var(--rose-subtle);
  color: var(--text-main);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  background: var(--rose-accent);
  color: #FFF;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(224, 62, 126, 0.3);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(224, 62, 126, 0.4);
}

.btn-secondary {
  background: #FFF;
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--rose-border);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-soft-pink);
  border-color: var(--rose-accent);
  transform: translateY(-2px);
}

.hero-photo-wrap {
  position: relative;
}

.photo-frame {
  position: relative;
  background: #FFF;
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--rose-subtle);
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
  display: block;
}

.photo-caption-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--rose-subtle);
  display: flex;
  flex-direction: column;
}

.photo-caption-tag strong {
  font-size: 0.9rem;
  color: var(--rose-dark);
}

.photo-caption-tag span {
  font-size: 0.75rem;
  color: var(--rose-accent);
  font-weight: 600;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 5.5rem 0;
  background: #FFF;
  border-top: 1px solid rgba(243, 203, 217, 0.35);
  border-bottom: 1px solid rgba(243, 203, 217, 0.35);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 4px solid var(--bg-soft-pink);
  aspect-ratio: 4/3;
}

.about-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-chip {
  position: absolute;
  bottom: -20px;
  right: 10px;
  background: var(--rose-dark);
  color: #FFF;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  max-width: 280px;
  box-shadow: var(--shadow-card);
}

.quote-chip p {
  font-family: var(--font-serif-italic);
  font-size: 0.95rem;
  line-height: 1.4;
}

.about-details p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.traits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.trait-card {
  background: var(--bg-card-pink);
  border: 1px solid var(--rose-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.trait-icon {
  font-size: 1.35rem;
  background: #FFF;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-subtle);
}

.trait-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--rose-dark);
}

.trait-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
  padding: 5.5rem 0;
}

.section-header-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.75rem;
}

.gallery-item {
  background: #FFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--rose-subtle);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-border);
}

.gallery-thumb {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-soft-pink);
}

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

.gallery-item:hover .gallery-thumb img {
  transform: scale(1.04);
}

.gallery-meta {
  padding: 1.25rem;
}

.gallery-meta h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: var(--rose-dark);
}

.gallery-meta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Passions Section
   ========================================================================== */
.passions-section {
  padding: 4rem 0 5.5rem;
}

.passions-box {
  background: #FFF;
  border: 1px solid var(--rose-border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.passions-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.passion-col {
  position: relative;
  padding-top: 1rem;
}

.passion-num {
  font-family: var(--font-serif-italic);
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.passion-col h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--rose-dark);
}

.passion-col p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Connect Section
   ========================================================================== */
.connect-section {
  padding: 5rem 0 6rem;
}

.connect-card {
  background: linear-gradient(135deg, #FFF, #FFF4F8);
  border: 1.5px solid var(--rose-border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.connect-header h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.connect-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.contact-box {
  background: #FFF;
  border: 1px solid var(--rose-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.contact-number {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-editorial);
  color: var(--rose-dark);
  margin-bottom: 1.25rem;
}

.contact-actions {
  display: flex;
  gap: 0.65rem;
}

.action-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.wa-btn {
  background: #25D366;
  color: #FFF;
}
.wa-btn:hover {
  background: #1EBE5D;
  transform: translateY(-2px);
}

.call-btn {
  background: #FFF;
  color: var(--rose-dark);
  border: 1px solid var(--rose-border);
}
.call-btn:hover {
  background: var(--bg-soft-pink);
  transform: translateY(-2px);
}

.location-pill {
  display: inline-block;
  background: #FFF;
  border: 1px solid var(--rose-subtle);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--rose-dark);
  color: #FFF;
  padding: 3.5rem 0;
  text-align: center;
}

.footer-name {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-layout,
  .about-grid,
  .passions-cards,
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .passions-box {
    padding: 2.5rem 1.5rem;
  }

  .connect-card {
    padding: 2.5rem 1.5rem;
  }

  .nav {
    display: none;
  }
}
