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

:root {
  --bg: #363434;          /* background color — dark (GOOD DONT CHANGE) */
  --bg-nav: #1c1c1b;      /* nav bar — lightish gray */
  --text: #F5F5F5;        /* text — white */
  --muted: #b5b8b3;       /* muted gray text */
  --accent: #ffcc56;      /* accent — yellow */
  --border: #ff5a44;      /* borders — reddish orange */
}

/* base page */
body {
  background-color: var(--bg);
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
}

/* typography */
h1, h2, h3, h4 {
  color: var(--accent);
}

h1 {
  font-weight: 600;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--text);
  padding-bottom: 0.4rem;
}

h3 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
  margin-top: 2.5rem;
}

p {
  color: var(--text);
}

/* links */
a {
  color: var(--border);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* navbar */
.site-nav {
  background-color: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 1rem;
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text);
}

.nav-links a:hover {
  color: var(--accent);
}

/* content layout */
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* nested lists (hobbies) */
ul ul li {
  color: var(--text);
  font-size: 0.95rem;
}

/* about image stuff here */
.about-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1.5rem;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-photo {
  width: clamp(48px, 20vw, 120px);
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  .about-header {
    flex-direction: column;
    align-items: center;
  }

  .about-photo {
    width: 220px;
  }
}

/* for the animated circles */
.about-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* h1 underline behavior */
.about-title-row h1 {
  margin: 0;
}

/* the little circle strip */
#colors .row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

#colors .circle {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--muted);
  opacity: 0.9;
}

/* for the google slides presentation */
.slides-embed {
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
}

