@font-face {
    font-family: 'ManropeBold';
    src: url('assets/fonts/Manrope/Manrope-Bold.ttf');
}

@font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/Manrope/Manrope-Regular.ttf');
}

@font-face {
    font-family: 'ManropeExtraBold';
    src: url('assets/fonts/Manrope/Manrope-ExtraBold.ttf');
}

@font-face {
    font-family: 'Seasons';
    src: url('assets/fonts/Seasons/Fontspring-DEMO-theseasons-reg.otf');
}

@font-face {
    font-family: 'Seasons2';
    src: url('assets/fonts/Seasons/Fontspring-DEMO-theseasons-bd.otf');
}

@font-face {
    font-family: 'LinLibertine-aS';
    src: url('assets/fonts/linux_libertine/LinLibertine_aS.ttf');
}

* {
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

::-webkit-scrollbar { 
    display: none; 
}

body {
    font-family: 'ManropeExtraBold', sans-serif;
    color: white;
    margin: 0;
    user-select: none;
    text-align: center;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: transparent;
    color: white;
}

.menu-button {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 101;
    font-size: 14px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease;
}


.examenreis-section {
  display: flex;
  flex-direction: column;
  height: 100vh;
  font-family: 'LinLibertine-aS';
  background-color: #111111;
  box-sizing: border-box;
}

.thumbnail-list {
  display: flex;
  overflow-x: auto;
  gap: 0.3rem;
  justify-content: flex-start;
  margin: 5rem 0 2rem;
  padding-bottom: 1rem;
  white-space: nowrap;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.thumbnail-list::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  flex: 0 0 auto;
  width: 80px;
  height: auto;
  margin-right: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.thumbnail.active,
.thumbnail-list img.active {
  opacity: 1;
}

.thumbnail-list img {
  height: 80px;
  margin-right: 8px;
  flex-shrink: 0;
  opacity: 0.3;
  transition: opacity 0.2s ease;
}

.content-row {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-bottom: 1rem;
  padding-left: 1rem; 
}

.main-photo-container {
  flex: 1.2;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  background: transparent;
}

.main-photo-container img {
  height: 30rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.text-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  max-width: 400px;
  padding-top: 0.2rem;
  flex: 1;
}

.text-block {
  min-height: 3rem;
  user-select: none;
  background: none !important;
  padding: 0 10px 0 0;
  box-shadow: none !important;
}

#title-text {
  font-size: 1.4rem;
  color: white;
  font-family: 'ManropeBold';
}

#subtitle-text {
  font-size: 1.2rem;
  color: #cccccc;
  font-family: 'Manrope';
}

@media (max-width: 1200px) {
    .main-photo-container img {
        height: 22rem;
    }

    #title-text {
        font-size: 1.2rem;
    }

    #subtitle-text {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .main-photo-container img {
        height: 20rem;
    }
    
    #title-text {
        font-size: 1.1rem;
    }

    #subtitle-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 700px) {
  .content-row {
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem 0;
  }

  .main-photo-container {
    justify-content: center;
    align-items: center;
    max-height: 20rem;
  }

  .main-photo-container img {
    height: 17rem;
  }

   .text-info {
    align-items: center;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .text-block {
    flex: 1;
    min-height: auto;
  }

   #title-text {
    font-size: 1rem;
    margin: 0;
  }

  #subtitle-text {
    font-size: 0.8rem;
    margin: 0rem 0 6rem 0;
  }
}

@media (max-width: 600px) {
    .main-photo-container img {
        height: 15rem;
    }
}

@media (max-width: 400px) {
    .main-photo-container img {
        height: 12rem;
    }
}