@import url('https://fonts.googleapis.com/css?family=Inter:wght@300;400;500;600&display=swap');

/* GENERAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
  background-color: #fafafa;
  color: #1a1a1a;
  font-family: 'inter', sans-serif;
  line-height: 1.7;
  font-size: 16px;
  overflow-y: scroll;
}

a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1e40af;
}

p, li {
  margin-bottom: 12px;
}

td {
  padding: 3px 12px;
}

h1 {
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}

h2 {
  font-weight: 500;
  color: #222;
  margin-bottom: 6px;
}

/* STRUCTURE */

header {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border-bottom: 1px solid #dddddd;
  margin-bottom: 24px;
  padding: 24px 0;
}

#header-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

#header-title {
  font-size: 40px;
}

#header-title a {
  color: #333333;
}

ul {
  list-style: none;
}

nav ul {
  display: flex;
  gap: 0 24px;
  list-style: none;
  padding-left: 0;
}

nav ul li {
  margin-bottom: 0;
}

nav a {
  position: relative;
  font-weight: 500;
}

nav a:after {
  content = "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  width: 90%;
  max-width: 900px;
  margin: 12px auto;
}

footer {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  margin-top: 24px;
  border-top: 1px solid #dddddd;
  text-align: center;
  font-size: 0.8rem;
  color: #666666;
}

section {
  margin-bottom: 48px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* HOME PAGE */

#home-main {
  display: flex;
  align-items: center;
}

#home-image {
  flex: 1;
}

#home-image img {
  width: 100%;
  border-radius: 12px;
  padding: 0;
}

#home-text {
  flex: 2;
}

#home-text p {
  width: 100%;
  padding-left: 5%
}

/* PUBLICATIONS */

#publications li {
  list-style: none;
}

/* TALKS */

#talks li {
  list-style: none;
}

/* CURRICULUM VITAE */

#cv li {
  list-style: disc inside;
  padding-left: 24px;
}
