@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');


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

html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

body {
  background: #0f0f0f;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 1.5rem;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  padding-top: 3rem;
}

a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  display: flex;
  justify-content: center; /* Centers content */
}

.logo-container {
  max-width: 1200px; /* Match .content-container */
  width: 100%; /* Ensure it spans the full width */
  padding-left: 2rem;
}

.logo {
  margin: 0;
  padding: 0;
}

.logo a {
  font-weight: 300;
  color: #ffffff;
}

.logo a:hover {
  text-decoration: none;
}

.nav-links {
  color: #ffffff;
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  font-weight: 600;
  color: #ffffff;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.about-left {
  width: 50%;
  padding-right: 3rem;
}

.about-right {
  width: 50%;
}

.greeting {
  font-size: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social {
  margin-top: 1rem;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}

.social a {
  font-size: 5rem; /* Adjust icon size if needed */
  text-decoration: none;
}

/* Specific brand colors */
.social a[href*="github.com"] {
  color: #333; /* GitHub (Dark Gray) */
}

.social a[href*="bsky.app"] {
  color: #0061dd; /* Bluesky (Official Blue) */
}

.social a[href*="linkedin.com"] {
  color: #0077b5; /* LinkedIn (Blue) */
}

.social a[href*="mailto:"] {
  color: #d44638; /* Email (Gmail Red) */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .about-container {
      flex-direction: column; /* Stack content vertically */
      align-items: flex-start; /* Ensure normal text alignment */
  }

  .about-right {
      order: -1; /* Moves the "reach out" text above the social icons */
      text-align: left; /* Keeps normal left-aligned text */
      width: 100%; /* Ensures it takes the full width */
  }

  .about-left {
    flex-direction: row; /* Keep icons in a row */
    justify-content: space-around; /* Ensures even spacing */
    flex-wrap: wrap; /* Allows wrapping if needed */
    gap: 20px; /* Adds space between icons */
    width: 100%;
    margin-top: 15px;
  }

  .about-left a {
      font-size: 4rem; /* Keep large but slightly reduced for mobile */
      flex: 1; /* Ensures icons distribute evenly */
      text-align: center; /* Prevents shifting */
      min-width: 60px; /* Prevents icons from getting too close */
  }
}

.highlighted-red {
  color: #f11616;
}

.content-container {
  flex: 1;
}

.content-container a {
  text-decoration: underline;
}

.blog-entry {
  border-left: 3px solid #ffffff;
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

footer {
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 2rem;
  padding: 10px;
}