/* Custom styles for NoiseDiv project page */

.publication-title {
  font-family: 'Google Sans', sans-serif;
  font-size: 2.5rem !important;
}

.publication-authors {
  margin-bottom: 0.75rem;
  line-height: 2;
}

.author-block {
  margin-right: 0.5rem;
  display: inline-block;
}

.method-name {
  font-weight: bold;
  color: #4a90d9;
}

/* Body text - matching Nerfies defaults */
.content p,
.content {
  font-size: 1rem;
  line-height: 1.6;
}

.hero-body .subtitle,
.section p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Teaser figure */
.teaser-figure {
  max-width: 900px;
  margin: 0 auto;
}

.teaser-figure img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Approach figure (narrower than teaser) */
.approach-figure {
  max-width: 500px;
  margin: 0 auto;
}

.approach-figure img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Image slider container */
.image-slider-container {
  margin-top: 2rem;
}

.image-slider-container .column.is-5 {
  padding: 1rem;
}

.image-slider-container img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Limit sequential generation image width on wide screens */
.image-slider-container figure.image {
  max-width: 600px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.slider-label {
  font-weight: bold;
  color: #363636;
  font-size: 0.85rem;
}

/* Slider styling */
.image-slider-container .slider {
  margin: 0.5rem 0;
}

/* Example button styling */
.example-btn.is-selected {
  font-weight: bold;
  box-shadow: 0 0 0 2px rgba(74, 144, 217, 0.5);
}

/* Results grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.results-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Section styling */
.section {
  padding: 3rem 1.5rem;
}

#abstract {
  padding-top: 1rem;
}

.title.is-3 {
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 2rem 1.5rem;
  background-color: #f5f5f5;
}

/* Button styling */
.publication-links .button {
  margin: 0.25rem;
}

/* Hero styling */
.hero.teaser {
  padding-top: 0;
  padding-bottom: 2rem;
}

.hero.teaser .hero-body {
  padding-top: 1rem;
}

.hero-body .subtitle {
  margin-top: 1.5rem;
  font-size: 1rem;
}

/* Image comparison */
.image-comparison {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.image-comparison figure {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .columns.is-centered .column {
    padding: 0.5rem;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
}

