/* ==========================================================================
   1. Global Styles (Dark Theme)
   ========================================================================== */

body {
  font-family: Tahoma, Geneva, sans-serif;
  background-color: #0d1117; 
  color: #c9d1d9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   2. Layout Styles (Dark Theme)
   ========================================================================== */

.main-container {
  width: 90%;
  min-height: 50vh;
  max-width: 1320px; 
  margin: 0 auto;
  background-color: #161b22; 
  padding: 20px 40px; 
  border: 1px solid #30363d; 
  border-radius: 8px; 
}

.navigation-ribbon {
  width: 100%;
  background-color: #161b22;
  padding: 15px 0;
  text-align: center;
  margin-bottom: 30px;
  border-top: 1px solid #30363d;
  border-bottom: 1px solid #30363d;
}

/* ==========================================================================
   3. Typography & Text Styles (Dark Theme)
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  color: #f0f6fc; 
}

h1 { font-size: 34px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 12px; }

h1.title {
  font-size: 38px;
  text-align: center;
  font-weight: bold;
}

h2.subtitle {
  font-size: 34px;
  text-align: center;
  color: #8b949e; 
}

header {
  border-bottom: 1px solid #30363d;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.intro-blurb {
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 30px; 
  margin-bottom: 40px;
  flex-wrap: wrap; 
}

.avatar-image {
  width: 150px;
  height: 150px;
  border-radius: 50%; 
  border: 3px solid #30363d; 
  object-fit: cover; 
}

.blurb-text {
  max-width: 600px;
  text-align: left; 
}

.intro-blurb p {
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================================================
   4. Component Styles (Dark Theme)
   ========================================================================== */

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.cta-button {
  background-color: #161b22;
  color: #c9d1d9;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 15px 30px; 
  font-weight: normal; 
  font-size: 18px; 
  text-transform: uppercase; 
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  color: #58a6ff;
  border-color: #58a6ff; 
}

/* ==========================================================================
   5. Footer Styles (Dark Theme)
   ========================================================================== */

.site-footer {
  width: 100%;
  background-color: #161b22;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #30363d;
  margin-top: 30px;
  color: #8b949e;
}

.site-footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  display: inline-block;
  margin: 0 15px;
}

.privacy-link {
  margin-top: 15px;
}

.privacy-link a {
  color: #8b949e;
  text-decoration: none;
}

.privacy-link a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   6. Social Media Icons (Dark Theme)
   ========================================================================== */

.social-icons {
  text-align: center;
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin: 0 10px;
}

.social-icons svg {
  width: 24px;
  height: 24px;
  fill: #8b949e; 
  transition: fill 0.2s ease-in-out;
}

.social-icons a:hover svg {
  fill: #58a6ff; 
}
