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

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #333;
}

/* Hero Section */
.hero {
  background: url("./images/portrait.jpg") no-repeat center center;
  background-size: cover;
  height: 300px; /* Adjust as needed */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/* Overlaid text within the hero */
.hero-text {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
}

.ucd-logo {
  vertical-align: middle;
  margin-left: 10px;
  border-radius: 3px;
}

/* Navigation Bar */
.link-bar {
  background-color: #f8f9fa;
  padding: 0.5rem;
  text-align: center;
}

.link-bar a {
  color: #333;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
}

.link-bar a:hover {
  color: #555;
}

/* Construction GIF */
.construction {
  text-align: center;
  margin: 1rem 0;
}

/* Main Content Area */
main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* About Me Section */
.about-me {
  margin-bottom: 2rem;
}

.about-me h2 {
  margin-bottom: 1rem;
}

/* Publications Section */
.publications {
  margin-bottom: 2rem;
}

.publications h2 {
  margin-bottom: 1rem;
}

.publications ul {
  list-style: disc;
  margin-left: 1.5rem;
}

/* More / Mandelbrot Section */
.mandelbrot {
  margin-bottom: 2rem;
}

.mandelbrot h2 {
  margin-bottom: 1rem;
}

.mandelbrot figure {
  text-align: center;
  margin-top: 1rem;
}

.mandelbrot figure img {
  max-width: 100%;
  height: auto;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #f8f9fa;
}

footer p {
  margin-bottom: 0.5rem;
}

/* Icons for Scholar & LinkedIn */
.icon {
  width: 40px;  /* Adjust icon size */
  margin: 0 10px;
  vertical-align: middle;
}

