

@font-face {
    font-family: 'PoppinsLight';
    src: url('/public/fonts/poppins/woff2/poppins-light.woff2') format('woff2'),
         url('/public/fonts/poppins/woff/Poppins-Light.woff') format('woff'),
         url('/public/fonts/poppins/ttf/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsRegular';
    src: url('/public/fonts/poppins/woff2/poppins-regular.woff2') format('woff2'),
         url('public/fonts/poppins/woff/Poppins-Regular.woff') format('woff'),
         url('public/fonts/poppins/ttf/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsMedium';
    src: url('/public/fonts/poppins/woff2/poppins-medium.woff2') format('woff2'),
         url('/public/fonts/poppins/woff/Poppins-Medium.woff') format('woff'),
         url('/public/fonts/poppins/ttf/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsSemibold';
    src: url('/public/fonts/poppins/woff2/poppins-semibold.woff2') format('woff2'),
         url('/public/fonts/poppins/woff/Poppins-SemiBold.woff') format('woff'),
         url('/public/fonts/poppins/ttf/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PoppinsBold';
    src: url('/public/fonts/poppins/woff2/poppins-bold.woff2') format('woff2'),
         url('/public/fonts/poppins/woff/Poppins-Bold.woff') format('woff'),
         url('/public/fonts/poppins/ttf/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PlayfairDisplay';
    src: url('/public/fonts/playfair/woff2/PlayfairDisplay-Bold.woff2') format('woff2'),
         url('/public/fonts/playfair/woff/PlayfairDisplay-Bold.woff') format('woff'),
         url('/public/fonts/playfair/ttf/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* GENERAL */

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

body{
    /* margin: clamp(25px, 3vw, 30px) clamp(20px, 5vw, 80px); */
    font-size: 16px;
    line-height: clamp(1.2, 1.5vw, 1.8);
    background-color: #FFFFFF;
    color: #0F0F0F;
    font-family: 'PoppinsLight'
}

.poppins-light{
    font-family: 'PoppinsLight';
}

.poppins-bold{
    font-family: 'PoppinsBold';
}

.poppins-semibold{
    font-family: 'PoppinsSemibold';
}

.playfair{
    font-family: 'PlayfairDisplay';
}

.line-spacing{
    letter-spacing: -5px;
    margin-right: 0.5em;
}

a{
    text-decoration: none;
    color: #0F0F0F;
}

ul{
    list-style: none;
}

.button {
    display: inline-block;
    padding: 5px 20px;
    border-radius: 20px;
    background: #0F0F0F;
    color: #FFFFFF;
    font-size: 14px;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease-in-out, scale 0.3s ease-in-out;
    z-index: 1; 

    &:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: #B92366;
        transition: width 0.3s ease-in-out;
        border-radius: 20px; 
        z-index: -1; 
    }

    &:hover {
        color: #FFFFFF;

        &:after {
            width: 100%;
        }
    }

    &:active {
        transform: scale(0.95);
    }
}

.section-title{
    font-family: 'PoppinsBold';
    font-size: 30px;
    line-height: 109%;
}

.section-title-number{
    font-family: 'PoppinsLight';
    font-size: 16px;
    padding-right: 10px;
}

/* ANIMATIONS */

/* cursor */

/* Default style */
.image-frame {
    cursor: none; /* Hide the default cursor */
    position: relative;
}

/* Custom cursor circle */
.custom-cursor {
    position: absolute;
    width: 90px; /* Diameter of the circle */
    height: 90px;
    border-radius: 50%;
    background-color: #b92366; /* Semi-transparent background */
    color: #0F0F0F;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'PoppinsBold';
    pointer-events: none; 
    z-index: 1000; 
    transition: opacity 0.3s ease;
    opacity: 0;
}

/* Show custom cursor on hover */
.image-frame:hover .custom-cursor {
    opacity: 1;
}

.reveal {
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, color 0.3s ease, background-color 0.3s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.spinning-letter-X{
    display: inline-block;
    transform-origin: center;
    animation: rotateX 2s infinite linear;
}

@keyframes rotateX {
    0% { transform: rotateX(0deg); }
    100% { transform: rotateX(360deg); }
}

.spinning-letter-Y{
    display: inline-block;
    transform-origin: center;
    animation: rotateY 2s infinite linear;
}

@keyframes rotateY {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.letter-to-stretch {
    display: inline-block; 
    transform-origin: right center;
    transition: transform 0.8s ease-in-out;
  }

  .letter-to-stretch.letterstretching-animate {
    animation: stretchLetter 1s ease-in-out forwards;
  }

  @keyframes stretchLetter {
    0% { transform: scaleX(1); }
    50% { transform: scaleX(2); }
    100% { transform: scaleX(1); }
  }


/* HEADER */

header { 
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.3s ease-in-out;
    padding: 20px clamp(20px, 5vw, 80px) 10px clamp(20px, 5vw, 80px);
    z-index: 1000;
    will-change: transform;
}

.hidden-header {
    transform: translateY(-100%);
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-version-menu{
    display: none;
}

.header-logo{
    max-width: 100%;
    height: auto;
    max-height: 70px;
    flex-grow: 1;
}

nav a{
    flex-grow: 1;
}

.header-num-section{
    font-size: 10px;
    letter-spacing: 0.8px;
    margin-right: 3px;
}

.header-nav-links{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.header-nav-links li{
    margin: 0 0.5rem;
    letter-spacing: 1.28px;
    list-style: none;
}

.header-nav-links li a{
    transition: color 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    color: #0F0F0F;
    text-decoration: none;
}

.header-nav-links li a::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 1.2px; 
    border-radius: 10px;
    background-color: #0F0F0F;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.header-nav-links li a:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-nav-buttons{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

.button-header{
    font-size: 12px;
}

/* HERO */

.hero-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0F0F0F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 1000;
    font-family: 'PoppinsLight';
}

.hero-overlay-text{
    font-family: 'PlayfairDisplay';
}

.hero-overlay-text > .hero-copyright{
    padding: 0 5px;
    font-size: 1rem;
    vertical-align: top;
}

#hero {
    margin: clamp(25px, 3vw, 30px) clamp(20px, 5vw, 80px);
    margin-top: 150px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    grid-template-rows: auto 3.2em auto auto;
}

.hero-title {
    grid-area: 1/1/2/13;
    font-size: clamp(70px, 15vw, 80px);
    line-height: 130%;
    position: relative;
}

.hero-title-mask {
    display: block;
    position: relative;
    overflow: hidden;
    height: 200px; /* Adjust this value based on your font size */
    width: 100%; /* Take up the full width of its container */
}

.hero-title-mask span {
    position: absolute; /*  Important for animation */
    font-size: clamp(70px, 15vw, 80px);
    line-height: 130%;  /* Match hero-title line-height */
}

.hero-text-img {
    border-radius: 20px;
    width: 200px;
    vertical-align: text-top;
    margin: 8px 15px 0 15px;
}

/* Additional styles for the "line" class from the original GSAP example */
.line {
    width: 100%; 
    height: 110px; 
    position: relative;
    overflow: hidden;
}

.hero-desc{
    font-family: 'PlayfairDisplay';
    font-size: 24px;
    grid-area: 3/7/4/12;
}

.hero-copyright{
    font-size: 15px;
    vertical-align: top;
}

.hero-desc-title{
    font-family: 'PoppinsRegular';
    font-size: 22px;
}

.hero-desc-txt{
    margin-top: 16px;
    font-family: 'PoppinsLight';
    font-size: 16px;
    line-height: 121%; 
    
}

.scroll-down-hero{
    grid-area: 4/1/5/13;
    margin: 15px auto;
    width: 100px;
}

/* FEATURED WORK */

.fw-button-mobile{
        display: none;
    }

.featured-work-section-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-work-section{
    margin: 80px clamp(20px, 5vw, 80px);
}

.featured-work{
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch; /* Ensures all items stretch to equal height */
    gap: 20px;
}

.featured-work-item{
    flex: 1 1 calc(33.333% - 20px); /* Ensures 3 columns with spacing */
    max-width: calc(33.333% - 20px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.featured-work-item {
    min-height: 100%;
}

.fw-video-container {
    border-radius: 20px;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 60vh; 
    flex: 0 0 auto; 
    display: flex;
  }

  .fw-preview-img, .fw-video-hover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease-in-out;
}

  .fw-video-hover {
    opacity: 0;
  }

  .fw-item-company{
    font-size: 24px;
    line-height: 180%;
    margin-top: 10px;
  }

  .fw-item-company-desc{
    font-size: 16px;
    font-family: 'PoppinsRegular';
  }

  .fw-item-service {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-start;
    align-items: center;
}

.fw-item-service-item {
    padding: 3px 15px;
    border-radius: 20px;
    border: 0.4px solid #0F0F0F;
    font-family: 'PoppinsLight';
    font-size: 11px;
    white-space: nowrap;
}

/* HOMEPAGE ABOUT */

.hp-about{
    background-image: url('public/images/Homepage/about/Silly_Gradient_Web.webp');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;  
    background-attachment: fixed;
    width: 100%;
    height: 90vh;
    min-height: 90vh;
    text-align: center;
}

.hp-about-title{
    font-size: 80px;
    line-height: 114.548%;
    padding-top: 180px;
}

.hp-about h2 {
    width: 52%;
    margin: 3vh auto 3vh auto;
    text-align: justify;
    font-size: 20px;
}

/* SERVICES */

#services {
    padding: clamp(60px, 5vw, 90px) clamp(20px, 5vw, 80px);
    height: 100%;
    min-height: 90vh;
  }

  .services-flex {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
  }

  .services-img-container {
    width: 35%;
    padding: 10px;
  }

  .services-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
  }

  .services-txt-container {
    width: 65%;
    padding: 10px;
    padding-left: 50px;
  }

  .service-item {
    font-family: "PoppinsBold";
    letter-spacing: 1.6px;
    font-size: 42px;
    line-height: 56px;
    color: rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  }

  /* Desktop hover effect */
  @media (hover: hover) {
    .service-item:hover {
      transform: translateX(60px);
      color: #0f0f0f;
    }
  }

  /* Active state styles (for mobile/tablet) */
  .service-item.active {
    transform: translateX(30px);
    color: #0f0f0f;
  }


    /* Homepage Gallery Grid */


    .hp-gallery{
        padding: clamp(60px, 5vw, 90px) clamp(20px, 5vw, 80px);
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(7, 1fr);
        height: 100vh;
    }

    .hp-gallery img{
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 18px;
    }

    .g-01{
        grid-area: 1/1/4/4;
    }

    .g-02{
        grid-area: 1/4/4/9;
    }

    .g-03{
        grid-area: 1/9/3/13;
    }

    .g-04{
        grid-area: 4/1/6/5;
    }

    .g-05{
        grid-area: 4/5/6/9;
    }

    .g-06{
        grid-area: 3/9/6/13;
    }


    /* footer */

    footer{
        height: auto;
        margin-top: 30px;
        padding: 90px clamp(20px, 5vw, 80px) 20px clamp(20px, 5vw, 80px);
        /* position: absolute;
        bottom: 0; */
    }

    .footer-contact{
        font-size: 32px;
    }

    .footer-contact a{
        font-size: 79px;
    }

    .footer-links{
        margin: 100px auto 30px auto;
        text-align: center;
        font-size: 28px;
        line-height: 114.548%; /* 36.655px */
    }

    .footer-links a{
        margin: 20px 15px;
    }

    .footer-links a:hover,  .footerdoclinks a:hover{
        color: #B92366;
        transition: color 0.3s ease;
    }

    .footer-rights{
        text-align: center;
        font-size: 11px;
        letter-spacing: 1.87px;
        margin-top: 20px;
    }

    .footer-hor-line{
        width: 90%;
        height: 1px;
        margin: 30px  auto 20px  auto;
        background-color: #0F0F0F;
    }

    .footerdoclinks{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footerdoclinks ul {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        gap: 70px;
        font-size: 14px;
        font-weight: 200;
    }


  /* On desktop: Show image, play video on hover */
  @media (hover: hover) {
    .fw-video-container:hover .fw-video-hover {
      opacity: 1;
    }

    .fw-video-container:hover .fw-preview-img {
      opacity: 0;
    }
  }


/* Small devices (landscape phones) */
/* @media (min-width: 577px) and (max-width: 768px) {

} */

  /* Small screens (Mobile) */
@media (max-width: 576px) {

    /* html, body {
        height: 100%;
      } */

    /* NAV HEADER */

    header { 
        background-color: rgba(255, 255, 255, 0.7);
    }

    .desktop-version-menu{
        display: none;
    }

    .mobile-version-menu{
        display: block;
        width: 100%;
    }

    header.menu-open {
        height: 100vh;
        background-color: #0F0F0F; /* match your menu color */
        transition: height 0.3s ease;
        overflow: hidden;
      }


    .menu-container {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        min-height: 100vh;
        width: 100%;
        background-color: #0F0F0F;
        color: white;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }

    .menu-container.active {
        transform: translateX(0);
    }

    .menu-links {
        list-style: none;
        padding-top: 75px;
    }

    .menu-links li a{
        list-style: none;
        font-size: 30px;
        line-height: 60px;
        font-family: 'PoppinsBold';
        letter-spacing: 1.5px;
    }

    .menu-line{
        display: block;
        height: 1px;
        background-color: #fff;
        width: 100%;
    }

    .menu-links li {
        margin: 15px 0;
    }

    .menu-links a {
        text-decoration: none;
        color: white;
        font-size: 18px;
    }

    .menu-footer {
        display: flex;
        justify-content: space-around;
    }

    .menu-footer a {
        color: white;
        text-decoration: none;
        font-size: 20px;
    }

    .menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 30px;
        background-color: #0F0F0F;
        opacity: 1;
        margin: 6px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: #fff;
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
        background-color: #fff;
    }

    .mobile-version-menu .header-num-section{
        font-size: 15px;
        font-family: 'PoppinsLight';
        margin-right: 10px;
    }

    /* HERO */

    #hero {
        margin: clamp(25px, 3vw, 30px) 10px;
        margin-top: 220px;
        display: flex;
        flex-direction: column;
    }

    .hero-title-mask {
        height: 40px;
    }

    .hero-title-mask span {
        font-size: 30px;
    }

    .hero-text-img {
        height: 34px;
        object-fit: cover;
        width: 65px;
        margin: 3px 4px 0 4px;
    }

    .hero-desc{
        margin: 130px 16px 0 16px;
        font-size: 16px;
    }
    
    .hero-copyright{
        font-size: 12px;
    }
    
    .hero-desc-title{
        font-size: 18px;
    }
    
    .hero-desc-txt{
        margin-top: 16px;
        font-size: 14px;
    }
    
    .scroll-down-hero{
        margin: 0 auto;
    }

    /* FEATURED WORK */

    .fw-preview-img {
        opacity: 0;
    }

    .fw-video-hover {
        opacity: 1;
    }

    .fw-button-desktop{
        display: none;
    }

    .fw-button-mobile{
        display: inline;
    }
    
    .featured-work-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .featured-work{
        margin: 20px 0;
    }

    .fw-video-container {
        height: 55vh; 
    }

    .fw-item-company{
        font-size: 20px;
        margin-top: 5px;
    }
    
    .fw-item-company-desc{
    font-size: 14px;
    }

    .fw-item-service-item {
        font-size: 9px;
        padding: 2.5px 10px;
    }
    
    .section-title{
        font-size: 25px;
    }

    /* Homepage About */
    
    .hp-about{
        margin-top: 60px;
        background-image: url('public/images/Homepage/about/Silly_Gradient_mobilee.webp');
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;  
        background-attachment: fixed;
        padding: 0 20px;
        text-align: center;
        height: 65vh;
    }

    .hp-about-title{
        font-size: 35px;
        line-height: 100%;
        padding-top: 150px;
    }

    .hp-about-title-second{
        font-size: 23px;
    }

    .hp-about h2 {
        width: 100%;
        margin: 3vh 0;
        font-size: 14px;
    }

    /* Services */

    #services {
        margin-top: 30px;
        padding: 35px clamp(20px, 5vw, 80px);
      }

    .services-flex {
        display: flex;
        align-items: flex-start;
        flex-direction: column-reverse;
        margin-top: 10px;
        overflow: hidden;
        height: auto;
      }
    
      .services-img-container {
        width: 100%;
        padding: 10px;
        z-index: 1; 
        position: relative; 
        height: 450px;
      }
    
      .services-img-container img {
        position: absolute;
        right: 0;
        top: 0;
        width: 80%;
        display: block;
        object-fit: cover;
        border-radius: 20px;
      }
    
      .services-txt-container {
        width: 100%;
        padding: 10px;
      }

    .service-item {
        letter-spacing: 1.2px;
        font-size: 20px;
        line-height: 28px;
        transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    }

    /* footer Mobile */

        /* footer */

        footer{
            padding: 20px;
        }
    
        .footer-contact{
            font-size: 18px;
        }
    
        .footer-contact a{
            font-size: 25px;
        }
    
        .footer-links{
            margin: 100px auto 30px auto;
            text-align: center;
            font-size: 13px;
            line-height: 114.548%; /* 36.655px */
        }
    
        .footer-links a{
            /* margin: 20px 15px; */
        }
    
        .footer-rights{
            text-align: center;
            font-size: 9px;
            letter-spacing: 1.87px;
            margin-bottom: 20px;
        }

}

/* Small devices (landscape phones) */
@media (min-width: 577px) and (max-width: 768px) {

    /* HERO */

    #hero {
        margin: clamp(25px, 3vw, 30px) clamp(20px, 5vw, 80px);
        margin-top: 150px;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 30px;
        grid-template-rows: auto auto auto;
    }


    .hero-title-mask {
        height: 50px;
    }

    .hero-title-mask span {
        font-size: 35px;
    }

    .hero-text-img {
        width: 85px;
    }

    .hero-desc{
        margin-top: 30px;
        grid-area: 2/5/3/12;
    }

    .hero-desc-title{
        font-size: 18px;
    }
    
    .hero-desc-txt{
        font-size: 14px; 
    }
   
    .scroll-down-hero{
        grid-area: 3/1/4/13;
    }

    .featured-work-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* Homepage About */
    
    .hp-about{
        background-image: url('/public/images/Homepage/about/Silly_Gradient_Web_mobile.png');
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;  
        background-attachment: fixed;
        padding: 0 50px;
        text-align: ceter;
    }

    .hp-about-title{
        font-size: 50px;
        line-height: 100%;
        padding-top: 150px;
    }

    .hp-about-title-second{
        font-size: 35px;
    }

    .hp-about h2 {
        width: 100%;
        margin: 3vh 0;
        font-size: 16px;
    }

    /* footer */

    footer{
        padding: 20px;
    }

    .footer-contact a{
        font-size: 23px;
    }

}


/* Medium devices (tablets) */

@media (min-width: 769px) and (max-width: 992px) {

    /* Hero */

    .hero-title-mask span {
        font-size: 50px;
    }

    .hero-title-mask {
        height: 100px;
    }

    .line {
        height: 70px; 
    }

    .hero-text-img {
        border-radius: 30px;
        height: 60px;
        width: 150px;
        margin: 8px 15px 0 15px;
    }

    .hero-desc{
        font-size: 16px;
        grid-area: 3/6/4/12;
    }
    
    .hero-copyright{
        font-size: 10px;
    }
    
    .hero-desc-title{
        font-size: 20px;
    }
    
    .hero-desc-txt{
        font-size: 16px;
    }

    /* Featured Work */

    .fw-preview-img {
        opacity: 0;
    }

    .fw-video-hover {
        opacity: 1;
    }

    .fw-video-container {
        height: 30vh; 
    }

    .fw-button-mobile{
        display: none;
    }

    .fw-item-company{
        font-size: 20px;
        margin-top: 5px;
    }
    
    .fw-item-company-desc{
    font-size: 12px;
    }

    .fw-item-service-item {
        font-size: 9px;
        padding: 2.5px 10px;
    }

    .fw-button-desktop{
        display: none;
    }

    /* Homepage About */

    .hp-about{
        background-image: url('/public/images/Homepage/about/Silly_Gradient_Web_mobile_02.png');
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;  
        background-attachment: fixed;
        height: 65%;
    }
    
    .hp-about-title{
        font-size: 50px;
        line-height: 100%;
        padding-top: 150px;
    }

    .hp-about-title-second{
        font-size: 34px;
    }

    /* Services */

        /* Services */
        
          .services-img-container {
            width: 40%;
            padding: 10px;
            z-index: 1;
          }
        
          .services-img-container img {
            width: 100%;
            height: 300px;
            display: block;
            object-fit: cover;
            border-radius: 20px;
          }
        
          .services-txt-container {
            width: 60%;
            padding: 10px;
          }
    
        .service-item {
            letter-spacing: 1.2px;
            font-size: 30px;
            line-height: 40px;
            transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
        }

        /* footer */
    
        .footer-contact{
            font-size: 25px;
        }
    
        .footer-contact a{
            font-size: 54px;
        }
    
        .footer-links{
            margin: 100px auto 30px auto;
            text-align: center;
            font-size: 18px;
            line-height: 114.548%; /* 36.655px */
        }
    
        .footer-links a{
            margin: 20px 15px;
        }
    
        .footer-rights{
            text-align: center;
            font-size: 9px;
            letter-spacing: 1.87px;
            margin-bottom: 20px;
        }

}

/* Medium devices (tablets -- landscape) */
@media (min-width: 992px) and (max-width: 1070px) {

    .hero-title-mask span {
        font-size: 48px;
    }

    .hero-desc{
        grid-area: 3/6/4/12;
    }

    .hero-text-img {
        height: 70px;
        object-fit: cover;
        width: 150px;
        margin: 3px 4px 0 4px;
        border-radius: 30px;
    }

    .line {
        height: 75px; 
    }

    .services-img-container {
        width: 40%;
        padding: 10px;
        z-index: 1;
      }
    
      .services-img-container img {
        width: 100%;
        height: 300px;
        display: block;
        object-fit: cover;
        border-radius: 20px;
      }
    
      .services-txt-container {
        width: 60%;
        padding: 10px;
      }

    .service-item {
        letter-spacing: 1.2px;
        font-size: 30px;
        line-height: 40px;
        transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    }

}






/* ABOUT PAGE */

/* hero about */

.hero-about{
    width: 100%;
    height: auto;
    min-height: 70vh;
    text-align: center;
}

.hero-about-title{
    margin-top: 250px;
    margin: 250px auto 10px auto;
    width: 100%;
    font-size: clamp(70px, 15vw, 80px);
    line-height: 112.568%;
}

.hero-about-txt{
    font-size: 32px;
    line-height: 129.323%;
    margin-bottom: 150px;
}

/* scroll */

.about-scroll{
    position: relative;
    background-color: #0F0F0F;
    height: 3600px;
    color: #FFFFFF;
    padding: clamp(25px, 3vw, 30px) clamp(20px, 5vw, 80px);
}

.scroll-txt {
    color: #FFFFFF;
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.scroll-eliza, .scroll-nathalie {
    position: static !important;
    display: block;
    height: 2000px;
    margin: 0 auto 0 auto;
    padding-top: 100px;
}

.scroll-eliza{
    /* background-color: #B92366; */
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 500px 500px 100px 500px;
}

.scroll-eliza .scroll-txt, .scroll-nathalie .scroll-txt{
    grid-area: 1/1/2/13;
    padding-top: 200px;
    z-index: 1;
}

.scroll-eliza picture, .scroll-nathalie picture {
    z-index: 100; /* Higher z-index to ensure it is above text */
}

.scroll-eliza picture img, .scroll-nathalie picture img{
    border-radius: 20px;
    z-index: 100;
    object-fit: cover;
}

.se-01{
    grid-area: 1/1/2/5;
    margin: 0 0 0 50px;
}

.se-01 img{
    width: 350px;
    height: 500px;
}

.se-02{
    grid-area: 2/8/3/13;
}

.se-02 img{
    width: 400px;
}

.se-03{
    grid-area: 2/3/4/5;
    margin-top: 200px;
}

.se-03 img{
    width: 250px;
}

.se-04{
    grid-area: 3/2/4/7;
    margin-top: 250px;
}

.se-04 img{
    width: 420px;
}

.se-05{
    grid-area: 3/8/4/11;
    margin-right: 100px;
}

.se-05 img{
    width: 410px;
}

.scroll-nathalie{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 640px 500px 100px;
}

.sn-01{
    grid-area: 1/8/2/12;
    margin: 0 50px 0 0;
}

.sn-01 img{
    width: 350px;
    height: 400px;
}

.sn-02{
    grid-area: 1/2/2/5;
    margin-top: 280px;
}

.sn-02 img{
    width: 440px;
}

.sn-03{
    grid-area: 2/2/3/6;
    margin-top: 200px;
}

.sn-03 img{
    width: 380px;
}

.sn-04{
    grid-area: 2/8/3/12;
    margin: 100px 60px 0 0;
}

.sn-04 img{
    width: 360px;
}

.scroll-txt.fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.scroll-txt.end {
    position: relative;
    top: auto;
    transform: none;
}

.scroll-txt-name , .scroll-txt-name.fixed{
    font-family: 'PoppinsBold';
    font-size: 60px;
    line-height: 112.568%;
}

.scroll-txt-job , .scroll-txt-job.fixed{
    font-family: 'PoppinsMedium';
    font-size: 26px;
    line-height: 112.568%;
    margin-top: 10px;
}

.scroll-txt-desc , .scroll-txt-desc.fixed{
    margin: 10px auto 0 auto;
    font-family: 'PoppinsLight';
    font-size: 14px;
    line-height: 123.173%;
    width: 50%;
}

.about-silly{
    background-image: url('/public/images/Homepage/about/Silly_Gradient_Web.png');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;  
    width: 100%;
    height: 100%;
    min-height: 80vh;
    padding: 170px clamp(20px, 5vw, 80px);
}

.about-silly p{
    font-family: "PlayfairDisplay";
    font-size: 28px;
    margin-left: 80px;
}

.about-desc-title{
    font-family: 'PoppinsLight';
    font-size: 22px;
}

.about-silly h1 {
    font-size: 30px;
    line-height: 135%;
    letter-spacing: 0.8px;
    width: 75%;
    margin: 40px auto;
}

.about-silly img{
    width: 50px;
    margin: 60px auto 0 auto;
    display: flex;
}



/* Small devices (landscape phones) */
@media (min-width: 577px) and (max-width: 768px) {
    .hero-about-title{
        font-size: clamp(40px, 6.5vw, 50px);
    }
    
    .hero-about-txt{
        font-size: 22px;
    }

    .scroll-txt-desc , .scroll-txt-desc.fixed{
        width: 70%;
    }

    .scroll-txt-job , .scroll-txt-job.fixed{
        font-size: 20px;
    }

    .se-01{
        grid-area: 1/1/2/6;
        margin-left: 0;
    }
    
    .se-01 img{
        width: 250px;
        height: 300px;
    }
    
    .se-02{
        grid-area: 2/7/3/13;
        margin-left: 45px;
    }
    
    .se-02 img{
        width: 300px;
    }
    
    .se-04{
        grid-area: 3/1/4/7;
        margin-top: 340px;
    }
    
    .se-04 img{
        width: 400px;
    }
    
    .se-05{
        grid-area: 3/3/4/13;
        margin-left: 180px;
    }
    
    .se-05 img{
        width: 380px;
    }

    .sn-01{
        grid-area: 1/7/2/12;
        margin: 0 0 0 50px;
    }
    
    .sn-01 img{
        width: 260px;
        height: 300px;
    }
    
    .sn-02{
        grid-area: 1/1/2/5;
        margin-top: 400px;
    }
    
    .sn-02 img{
        width: 330px;
    }
    
    .sn-03{
        grid-area: 2/1/3/6;
        margin-top: 250px;
    }
    
    .sn-03 img{
        width: 300px;
    }
    
    .sn-04{
        grid-area: 2/6/3/13;
        margin: 50px 0 0 80px;
    }
    
    .sn-04 img{
        width: 300px;
    }


}

  /* Small screens (Mobile) */
  @media (max-width: 576px) {

    .about-scroll{
        height: 3800px;
    }

    .hero-about-title{
        font-size: 38px;
    }
    
    .hero-about-txt{
        font-size: 22px;
        width: 90%;
        margin: 0 auto;
    }

    .hero-about .scroll-down-hero{
        margin-top: 90px;
    }

    .scroll-eliza{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
    }

    .scroll-nathalie{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }

    .scroll-eliza .scroll-txt, .scroll-nathalie .scroll-txt{
        grid-area: 1/1/2/2;
        padding-top: 200px;
        z-index: 1;
        width: 100%;
    }

    .se-01 img{
        grid-area: 1/1/2/2;
    }
    
    .se-01 img{
        width: 200px;
        height: 300px;
        margin: 0;
    }
    
    .se-02{
        grid-area: 3/1/4/2;
        margin: 0;
    }
    
    .se-02 img{
        width: 300px;
    }
    
    .se-03{
        grid-area: 2/1/3/2;
        margin: 0;
        /* margin-left: 150px; */
    }
    
    .se-03 img{
        width: 230px;
    }
    
    .se-04{
        grid-area: 4/1/5/2;
        margin: 0;
        /* margin-left: 100px; */
    }
    
    .se-04 img{
        width: 300px;
        height: 200px;
    }
    
    .se-05{
        grid-area: 5/1/6/2;
        margin: 0;
    }
    
    .se-05 img{
        width: 300px;
    }

    .sn-01{
        grid-area: 1/1/2/2;
        margin: 0;
    }
    
    .sn-01 img{
        width: 300px;
        height: 350px;
    }
    
    .sn-02{
        grid-area: 2/1/3/2;
        margin: 0;
    }
    
    .sn-02 img{
        width: 390px;
    }
    
    .sn-03{
        grid-area: 4/1/5/2;
        margin: 0;
        margin-top: -200px;
    }
    
    .sn-03 img{
        width: 200px;
    }
    
    .sn-04{
        grid-area: 3/1/4/2;
        margin: 0;
        /* margin-left: 120px; */
        margin-top: -100px;
    }
    
    .sn-04 img{
        width: 280px;
    }

    .scroll-txt.fixed {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        z-index: 1;
    }
    
    .scroll-txt.end {
        position: relative;
        top: auto;
        transform: none;
    }
    
    .scroll-txt-name , .scroll-txt-name.fixed{
        font-family: 'PoppinsBold';
        font-size: 46px;
        line-height: 110%;
        margin: 0;
    }
    
    .scroll-txt-job , .scroll-txt-job.fixed{
        font-family: 'PoppinsMedium';
        font-size: 16px;
        line-height: 100%;
        margin-top: 10px;
    }
    
    .scroll-txt-desc , .scroll-txt-desc.fixed{
        margin: 20px auto 0 auto;
        font-size: 13px;
        width: 80%;
    }

    .about-silly{
        background-image: url('/public/images/Homepage/about/Silly_Gradient_Web.png');
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat;  
        width: 100%;
        height: 100%;
        min-height: 70vh;
        padding: 80px 40px;
    }
    
    .about-silly p{
        font-family: "PlayfairDisplay";
        font-size: 28px;
        margin-left: 0;
    }
    
    .about-desc-title{
        font-family: 'PoppinsLight';
        font-size: 22px;
    }
    
    .about-silly h1 {
        font-size: 24px;
        line-height: 135%;
        letter-spacing: 0.8px;
        width: 90%;
        margin: 40px auto;
    }
    
    .about-silly img{
        width: 50px;
        margin: 60px auto 0 auto;
        display: flex;
    }
  }


/* Medium devices (tablets) */

@media (min-width: 769px) and (max-width: 992px) {

    .hero-about-title{
        font-size: clamp(50px, 7.5vw, 70px);
    }
    
    .hero-about-txt{
        font-size: 28px;
    }
    
    /* scroll */

    .scroll-txt-job , .scroll-txt-job.fixed{
        font-size: 24px;
    }

    .scroll-txt-desc , .scroll-txt-desc.fixed{
        width: 70%;
    }
    
    .se-01 img{
        width: 250px;
        height: 400px;
    }
    
    .se-02{
        grid-area: 2/8/3/12;
        margin-right: 50px;
    }
    
    .se-02 img{
        width: 300px;
    }
    
    .se-03{
        grid-area: 2/1/4/5;
        margin-top: 200px;
        margin-left: 40px;
    }
    
    .se-03 img{
        width: 230px;
    }
    
    .se-04{
        grid-area: 3/2/4/7;
        margin-top: 280px;
    }
    
    .se-04 img{
        width: 420px;
    }
    
    .se-05{
        grid-area: 3/3/4/11;
        margin-left: 220px;
    }
    
    .se-05 img{
        width: 380px;
    }

    .sn-01{
        grid-area: 1/7/2/12;
        margin: 0 0 0 50px;
    }
    
    .sn-01 img{
        width: 300px;
        height: 350px;
    }
    
    .sn-02{
        grid-area: 1/1/2/5;
        margin-top: 280px;
    }
    
    .sn-02 img{
        width: 390px;
    }
    
    .sn-03{
        grid-area: 2/1/3/6;
        margin-top: 200px;
    }
    
    .sn-03 img{
        width: 300px;
    }
    
    .sn-04{
        grid-area: 2/6/3/13;
        margin: 50px 0 0 80px;
    }
    
    .sn-04 img{
        width: 360px;
    }


}


                                                /* WORK PAGE */

.hero-desc-item-work{
    margin: 4em;
}