/* style.css - Academic Project Page Theme */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans:400,400i,700|Castoro');

body {
  font-family: 'Noto Sans', sans-serif;
  background-color: #ffffff;
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* Main Container */
.content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Typography */
h1 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  margin-top: 2rem;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0.5rem;
}

h3 {
  font-family: 'Google Sans', sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

p {
  text-align: justify;
}

a {
  color: #3273dc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Author Section */
.authors {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.author-block {
  display: inline-block;
  margin-right: 15px;
}

.affiliations {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Button Links (Paper, Code, etc.) */
.link-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 3rem;
}

.btn {
  background-color: #363636;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
}

.btn:hover {
  background-color: #555;
}

/* Abstract Box */
.abstract {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 2rem;
}

/* Visuals */
.teaser video, .teaser img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.figure-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
}

.figure-row img {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.caption {
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 10px;
}

/* Citation Block */
pre {
  background-color: #f5f5f5;
  padding: 15px;
  border-radius: 5px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.85rem;
}