/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Enable smooth scrolling when clicking nav links */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
}

/* Sticky Navigation Bar */
header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #2563eb;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #2563eb;
}

/* Main Section Layouts */
.page-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.alt-bg {
  background-color: #ffffff;
}

.section-container {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.badge {
  display: inline-block;
  background-color: #e0e7ff;
  color: #3730a3;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

p {
  font-size: 1.1rem;
  color: #475569;
  max-width: 700px;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #0f172a;
  color: #94a3b8;
  font-size: 0.9rem;
}
/* About Me Layout & Profile Image Styling */
.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap; /* Keeps it mobile-friendly on smaller screens */
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%; /* Makes the image a neat circle */
  object-fit: cover; /* Prevents the image from stretching */
  border: 4px solid #e0e7ff; /* Matching subtle blue border */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bio-text {
  flex: 1;
  min-width: 280px;
}

.bio-text p {
  margin-bottom: 1rem;
}
/* General Section & Card Styling */
.section-subtitle {
  margin-bottom: 2rem;
}

.post-card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  max-width: 650px;
}

.post-card h3 {
  font-size: 1.35rem;
  color: #0f172a;
  margin-bottom: 1rem;
}

.media-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: #000;
}

.media-container video {
  width: 100%;
  max-height: 400px;
  display: block;
}

.post-text {
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.fun-prompt {
  background-color: #f1f5f9;
  padding: 0.75rem 1rem;
  border-left: 4px solid #2563eb;
  border-radius: 4px;
  color: #1e293b;
}