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

@font-face {
    font-family: 'Soligant';
    src: url('../font/Soligant.ttf') format('truetype'),
        url('../font/Soligant.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth;
}

body {
 
    background-color: #141414;
     color: #ffffff;
    font-family: 'Host Grotesk', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* Hero Section */

.UnicornStudio {
    position: fixed;
    top: 0;
    left: 0;
  width: 100%;   
    height: 100%;  
    z-index: -1;
}
.hideUnicorn{
    width: 100%;
    height: 250px;
    opacity:1;
    position: fixed;
    /* bottom:0; */
 bottom: -50px;
    left:50%;
    transform: translateX(-50%);
    background-color:#141414;
     /* background-image: url('/img/jojo-2HvOckcQaUw-unsplash.png'); */
    z-index: -1;
}
.hero { 
   padding: 60px 40px 80px;
   padding-top: 8rem;
}

.hero-container {
    max-width: 1152px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(28px, 5vw, 64px);
    line-height: 1.2;
    max-width: 750px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-top:14%;
}
.hero-title span{
    font-family: 'Soligant', serif;
    font-size: clamp(32px, 5.5vw, 90px);
}
.hero-container p{
     max-width: 700px;
     margin-top: 2rem;
}
/* Sections */
.section-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 0rem;
}

.section-label {
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.font-soligant {
    font-family: 'Soligant', serif;
}
/* Why Kaue Section */
.why-kaue {
    margin-top: 8%;
    padding: 5rem 1.5rem;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    background-color: #141414; 
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.video-wrapper {
    aspect-ratio: 16/9;
    background: linear-gradient(to bottom right, rgba(72, 153, 137, 0.2), rgba(64, 121, 146, 0.2));
    border-radius: 0.125rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subsection-title {
    
    font-weight: normal;
    margin-top: 4rem;
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.4;
}

.content-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.7;
    padding-top: 2rem;
    font-size: clamp(18px, 2.5vw, 28px);
    max-width: 800px;
    font-size: clamp(16px, 2vw, 22px);
     font-weight: 400;
    line-height: 1.5;
}

/* techs Section */
.techs {
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.techs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.tech-item {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Team Section */
.team {
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.team-image {
    aspect-ratio: 4/3;
    border-radius: 0.125rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
     opacity: 0;
  transition: opacity 3s ease-in-out; 
}

.team-image img.loaded {
  opacity: 1; 
}

.team-name {
    
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size:  clamp(22px, 3vw,32px);
    font-weight: bold; 
}

.team-role {
    font-size: 0.875rem;
    color: #9ca3af;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.team-bio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
     font-size: clamp(16px, 2vw, 22px);
     font-weight: 400;
}

/* Location Section */
.location {
    padding: 8rem 1.5rem;
    background-color: #f3f4f3;
    color: #141414;
}

.location-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.location-title {
    font-family: 'Merriweather', serif;
    font-weight: 900;
    font-size: 6rem;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.section-label, .content-right, .subsection-title, .section-label, .tech-item, .subsection-title, .team-bio, .team-name {
  opacity: 0;
  transition: opacity 1s ease-out, transform 0.5s ease-out;
}


 .section-label.visible, .content-right.visible, .subsection.visible, .section-label.visible, .tech-item.visible, .subsection-title.visible, .team-bio.visible, .team-name.visible  {
  opacity: 1;
  transform: translateY(0); 
}


/* softs Section */
.softs {
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.softs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.soft-item {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* Footer */
.footer {
    background-color: #25242a60;
   color: #ffffff;
    padding: 80px 40px 40px;
     backdrop-filter: blur(5.2px);
    -webkit-backdrop-filter: blur(5.2px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    /* border-top: 1px solid rgba(230, 230, 230, 0.33); */
}

.footer-content {
   max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 80px;
    transition: opacity 0.3s ease;
}

.footer-tagline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tagline-text {
    font-size: clamp(18px, 2.6vw, 28px);
    font-weight: bold;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.tagline-text a{
    text-decoration: none;
}
.tagline-text a:hover{
    font-family: 'Soligant', serif;
    font-size: clamp(22px, 2.8vw, 30px);
}
 .footer-nav {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
   grid-template-columns: 120px 200px;
    gap: 5px 60px;
    align-content: start;
    justify-content: end;
    padding-right: 5%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out 0.2s, transform 0.5s ease-out 0.2s;
} 

.footer-content.visible .tagline-text,
.footer-content.visible .footer-nav {
    opacity: 1;
    transform: translateY(0);
}
.footer-link {

    text-decoration: none;
     font-size: clamp(16px, 1.8vw, 18px);
    font-weight: bold;
    transition: all 0.3s ease;
    line-height: 1.8;
    transform-origin: left center;
    text-align: left;
    width: 100%;
    display: block;  
    display: flex;
    align-items: center;
}
.footer-link img {
  max-width: 1.2rem;
   max-height: 1.2rem;
margin-left: 0.5rem;
  
}
.footer-link:hover {
    opacity: 0.6;
    font-family: 'Soligant', serif;
    font-size: clamp(16px, 18vw, 18px);   
}
/* 
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-top: 40px;
    border-top: 2px solid #060606;
}

.footer-left,
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-right {
    align-items: flex-end;
}

.footer-bottom p,
.footer-bottom a {
    font-size: clamp(12px, 1.5vw, 18px);
    font-weight: bold;
} */

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    
}

.logo-text {
   font-size: clamp(120px, 20vw, 230px);
    font-weight: bold;
    color: rgba(158, 157, 157, 0.15);
    /* letter-spacing: -10px; */
    line-height: 1;
    visibility: hidden; 
    display: inline-block; 
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
   
}
.logo-text .char-wrapper {
    display: inline-block;
    overflow: hidden; 
    /* line-height: 1.2;  */
}
.logo-text .letter {
    display: inline-block;
    opacity: 0; 
    transform: translateY(100%); 
     line-height: 1;
}
.logo-text.animate .letter {
    animation: unfold-down 0.8s ease-out forwards;
}


@keyframes unfold-down {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo-text .font-soligant {
    font-family: 'Soligant', serif;
    font-size: clamp(120px, 20vw, 260px);
  display: contents;
}



/* Footer 
.footer {
    padding: 5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-link {
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-address {
    text-align: left;
}

.address-line {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
}

.social-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.social-link {
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

*/

/* Responsive Design */
@media (min-width: 768px) {
   

    .location-title {
        font-size: 7rem;
    }

    .techs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem 0;
    }

    .softs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 2rem;
    }
/* 
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
 */
.hideUnicorn{
    position: fixed;
    bottom:0;
     height: 80px;
   
}
}

@media (min-width: 1024px) {
   

    

    .location-title {
        font-size: 8rem;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-address {
        text-align: right;
    } 
        */

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

@media (max-width: 767px) {
    .hero { 
   padding: 60px 16px 80px;
   padding-top: 8rem;
 
}
    .hero-title {
        font-size: 2rem;
        margin-top:3rem;
         
    }
/* .hero-container p{
     max-width: 700px;
} */
    .location-title {
        font-size: 3rem;
    }

    .subsection-title {
        font-size: 1.75rem;
    }

      .footer {
        padding: 60px 20px 40px;

    }
.logo-text {
    letter-spacing: 0px;
 font-size: clamp(20px, 19vw, 200px);
 
}
.logo-text .font-soligant {
    letter-spacing: 0px;
 font-size: clamp(20px, 15.5vw, 180px);
}
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto 0px;
    }
    .footer-logo {
    max-width: 1400px;
    margin: 0 auto 0px;
    }
.team-member-nofone {
    display: none;  
}
}


@media (max-width: 1024px) {
   
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .footer-right {
        align-items: flex-start;
    }

    .logo-text {
    letter-spacing: 0px;
 font-size: clamp(20px, 16vw, 180px);
}
.logo-text .font-soligant {
    letter-spacing: 0px;
 font-size: clamp(20px, 18vw, 180px);
}
}