/* CALLOUT */
.bd-callout { padding:1.25rem; margin-top:1.25rem; margin-bottom:1.25rem; border:1px solid #e9ecef; border-left-width:.25rem; border-radius:.25rem }
.bd-callout h4 { margin-bottom: 1.25rem }
.bd-callout p:last-child { margin-bottom:0 }
.bd-callout code { border-radius:.25rem }
.bd-callout+.bd-callout { margin-top:-.25rem }
.bd-callout-info { border-left-color:#5bc0de }
.bd-callout-warning { border-left-color:#f0ad4e }
.bd-callout-danger { border-left-color:#d9534f }


/* GENERAL GRAPHIC */
/* General fonts and colors */
:root {
  --background-color: #d6edf9;
  --title-color: black;
  --border-color: #d6edf9;
  --container-color: white;
  --par-title-color: #043160;

  --body-font: 'Trebuchet MS', sans-serif;

  --font-regular: 400;
  --font-medium: 600;
  --font-semi-bold: 700;

  --normal-font-size: 1rem;
  --h2-font-size: 1.25rem;
}

/* Global font */
* {
  font-family: var(--body-font) !important;
}

body {
  padding-top: 0px;
  background-color: var(--background-color) !important;
}

h3{
  font-size: 1rem;
  color:  var(--par-title-color);
}

/* NAVBAR */
.navbar {
  background-color: var(--container-color) !important; 
  box-shadow: 0px 4px 3px #31356cc2;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease; 
}

/* Nav links */
.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--title-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  text-decoration: none;
  padding: 8px 12px;
  transition: color 0.3s ease;
}

/* Hover on text */
.nav-link:hover,
.nav-link:focus {
  color: #043160;
  text-shadow: rgba(202, 244, 255, 0.613);
  outline: none;
}

/* Icons */
.nav-icon {
  width: 20px;
  height: 20px;
  filter: none;
  transition: filter 0.3s ease;
}

/* Hover on icons */
.nav-link:hover .nav-icon,
.nav-link:focus .nav-icon {
  filter: brightness(0.7);
}

/* Link Awards con effetto shimmer */
.awards-shimmer-link {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  color: transparent;
  background: linear-gradient(
      90deg,
      #ffc800 0%,
      #ffdc4e 20%,
      #ffed8a 40%,
      #ffed4e 60%,
      #ffd700 80%,
      #ffcc00 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: awards-shimmer 3s linear infinite;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Animazione shimmer */
@keyframes awards-shimmer {
  0% {
      background-position: 200% center;
  }
  100% {
      background-position: -200% center;
  }
}

/* Container stelle */
.awards-shimmer-link .stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Stelle appaiono al hover */
.awards-shimmer-link:hover .stars {
  opacity: 1;
}

/* Singole stelle */
.awards-shimmer-link .star {
  position: absolute;
  font-size: 1rem;
  animation: star-float 2s ease-in-out infinite;
}

.awards-shimmer-link .star:nth-child(1) {
  top: -8px;
  left: 10%;
  animation-delay: 0s;
}

.awards-shimmer-link .star:nth-child(2) {
  top: -5px;
  right: 10%;
  animation-delay: 0.3s;
}

.awards-shimmer-link .star:nth-child(3) {
  bottom: -8px;
  left: 15%;
  animation-delay: 0.6s;
}

.awards-shimmer-link .star:nth-child(4) {
  bottom: -5px;
  right: 15%;
  animation-delay: 0.9s;
}

@keyframes star-float {
  0%, 100% {
      opacity: 0;
      transform: translateY(0) scale(0.5);
  }
  50% {
      opacity: 1;
      transform: translateY(-10px) scale(1);
  }
}

/* Glow al hover */
.awards-shimmer-link:hover {
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
  transform: scale(1.05);
}


/* Dropdown menu */
.dropdown-menu {
  background-color: var(--container-color); /* bianco */
  color: var(--title-color);
  min-width: 200px;
  padding: 1rem 0;
}

/* Item in the dropdown menu */
.dropdown-menu .dropdown-item {
  color: var(--title-color);
  font-weight: var(--font-regular);
  font-size: var(--normal-font-size);
  padding: 0.5rem 1.5rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover on dropdown items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #cce5ff;
  color: #2f3c56;
  outline: none;
}

/* Dropdown header */
.dropdown-header {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--h2-font-size);
  padding: 0.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

/* Open dropdown when passing with mouse */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* evita salto */
  opacity: 1;
  visibility: visible;
}

.nav-icon-team {
  height: 45px;
  width: auto;
  object-fit: contain;
}


/* BACK TO TOP BUTTON */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 0px;
  width: 140px;
  height: 140px;
  display: flex;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 10px;
}
 
.back-to-top.visible {
  opacity: 1;
  background: transparent;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top-icon {
  width: 140px;
  height: auto;
  background: transparent;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.back-to-top:hover .back-to-top-icon {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .back-to-top {
    width: 120px;
    height: 120px;
    bottom: 25px;
    right: 25px;
    gap: 3px;
  }

  .back-to-top-icon {
    width: 120px;
  }

  .back-to-top-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .back-to-top {
    width: 100px;
    height: 100px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top-icon {
    width: 100px;
  }

  .back-to-top-text {
    font-size: 0.7rem;
  }
}

/* MAIN CONTAINER */
.main-container {
  position: relative;
  z-index: 10;
  background: var(--background-color) !important;
  margin-top: 0;
  padding-top: 60px;
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* Sidebar Menu */
.sidebar {
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  background: var(--container-color) !important;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  height: fit-content;
}

.sidebar h2 {
  color: #063971;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.sidebar-nav {
  list-style: none;
}

.menu-item {
  margin-bottom: 8px;
}

.menu-item a {
  display: block;
  padding: 12px 16px;
  color: #2f3c56;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: small;
  position: relative;
}

.menu-item a:hover {
  background-color: #d4edda;
  color: #0e114a;
  transform: translateX(5px);
}

.menu-item a.active {
  background-color: #063971;
  color: white;
  font-weight: 600;
  border-left: 4px solid #042f5d;
}

.menu-item a.active::before {
  display: none;
}

/* Sottoparagrafi */
.submenu {
  list-style: none;
  margin-left: 16px;
  margin-top: 4px;
  padding-left: 12px;
  border-left: 2px solid #e0e0e0;
}

.submenu-item {
  margin-bottom: 4px;
}

.submenu-item a {
  padding: 8px 12px;
  font-size: 0.875rem;
  font-weight: 400;
  color: #5a6c7d;
}

.submenu-item a:hover {
  background-color: #e8f5e9;
  color: #063971;
  transform: translateX(3px);
}

.submenu-item a.active {
  background-color: #e3f2fd;
  color: #063971;
  border-left: 3px solid #063971;
  font-weight: 500;
}

.submenu-item a::before {
  content: "•";
  margin-right: 8px;
  color: #9e9e9e;
}

.submenu-item a.active::before {
  color: #063971;
}

h2[id], div[id] {
  scroll-margin-top: 80px;
}

/*Page menu */
.page-menu .nav-link.active {
  background-color: #043160;
  color: white !important;
  font-weight: 700;
  border-radius: 8px;
}

.page-menu .nav-link:hover {
  background-color: #d4f4dd;
  color: #2d3748;
  border-radius: 8px;
}

/* Page content */ 
.content {
  flex: 4;
  flex-grow: 1;
  flex-shrink: 1;
  background: var(--container-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
}

.custom-hr {
  border: none;           
  height: 2px;               
  background-color: #1e5289;            
}

.col h2 {
  color: var(--par-title-color);
  font-weight: 700;
}

.footer {
    background: linear-gradient(to bottom, #d6edf9 0%, #9aaec3 50%, #3a4a6b 100%);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-logo:hover {
  transform: scale(1.2);
}

.footer-contacts {
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-contacts h3 {
    grid-column: 1 / -1; 
    margin-bottom: 1rem;
}

.contact-info {
    text-align: left; 
}

h3 {
    color: black;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 0.8rem;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 2px solid #042f5d;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(45deg, #042f5d, #032a53);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.social-icon:hover::before {
    width: 100%;
    height: 100%;
}

.social-icon img.swap-image {
    width: 40px;
    height: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px #042f5d;
    border-color: #e0eff5;
}

.social-icon:hover .swap-image {
    transform: scale(1.1);
}

.social-icon.instagram:hover .swap-image {
    content: url("https://static.igem.wiki/teams/5716/footer/insta-white.webp");
}

.social-icon.linkedin:hover .swap-image {
    content: url("https://static.igem.wiki/teams/5716/footer/linkedin-white.webp");
}

.social-icon:active {
    transform: translateY(-2px);
}

/* Animazione di caricamento */
.social-icon {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.social-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.social-icon:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background:transparent;
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 15px
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

.card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  will-change: transform;
}

.card-image {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-link {
  position: absolute;
  inset: 0;
  text-decoration: none;
  z-index: 2;
}


.footer-license {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(135, 206, 235, 0.3);
}

.footer-license p {
    color: #e0eff5;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-license a {
    color: #c2e7f7;
    text-decoration: none;
    font-weight: 500;
}

.footer-license a:hover {
    text-decoration: underline;
}

/* HERO ANIMATION SECTION */
.scroll-container {
  height: 100vh;
}

.scroll-container.compressed {
    height: 25vh !important;
}

.hero-container {
  width: 100vw;
  height: 100vh;
  background-color: #063971;
  background-image: url('https://static.igem.wiki/teams/5716/home/network.webp');
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  position: relative;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 999;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Compressed */
.hero-container.compressed {
  margin-top: 71px;
  height: 25vh; 
  background-color: #063971;
  background-image: url('https://static.igem.wiki/teams/5716/home/network.webp');
  background-blend-mode: multiply;
  z-index: 998;
  position: relative;
  opacity: 1;
  display: block;
}

/* Hides elements */
.hero-container.compressed .scroll-indicator {
  opacity: 0;
  pointer-events: none;
}

.hero-container.compressed .main-title{
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem; 
  opacity:1;
  max-width: 40%;
}

.hero-container.compressed .hero-image{
  height: 160px; 
  right: 51.5px;
  top: 50%;
  transform: translate(0, -50%);
}

/* Compressing animations */
@keyframes backgroundMove {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 0%;
        transform: rotate(0deg);
    }
    33% { 
        background-position: -20% 20%, 120% 80%, 30% 70%, 0% 0%;
        transform: rotate(0.5deg);
    }
    66% { 
        background-position: 20% -20%, 80% 120%, 70% 30%, 0% 0%;
        transform: rotate(-0.5deg);
    }
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(-40px); }
}

/* Hero image */
.hero-image {
    position: absolute;
    width: auto;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: 10;
}

.hero-image img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.main-title {
    position: absolute;
    top: 40%;
    left: 51.5px;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 3px;
    max-width: 40%;
    line-height: 1.1;
}

.main-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-message {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.8;
        transform: translateY(0);
    }
    50% { 
        opacity: 1;
        transform: translateY(-3px);
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin: 10px auto;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: #cce5ff;
    transform: rotate(-45deg) scale(1.1);
}

.scroll-indicator:hover .scroll-message {
    color: #cce5ff;
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0) rotate(-45deg); 
    }
    40% { 
        transform: translateY(-10px) rotate(-45deg); 
    }
    60% { 
        transform: translateY(-5px) rotate(-45deg); 
    }
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
  .main-container {
    flex-direction: column;
    gap: 2rem;
  }

  .content {
    padding: 2rem;
  }

  .footer-logo img {
    max-width: 130px;
  }

  .sidebar {
    position: static;
    top: auto;
    width: auto; 
    flex-basis: auto; 
    flex-grow: 1; 
  }
}

@media (min-width: 768px) {
  .main-container {
      flex-direction: row; 
      margin-top: 80px; 
  }

  .sidebar {
      position: sticky;
      top: 70px;    
    }
}

@media (max-width: 768px) {
  .page-header {
    padding: 2rem 0;
    margin-bottom: 3rem;
  }

  .page-title {
    font-size: 2.5rem; 
  }

  .page-lead {
    font-size: 1.25rem; 
  }

  .main-container {
    margin-top: 60px;
  }

  .content {
    padding: 1.5rem; 
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
      text-align: center;
      align-items: center;
  }

  .footer-logo img {
      max-width: 120px;
  }

  .footer-contacts {
      text-align: center;
  }

  .social-icons {
      gap: 10px;
      justify-content: center; 
  }

  .social-icon {
      width: 50px; 
      height: 50px;
  }

  .social-icon img {
      width: 25px;
      height: 25px;
  }

  .card {
      flex: 0 0 calc(50% - 10px);
  }

  /* Hero responsive - EXTENDED VERSION */
  .main-title {
      font-size: 2.5rem;
      max-width: 80%;
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
  }
  
  .hero-image {
      height: 40vh;
      max-height: 300px;
      max-width: 95vw;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }
  
  .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }
  
  /* Hero responsive - COMPRESSED VERSION */
  .hero-container.compressed{
      height: 15vh;
      margin-top: 71px;
  }
  
  .hero-container.compressed .main-title {
      font-size: 1.6rem; 
      max-width: 55%;
      left: 20px;
      transform: translateY(-50%);
      text-align: left;
  }
  
  .hero-container.compressed .hero-image {
      height: 70px;
      max-width: 45%;
      right: 10px;
      left: auto;
      transform: translate(0, -50%);
  }

  /* Scroll indicator responsive */
  .scroll-message {
      font-size: 0.8rem;
      margin-bottom: 8px;
  }
  
  .scroll-arrow {
      width: 25px;
      height: 25px;
      border-width: 2px;
  }
  
  .scroll-indicator {
      bottom: 40px;
  }
}

@media (max-width: 480px) {  
  .page-title {
      font-size: 2rem; 
  }

  .page-lead {
      font-size: 1rem; 
  }

  .content {
      padding: 1rem; 
  }

  .social-icon {
      width: 45px; 
      height: 45px;
  }

  .social-icon img.swap-image {
      width: 20px; 
      height: 20px;
  }

  .card {
    flex: 0 0 100%; 
  }

  .carousel-container {
      padding: 15px;
  }

  /* Hero responsive small screens - EXTENDED VERSION */
  .main-title {
      font-size: 1.8rem;
      max-width: 90%;
      left: 50%;
      top: 25%;
      transform: translate(-50%, -50%);
      letter-spacing: 1px;
      text-align: center;
  }
  
  .hero-image {
      height: 35vh;
      max-height: 250px;
      max-width: 95vw;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
  }
  
  .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }
  
  .hero-container {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
    background-color: #063971;
    background-image: url('https://static.igem.wiki/teams/5716/home/network.webp');
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Hero responsive small screens - COMPRESSED VERSION */
  .hero-container.compressed {
    margin-top: 71px;
    height: 12vh;
    position: sticky;
    top: 0;
    z-index: 998;
    opacity: 1;
    display: block;
  }
  
  .hero-container.compressed .main-title {
      font-size: 1.3rem; 
      max-width: 55%;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      text-align: left;
  }
  
  .hero-container.compressed .hero-image {
      height: 60px;
      max-width: 40%;
      right: 10px;
      left: auto;
      top: 50%;
      transform: translate(0, -50%);
  }

  .main-container {
    margin-top: 40px;
  }

  /* Scroll indicator responsive small screens */
  .scroll-message {
      font-size: 0.75rem;
      margin-bottom: 6px;
  }
  
  .scroll-arrow {
      width: 22px;
      height: 22px;
  }
  
  .scroll-indicator {
      bottom: 35px;
  }
}