@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('../fonts/Soligant.ttf') format('truetype'),
        url('../fonts/Soligant.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #141414;
    color: #ffffff;
    font-family: 'Host Grotesk', sans-serif;
    /* font-family: 'Custom Bold', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 40px 80px;
   
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-background img {
          height: 200%;
          width: auto;
          min-width: 100%;
          position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
          object-fit: cover;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    top:0;
}

.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);
   
}
.hero-title span {
    color: #ffd503ff;
    font-family: 'Soligant', serif;
    font-size: clamp(32px, 6vw, 68px);
}



/* Service Description */
.service-description {
    padding: 120px 40px;
    background-color: #060606;
}

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

.large-text {
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.4;
    margin-bottom: 60px;
    max-width: 800px;
}

.large-text:last-child {
    margin-bottom: 0;
}

/* project Profiles */
.projects {
    padding: 80px 0;
    background-color: #060606;
}

.project-profile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.project-profile.reverse {
    grid-template-columns: 1fr 1fr;
}

.project-image-wrapper {
    width: 100%;
}
.project-image-wrapper a:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.project-image-wrapper.left {
    grid-column: 1;
}

.project-image-wrapper.right {
    grid-column: 2;
    grid-row: 1;
}
.project-image-wrapper img {
  opacity: 0;
  transition: opacity 1s ease-in-out; 
}

.project-image-wrapper img.loaded {
  opacity: 1; 
}

.project-profile.reverse .project-image-wrapper.right {
    grid-column: 2;
}

.project-profile.reverse .project-info.left {
    grid-column: 1;
    grid-row: 1;
}

.project-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: auto 1198 / 1426;

}

.project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
}

.project-info.right {
    grid-column: 2;
}

.project-info.left {
    grid-column: 1;
}

.project-bio {
    font-size: clamp(16px, 2vw, 22px);
     font-weight: 400;
    line-height: 1.5;
    
   margin-bottom: 20px;
     
}

.project-name {
    font-size:  clamp(22px, 3vw,32px);
    font-weight: bold;
    margin-top: 20px; 
}


.large-text, .project-bio, .project-name, .tagline-text, .footer-nav{
  opacity: 0;
  transition: opacity 1s ease-out, transform 0.5s ease-out;
}


 .large-text.visible, .project-bio.visible, .project-name.visible, .tagline-text.visible, .footer-nav.visible  {
  opacity: 1;
  transform: translateY(0); 
}


/* Footer */
.footer {

 background-color: #25242A;
    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;
}

.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;
}
.tagline-text a{
    color: #ffffff;
    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-nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-link {
    color: #ffffff;
    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;
    max-width: 1320px;
    margin: 0 auto;
}

.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;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .project-profile,
    .project-profile.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .project-image-wrapper.left,
    .project-image-wrapper.right,
    .project-info.left,
    .project-info.right {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .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;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 60px;
      
    }

    .service-description {
        padding: 80px 20px;
    }
    .projects {
    padding: 0px 0;
}

    .large-text {
        margin-bottom: 40px;
    }

    .project-profile {
        padding: 60px 20px;
    }

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

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

/* .footer-bottom {
    max-width: 1400px;
    margin: 0 auto ;
    } */
    .footer-logo {
    max-width: 1400px;
    margin: 0px auto ;
    
    }
.team-member-nofone {
    display: none;  
}
}
