/* ==========================================================================
   Khansa Aulia - Personal Website Styles
   Theme: Pure White & Soft Pink Accent (Clean, Minimal, Modern)
   ========================================================================== */

:root {
  /* Color Palette - White Base with Soft & Vibrant Pink Accents */
  --bg-main: #FFFFFF;
  --bg-subtle: #FAF7F9;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 240, 245, 0.95);
  --bg-pink-light: #FFF0F5;
  --bg-pink-soft: #FFE4EC;

  --border-color: rgba(230, 220, 225, 0.6);
  --border-pink: rgba(255, 51, 119, 0.25);
  --border-pink-glow: rgba(255, 51, 119, 0.4);

  --text-primary: #1A181E;
  --text-muted: #5E5866;
  --text-dim: #8E8696;

  --accent-pink: #FF3377;
  --accent-pink-hover: #E02062;
  --accent-pink-light: #FF85B3;
  --accent-pink-subtle: #FFD6E5;
  --accent-pink-glow: rgba(255, 51, 119, 0.15);
  
  --accent-gradient: linear-gradient(135deg, #FF3377 0%, #FF75A0 50%, #FFA8C5 100%);
  --accent-gradient-subtle: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 100%);

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout & Utility */
  --container-max: 1120px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 30px rgba(255, 51, 119, 0.08), 0 2px 8px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 45px rgba(255, 51, 119, 0.15), 0 4px 15px rgba(0, 0, 0, 0.04);
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

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

/* Ambient Soft Pink Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 117, 160, 0.25) 0%, rgba(255, 240, 245, 0) 70%);
  top: -120px;
  left: -100px;
  animation: floatGlow 10s infinite alternate ease-in-out;
}

.glow-2 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 51, 119, 0.18) 0%, rgba(255, 228, 236, 0) 70%);
  bottom: 80px;
  right: -150px;
  animation: floatGlow 12s infinite alternate-reverse ease-in-out;
}

.glow-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  100% { transform: translate(40px, 30px) scale(1.1); opacity: 0.65; }
}

/* Typography Utilities */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-center {
  text-align: center;
}

/* Section Header */
.section-header {
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: var(--bg-pink-light);
  border: 1px solid var(--border-pink);
  color: var(--accent-pink);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(255, 51, 119, 0.06);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #FFFFFF;
  box-shadow: 0 8px 25px rgba(255, 51, 119, 0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 51, 119, 0.38);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

/* Header & Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 220, 225, 0.5);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.logo-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-pink);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-pink);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--accent-pink);
  border-radius: var(--radius-full);
}

.btn-contact {
  padding: 0.55rem 1.25rem;
  background: var(--bg-pink-light);
  border: 1px solid var(--border-pink);
  color: var(--accent-pink) !important;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.btn-contact:hover {
  background: var(--accent-pink);
  color: #FFFFFF !important;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 101;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
  padding: 10rem 0 6rem 0;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}

/* Profile Card Styling */
.profile-card-wrapper {
  position: relative;
}

.profile-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.profile-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-pink-glow);
}

.avatar-ring {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  padding: 6px;
  background: var(--accent-gradient);
  box-shadow: 0 10px 30px rgba(255, 51, 119, 0.2);
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #FFFFFF;
}

.status-badge {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-pink);
  box-shadow: 0 4px 15px rgba(255, 51, 119, 0.15);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.profile-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.profile-name-tag h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.profile-name-tag p {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
}

.verified-badge {
  display: flex;
  align-items: center;
}

/* Hero Content */
.creator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: var(--bg-pink-light);
  border: 1px solid var(--border-pink);
  color: var(--accent-pink);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.bio-quote-box {
  background: var(--bg-pink-light);
  border-left: 4px solid var(--accent-pink);
  padding: 1rem 1.4rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 51, 119, 0.05);
}

.hero-bio {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-pink);
  letter-spacing: -0.01em;
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.highlight-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.highlight-pill:hover {
  border-color: var(--accent-pink-light);
  background: var(--bg-pink-light);
  color: var(--accent-pink);
}

/* Social Media Section */
.socials-section {
  padding: 6rem 0;
  background: var(--bg-subtle);
  position: relative;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-pink);
}

.card-top-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.instagram-card .card-top-decoration {
  background: linear-gradient(90deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
}

.facebook-card .card-top-decoration {
  background: linear-gradient(90deg, #1877F2 0%, #3b5998 100%);
}

.social-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.social-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.ig-icon-bg {
  background: linear-gradient(135deg, #FFF0F5 0%, #FFE4EC 100%);
  color: #E1306C;
  border: 1px solid rgba(225, 48, 108, 0.2);
}

.fb-icon-bg {
  background: linear-gradient(135deg, #EDF5FF 0%, #E2EEFF 100%);
  color: #1877F2;
  border: 1px solid rgba(24, 119, 242, 0.2);
}

.social-platform-info .platform-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.social-platform-info .handle-tag {
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
}

.social-card-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-social {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-ig {
  background: linear-gradient(135deg, #E1306C 0%, #FD1D1D 50%, #F56040 100%);
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.25);
}

.btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.35);
  color: #FFFFFF;
}

.btn-fb {
  background: #1877F2;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.25);
}

.btn-fb:hover {
  background: #166FE5;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(24, 119, 242, 0.35);
  color: #FFFFFF;
}

.arrow-icon {
  transition: var(--transition);
}

.btn-social:hover .arrow-icon {
  transform: translate(2px, -2px);
}

.copy-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.copy-btn:hover {
  background: var(--bg-pink-light);
  border-color: var(--accent-pink-light);
  color: var(--accent-pink);
  transform: scale(1.05);
}

/* Portrait Showcase Card */
.portrait-showcase-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  background: #FFFFFF;
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-md);
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.portrait-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-pink-light);
}

.showcase-img-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(255, 51, 119, 0.15);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portrait-showcase-card:hover .showcase-img {
  transform: scale(1.04);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(255, 51, 119, 0.4) 100%);
  pointer-events: none;
}

.showcase-floating-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border-pink);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.showcase-text-content {
  padding: 1rem 1rem 1rem 0;
}

.mini-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--bg-pink-light);
  color: var(--accent-pink);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.showcase-text-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.showcase-text-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase-tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.showcase-tags .tag {
  padding: 0.35rem 0.85rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-pink);
}

@media (max-width: 850px) {
  .portrait-showcase-card {
    grid-template-columns: 1fr;
    padding: 1.2rem;
  }
  .showcase-img-container {
    height: 320px;
  }
  .showcase-text-content {
    padding: 0.5rem 0;
  }
}

/* Content Pillars Section */
.pillars-section {
  padding: 6rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-pink);
  background: var(--bg-pink-light);
}

.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.pillar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pillar-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-subtle);
}

.contact-card {
  background: var(--accent-gradient-subtle);
  border: 1px solid var(--border-pink);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-content {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--text-primary);
  color: #FFFFFF;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--accent-pink-light);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  padding: 3rem 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand .brand-logo {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.copyright {
  font-size: 0.88rem;
  color: var(--text-dim);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .profile-card-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  .bio-quote-box {
    border-left: none;
    border-top: 3px solid var(--accent-pink);
    border-radius: var(--radius-md);
  }

  .hero-bio {
    text-align: center;
  }

  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions, .hero-highlights {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    padding: 3rem 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 3rem 1.5rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .avatar-ring {
    width: 210px;
    height: 210px;
  }

  .hero-section {
    padding-top: 8rem;
  }

  .card-actions {
    flex-direction: column;
  }

  .copy-btn {
    width: 100%;
    border-radius: var(--radius-full);
  }
}
