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

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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   Bio Section
   ===================== */
.bio-name {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.profile-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: 1.5px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #bbb;
}

.profile-photo-placeholder svg {
  width: 48px;
  height: 48px;
}

.bio {
  padding: 64px 0 56px;
  text-align: center;
}

.bio-location {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 24px;
}

.bio-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #444;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* =====================
   Social Icons
   ===================== */
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e0e0e0;
  color: #1a1a1a;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.social-instagram:hover {
  border-color: #E1306C;
  background-color: #E1306C;
  color: #ffffff;
}

.social-tiktok:hover {
  border-color: #EE1D52;
  background-color: #EE1D52;
  color: #ffffff;
}

.social-facebook:hover {
  border-color: #1877F2;
  background-color: #1877F2;
  color: #ffffff;
}

.social-youtube:hover {
  border-color: #FF0000;
  background-color: #FF0000;
  color: #ffffff;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* =====================
   Email Button
   ===================== */
.email-btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1.5px solid #1a1a1a;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.email-btn:hover {
  background-color: #1877F2;
  border-color: #1877F2;
  color: #ffffff;
}

/* =====================
   TikTok Feed
   ===================== */
.feed {
  padding: 56px 0 80px;
  border-top: 1px solid #f0f0f0;
}

.feed .container {
  max-width: 1100px;
}

/* =====================
   Footer
   ===================== */
footer {
  padding: 24px 0;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

footer p {
  font-size: 0.75rem;
  color: #bbb;
  letter-spacing: 0.05em;
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 768px) {
  .bio {
    padding: 48px 0 40px;
  }

  .feed {
    padding: 40px 0 60px;
  }

  .feed .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .bio-name {
    font-size: 2rem;
  }

  .bio-text {
    font-size: 0.95rem;
  }

  .profile-photo-placeholder {
    width: 100px;
    height: 100px;
  }

  .profile-photo-placeholder svg {
    width: 40px;
    height: 40px;
  }

  .social-links {
    gap: 16px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }

  .email-btn {
    padding: 11px 24px;
    font-size: 0.75rem;
  }
}
