@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Host Grotesk", sans-serif;
}


/* Hide hero images until hero section is visible */
.hero.hide-hero-images .animated-icons,
.hero.hide-hero-images .animated-icon img {
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s;
}


.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    scale: 1;
    border-radius: 10%;
    filter: brightness(0.85) contrast(1.1) saturate(0.9) drop-shadow(0 0 5px rgba(255,255,255,0.1));
}

.hero h3 {
    font-size: 16em;
    margin-top: 90px;
    
    margin-bottom: 0px !important;
    transform: translateX(15px);
}



 .hero-header p {
    margin-bottom: 0px !important;
    margin-top: -50px; 
    font-size: 3.6rem;
    font-weight: 600;
    color: bisque;
    font-family: poppins, sans-serif;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100svh;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    color:  #e3e0d8 ;
}

.hero {
    flex-direction: column;
    transition: background-color 0.3s ease-in-out;
   
}

.hero-header {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    text-align: center;
    display: flex;
    flex-direction: column;
    
    will-change: transform, opacity;
}



.animated-icons {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    will-change: transform;
    z-index: 2;
}

.animated-icon {
    flex: 1;
    aspect-ratio: 1;
    will-change: transform;
}

.animated-text {
    position: relative;
    max-width: 1000px;
    text-align: center;
    color: #141414;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1;
    font-family: 'Rochester', sans-serif;
}

.text-segment {
    opacity: 0;
}

.placeholder-icon {
    margin-top: -10px;
    width: 60px;
    height: 60px;
    display: inline-block;
    vertical-align: middle;
    will-change: transform;
    visibility: hidden;
}

@media (max-width: 1000px) {
    .hero h3 {
        font-size: 1.1rem;
    }

    .hero-header {
        top: 45%;
        width: 100%;
    }

    .placeholder-icon {
        margin-top: -4px;
        width: 30px;
        height: 30px;
    }
}

.wrapper {
     width: 600px;
      height: 600px;
      position: static;
      transform: none;
      margin-right: 40px;
      margin-left: 70px;
      margin-top:60px;
}

.timeline-content {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    flex: 1;
    align-items: flex-start;
    justify-content: space-between;
}

.timeline-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    padding: 0 40px 0 80px;
    box-sizing: border-box;
}

.timeline-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 500px;
}




