/* ============================================
   Logo Tab Section CSS
   ============================================ */

.logo-tab-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  background-color: #ffffff;
  padding: 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
}

.homepage-triangle-svg {
  width: 80px;
  height: auto;
  opacity: 0;
  transform: translateY(50px) scaleY(1.2);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.logo-tab-section.visible .homepage-triangle-svg {
  opacity: 1;
  transform: translateY(0) scaleY(1);
  width: 400px;
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablet */
@media (max-width: 768px) {
  .logo-tab-section {
    height: 120px;
    padding: 30px 20px;
  }
  
  .homepage-triangle-svg {
    width: 70px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .logo-tab-section {
    height: 100px;
    padding: 25px 15px;
  }
  
  .homepage-triangle-svg {
    width: 60px;
  }
}

