body {
  font-family: 'Noto Sans', sans-serif;
  scroll-behavior: smooth;
}

/* Modern scroll animations */
.fade-in-section {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
}

/* Enhanced button interactions - less pronounced */
.external-link.button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.external-link.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.external-link.button:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

/* Ripple effect for buttons */
.external-link.button .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced button states */
.external-link.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.external-link.button:focus:not(:focus-visible) {
  box-shadow: none;
}

/* Modern link hover effects */
.publication-authors a {
   color: hsl(204, 86%, 53%) !important;
   transition: all 0.3s ease;
   position: relative;
}

.publication-authors a:hover {
    text-decoration: none;
    color: hsl(204, 86%, 40%) !important;
}

.publication-authors a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: hsl(204, 86%, 53%);
  transition: width 0.3s ease;
}

.publication-authors a:hover::after {
  width: 100%;
}

/* Enhanced carousel interactions - less movement */
.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  padding: 20px;
  font-size: 0;
  transition: all 0.4s ease;
  border-radius: 12px;
}

.results-carousel .item:hover {
  transform: scale(1.01);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.results-carousel .item img {
  transition: transform 0.4s ease;
  border-radius: 8px;
}

.results-carousel .item:hover img {
  transform: scale(1.02);
}

/* Modern section transitions */
.section {
  transition: opacity 0.6s ease;
}

/* Enhanced hero section */
.hero {
  position: relative;
  color: white !important;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 0;
  transition: background-color 0.5s ease;
}

.hero:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
}

.hero .hero-body {
  position: relative;
  z-index: 1;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Enhanced modal interactions */
.modal {
  transition: all 0.3s ease;
}

.modal-content {
  transition: transform 0.3s ease;
}

.modal.is-active .modal-content {
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Modern navigation dots */
.slider-pagination .slider-page {
  background: #000000;
  transition: all 0.3s ease;
  transform: scale(1);
}

.slider-pagination .slider-page:hover {
  transform: scale(1.2);
  background: #333;
}

.slider-pagination .slider-page.is-active {
  transform: scale(1.3);
  background: #000;
}

/* Enhanced content sections - no movement */
.content p {
  transition: opacity 0.3s ease;
}

.content p:hover {
  opacity: 0.9;
}

/* Modern image interactions - subtle */
img {
  transition: all 0.3s ease;
}

img:hover {
  transform: scale(1.01);
}

/* Enhanced footer */
.footer {
  transition: all 0.3s ease;
}

.footer:hover {
  background-color: #f5f5f5;
}

/* Smooth transitions for all interactive elements */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Modern scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.footer .icon-link {
    font-size: 25px;
    color: #000;
}

.link-block a {
    margin-top: 5px;
    margin-bottom: 5px;
}

.dnerf {
  font-variant: small-caps;
}


.teaser .hero-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.teaser {
  font-family: 'Google Sans', sans-serif;
}


.publication-title {
}

.publication-banner {
  max-height: parent;

}

.publication-banner video {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  object-fit: fit;
}

.publication-header .hero-body {
}

.publication-title {
    font-family: 'Google Sans', sans-serif;
}

.publication-authors {
    font-family: 'Google Sans', sans-serif;
}

.publication-venue {
    color: #555;
    width: fit-content;
    font-weight: bold;
}

.publication-awards {
    color: #ff3860;
    width: fit-content;
    font-weight: bolder;
}

.publication-authors {
}

.publication-authors a {
   color: hsl(204, 86%, 53%) !important;
}

.publication-authors a:hover {
    text-decoration: underline;
}

.author-block {
  display: inline-block;
}

.publication-banner img {
}

.publication-authors {
  /*color: #4286f4;*/
}

.publication-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;

    overflow: hidden;
    border-radius: 10px !important;
}

.publication-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.publication-body img {
}

.results-carousel {
  overflow: hidden;
}

.results-carousel .item {
  margin: 5px;
  overflow: hidden;
  padding: 20px;
  font-size: 0;
}

.results-carousel video {
  margin: 0;
}

.slider-pagination .slider-page {
  background: #000000;
}

.eql-cntrb { 
  font-size: smaller;
}



