@charset "UTF-8";

:root {
  --gold: #d5bd11;
  --light-gray: #cccccc;
  --hover-yellow: #ffff00;
  --background: #000;
  --text: #e0e0e0;
  --link: #ffcc00;
  --max-width: 700px;
}

html {
  font-size: 20px; /* or 125%, or whatever base size you want */
}

body {
  margin: 0;
  padding: 1rem;
  /* font-family: Arial, sans-serif; */
  font-family: 'Urbanist', Arial, sans-serif;
  font-size: 1em;
  line-height: 1.6;
  background: var(--background) url(../images/clc_background_1400px.jpg) no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
  text-align: center;
}

.container {
  max-width: var(--max-width);
  margin: auto;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.profile img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.bio {
  text-align: left;
}

a {
  color: var(--link);
  text-decoration: underline;
}

a:hover {
  color: var(--hover-yellow);
}

button.resume-btn {
  background-color: var(--gold);
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button.resume-btn:hover {
  background-color: var(--hover-yellow);
}

footer {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--light-gray);
}

#ee {
  font-size: 0.8rem;
  color: #666;
  margin-top: 1rem;
}

#ee a {
  color: #666;
  text-decoration: none;
}

#ee a:hover {
  color: var(--hover-yellow);
}

/* Desktop overrides */
@media (min-width: 600px) {
  .profile {
	flex-direction: row;
	align-items: flex-start;
	text-align: left;
  }

  .bio {
	margin-left: 1rem;
  }
}
