/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== HEADINGS ===== */
h1 { font-size: 2rem; color: #f1f5f9; margin-bottom: 0.5rem; }
h2 { font-size: 1.1rem; color: #7eb8f7; text-transform: uppercase;
     letter-spacing: 1px; margin: 0.5rem 0 0.75rem; }
h3 { font-size: 1rem; color: #e2e8f0; margin-bottom: 0.25rem; }
h4 { font-size: 0.9rem; font-weight: 500; color: #e2e8f0; margin-bottom: 0.25rem; }

/* ===== PARAGRAPHS & LINKS ===== */
p { color: #94a3b8; margin-bottom: 0.75rem; }
a { color: #7eb8f7; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== HEADER ===== */
header {
  border-bottom: 1px solid #1e3a5f;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header p { color: #7eb8f7; font-size: 0.95rem; }

/* ====== HEAD IMAGE */
header img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #7eb8f7;
  display: block;
  margin-bottom: 1rem;
  margin-top: 1.5rem
}
body {
  background-color: #0f1117;
  color: #e2e8f0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.7;
  padding: 2rem;
  max-width: 750px;
  margin: 0 auto;
}
/* ===== NAVBAR ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #0d1117;
  border-bottom: 1px solid #1e3a5f;
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
}

.nav-name {
  font-size: 1rem;
  font-weight: 600;
  color: #7eb8f7;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #7eb8f7;
}

/* ===== SOCIAL ICONS ===== */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.social-links a {
  color: #94a3b8;
  font-size: 1.8rem;
  transition: color 0.2s, transform 0.2s;
}

.social-links a:hover {
  color: #7eb8f7;
  transform: translateY(-3px);
}
/* email with label */
.email-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.email-link span {
  font-size: 0.7rem;
  color: #64748b;
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 1rem;
  padding: 0.75rem 1.25rem;
  background: #161b27;
  border: 1px solid #1e3a5f;
  border-radius: 8px;
}

/* ===== FOOTER ===== */
footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #1e3a5f;
  font-size: 0.85rem;
  color: #475569;
}
