/* Reset margin and padding */
* { 
    margin: 0;
    padding: 0;
}
    html {
        scroll-behavior: smooth;
    }
    
/* Apply background color */
body {
    background: #000000;
    font-family: 'IBM Plex Mono', monospace;
}
/* Ensure font files are being loaded */
@font-face {
    font-family: 'IBM Plex Mono';
    src: url('fonts/IBMPlexMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('fonts/IBMPlexMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('fonts/IBMPlexMono-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('fonts/IBMPlexMono-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PixelFJVerdana';
    src: url('fonts/W95FA.otf') format('opentype');
    font-weight: 600;
}


nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; /* This ensures the items are vertically centered */
    z-index: 2;
    background-color: none; /* Optional: Add background for nav */
    padding: 20px; /* Optional: Add padding for spacing */
}

.menu__logo {
    font-family: 'IBM Plex Mono';
    color: #ffffff;
    font-size: 14 px;
    text-transform: none;
    text-decoration: none;
    padding-left:10px;
}



/* Menu container */
/* Menu container */
.menu__items {
    font-family: 'IBM Plex Mono';
    display: flex;
    gap: 20px; /* Adds space between links */
    padding-right: 40px;
}

/* Style for the individual links in the menu */
.menu__items-link {
    color: rgba(255, 255, 255, 0.5); /* Default link color with 50% opacity */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none; /* Default to no underline */
    font-family: 'IBM Plex Mono'; /* Default font for all links */
    transition: color 0.3s ease, font-family 0.3s ease, letter-spacing 0.3s ease, text-decoration 0.3s ease; /* Smooth transition */
}

/* Hover effect for menu links */
.menu__items-link:hover {
    font-family: 'IBM Plex Mono', sans-serif; /* Change to normal font on hover */
    color: #ffcc00; /* Change to yellow color on hover */
    letter-spacing: 1px; /* Slightly increase letter spacing for subtle effect */
    text-decoration: none; /* Remove underline on hover */
    font-weight: 700;
}

/* Active (current) link style */
.menu__items-link.active {
    color: #ffcc00; /* Yellow color for active link */
    font-family: 'IBM Plex Mono', sans-serif;/* Apply special font for active link */
    text-decoration: underline; /* Underline for active link */
    letter-spacing: 1px; /* Slight letter spacing */
    font-size: 14px;
    font-weight: 700;
}

/* Remove underline and normal font when hovering over active link */
.menu__items-link.active:hover {
    font-family: 'IBM Plex Mono', sans-serif; /* Change to IBM Plex Mono font on hover */
    color: #ffcc00; /* Keep yellow color on hover */
    text-decoration: none; /* Remove underline on hover */
    letter-spacing: 1px; /* Maintain letter spacing */
}





/* Ensure the container scrolls horizontally */
.container {
    margin-top: 400px;
    margin-left: 40px;  
    justify-content: space-between; /* Place text and images side by side */
    flex-wrap: nowrap; /* Prevent wrapping, allowing horizontal scroll */
}

video::-webkit-media-controls {
    display: none !important;
    opacity: 0;
    pointer-events: none;
  }

  /* Optional: Also hide controls on Firefox if present */
  video::-moz-media-controls {
    display: none !important;
    opacity: 0;
    pointer-events: none;
  }

.scroll-hint {
    font-size: 24px;
    color: #ffcc00;
    margin-top: 5px;
    text-align: left;
}




@keyframes blink {
    0% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(10px); }
}


.horizontal-scroll-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden; /* Disable default scrolling */
    overflow-y: auto;
    will-change: transform; /* Tell the browser to optimize for transforms */
}


.scroll-container { 
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 20px;
    width: 100%;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    align-items: center;
    white-space: nowrap;
}





.container__item {
    min-width: 560px; /* Set a minimum width for each item */
    height: 320px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Ultra smooth easing */
    will-change: transform; /* Optimizes performance */
    
}
.text-container {
    margin-left:20px;
    width: 100%; /* Text takes up 30% of the container */
    padding-right: 20px;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 250px;
    pointer-events: none;
    z-index: 10;
}


.container__item-header h1 {
    font-size: 100px;
    font-weight: 500;
    color: #ffffff;;
}

.special-font {
    font-family: 'PixelFJVerdana', sans-serif; /* Replace with the desired font */
    font-weight: 600; /* Adjust as needed */
    color: #ffcc00; /* Optional: Different color */
    font-size: 48px;
    font-display: swap; /* Helps avoid invisible text issue */

    
}

.grid-container {

    padding-bottom: 128px;

    margin: 128px auto;
    height: 90vh;
    display: grid;
    grid-auto-columns: 1fr;
    gap: 1em;
    grid-template-areas: 
      'one one two five five'
      'one one three five five'
      'four four four five five'
  }
  .grid-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1em;
    display: block;
  }
  
  .grid-item {
    border-radius: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color:transparent;
  }
  
  .grid-item:nth-child(1) {
    grid-area: one;
    background-color: transparent;
  }
  
  .grid-item:nth-child(2) {
    grid-area: two;
    background-color: transparent;
  }
  
  .grid-item:nth-child(3) {
    grid-area: three;
    background-color: transparent;
  }
  
  .grid-item:nth-child(4) {
    grid-area: four;
    background-color: transparent;
  }
  
  .grid-item:nth-child(5) {
    grid-area: five;
    background-color: transparent;
  }
  
  
  @media (max-width: 940px) {
    .grid-container {
      grid-template-areas: 
      'one one two five five'
      'three three three five five'
      'four four four four four'
    }
  }
  
  @media (max-width: 640px) {
    .grid-container {
      grid-template-areas: 
      'one one two two two'
      'three three three five five'
      'four four four four four'
    }
  }
  
  @media (max-width: 460px) {
    .grid-container {
      grid-template-areas: 
      'one'
      'two'
      'three'
      'four'
      'five';
    }
  }

/* Text styling */
.container__item-title h1 {
    font-size: 18px;
    font-weight: 300;
    color: #ffffff;;
    margin-bottom: 10px;
}

.container__item p {
    font-size: 16px;
    color: #ffffff;;
}

/* Styling the video */
.container__item video {
    object-fit: cover; /* Ensures the video covers the container */
    width: 100%;
    height: 100%;
    border-radius: 20px; /* Same rounded corners as the container */
}



.container__item-1 {
    background-size: cover;
    width: 500px;
    height: 300px;
    border-radius: 20px;
}

.container__item:hover {
    transform: scale(0.97); /* Slightly enlarges on hover */
}



.cssbuttons-io-button {
    margin-top: 16px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-family: 'IBM Plex Mono';
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 26px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #ffffff;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    text-decoration: none;
  }
  
  .cssbuttons-io-button .icon {
    background: #ffcc00;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #ffffff;
    right: 0.3em;
    text-decoration: none;
    transition: all 0.3s;
  }

  .pdf-container {
    width: 100%;
    max-width: 700px;
    height: 600px;
    border: 1px solid #ccc;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    text-align: center;
    position: relative;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.modal-body iframe {
    width: 100%;
    height: 500px;
    border: none;
}
  .cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #000000;
  }
  
  .cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button:active .icon {
    transform: scale(0.95);
  }
  

.cssbuttons-io-button-fixed {
    position: fixed;
    margin-top: 16px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-family: 'IBM Plex Mono';
    padding-left: 1.2em;
    font-size: 26px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #ffffff;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    text-decoration: none;
  }

  
  
  .cssbuttons-io-button-fixed .icon {
    background: #ffcc00;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #ffffff;
    right: 0.3em;
    text-decoration: none;
    transition: all 0.3s;
  }
  
  .cssbuttons-io-button-fixed:hover .icon {
    width: calc(100% - 0.6em);
  }
  
  .cssbuttons-io-button-fixed .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #000000;
  }
  
  .cssbuttons-io-button-fixed:hover .icon svg {
    transform: translateX(0.1em);
  }
  
  .cssbuttons-io-button-fixed:active .icon {
    transform: scale(0.95);
  }
/* Fixed Button Container */
.fixed-button-container {
    position: fixed;
    bottom: 145px;  /* Adjust this value to place the button just above the footer */
    left: 2%;
    z-index: 10;
}

.highlight-text-footer {
    color: #ffcc00; /* You can change this color to whatever you prefer */
}

/* Styling the Button */
.cssbuttons-io-button {
    background: #ffffff;
    color: rgb(0, 0, 0);
    font-family: 'IBM Plex Mono';
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 26px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #ffffff;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Icon Styling */
.cssbuttons-io-button .icon {
    background: #ffcc00;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #ffffff;
    right: 0.3em;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect on the icon */
.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

/* SVG Icon inside button */
.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #000000;
}

/* Hover effect on the icon */
.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

/* Active state on the icon */
.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

/* Hover effect for button */
.cssbuttons-io-button:hover {
    background: #f5f5f5; /* Light grey on hover */
    transform: scale(1.05);
}

.container__item-2 {
    background-size: cover;
    width: 500px;
    height: 300px;
    border-radius: 20px;
}

.container__item-3 {
    background: url(img/text.png) no-repeat center center;
    background-size: cover;
    width: 500px;
    height: 300px;
    border-radius: 20px;
}

.container__item-4 {
    background: url(img/text.png) no-repeat center center;
    background-size: cover;
    width: 500px;
    height: 300px;
    border-radius: 20px;
}

.container__item-5 {
    background: url(img/text.png) no-repeat center center;
    background-size: cover;
    width: 500px;
    height: 300px;
    border-radius: 20px;
}

.project__container-title-paragraph {
    width: 100% !important;
    margin: 20px 0;
    font-family: 'Ibm';
    font-size: 16px !important;
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    color: #ccc;
    justify-content: center;

}

.p-bold {
    font-weight: 400 !important;
    font-size: 24px !important;
    color:#ffcc00;
    text-transform: uppercase;

}

/* Mobile: Stack items vertically and switch scroll direction */
@media(max-width: 900px) {
    .fixed-button-container {
        position: sticky;
    }

  .pdf-container {
    width: 100%;
    max-width: 300px;
    height: 200px;
    border: 1px solid #ccc;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.modal-content {
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 900px;
    text-align: center;
    position: relative;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.modal-body iframe {
    width: 100%;
    height: 500px;
    border: none;
}

    .lebenslauf__description {
        font-family: 'IBM Plex Mono';
        font-weight: 300;
        font-size: 14px !important;
        color: #ffffff;
        margin-top: 8px;
    }

    .lebenslauf__container_text {
width: 80% !important ;
margin-left: 9px !important;
margin-top: 128px!important;
padding: 0px !important;
margin-right: 9px !important;


    }

    .lebenslauf__title {
        font-family: 'PixelFJVerdana', sans-serif;
        font-size: 32px !important;
       
    }

    .lebenslauf__position {
   
        font-size: 18px !important;
     
    }

    .lebenslauf__personal-info {
        font-size: 16px !important;
       
    }

    .arrow {
 
        display: inline-block;
        animation: blink-down 1.2s infinite alternate;
    }

    @keyframes blink-down {
        0% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(10px); }
    }



.project__container-subtitle {
    width: 80% !important;
    margin: 20px 0;
    font-family: 'Ibm';
    font-size: 16px !important;
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    color: #ccc;
    justify-content: center;

}


  

    .horizontal-scroll-container {
        display: inline-block;
        
    }

   
    .scroll-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column; /* Stack items vertically */
        gap:16px;
       
       
    }
    .container {
        margin-left:0px;
        
        
    }
   
    .container__item:hover {
        transform: scale(0.97); /* Slightly enlarges on hover */
    }
    
    .container__item {
         width: 96%;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Ultra smooth easing */
        will-change: transform; /* Optimizes performance */
        min-width: 40vw; /* Make each item 80% of the viewport width */
        max-height: 35vh;
        
    }
    .fixed-button-container {
        bottom:40px;
        scale:0.7;
        left: -2%;
    }

    .text-container {
        padding-left: 20px;
    }
    .container__item video,
    .container__item img {
        margin-right: 30px;
    }

    .lebenslauf__container-text{
        width: 90% !important;
      
    }
        

}
 
    
    /* Adjusting text and title sizes on mobile */
    .container__item-header h1 {
        font-size: 30px !important;
        left: -50%;
    }

    .container__item h1 {
        font-size: 40px;
        bottom: -20px;
    }



#js-scroll {
    height: 200%;
}

.about__container {
    width: 50%;
    margin: 100px 0px 100px 100px;
    padding: 40px;
}

.contact-wrapper a {
    text-decoration: none; /* Removes underline */
}

.about__container p {
   
    margin: 64px 0;
    color: #ffffff;
    font-size: 46px;
    font-weight: 400;
    z-index: 2;
    text-decoration: none;
}

.contact-wrapper {
    display: flex;
    align-items: center; /* Aligns buttons vertically */
    gap: 20px; /* Adds space between buttons */
    flex-wrap: wrap; /* Wraps buttons if the screen is too small */
}


.about__container-contact-link a {
    color:#ffcc00;
    font-family: 'PixelFJVerdana';
    font-size: 24px;
}

p.about__container-link {
    font-size: 26px;

}

.about__container-link a {
    color:#ffffff;
    font-size: 46px;
    text-decoration: none;
}

.about__container p .highlight-text {
    font-size: 54px;
    color: #ffcc00;
    font-family: 'PixelFJVerdana', sans-serif; /* Apply special font */
    animation: fadeInUp 8s ease-in-out infinite; /* Animation for fade in from bottom to top */
    opacity: 0; /* Initially invisible */
    transform: translateY(30px); /* Start 30px below */
}

/* Animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px); /* Start 30px below */
    }
    25% {
        opacity: 1; /* Make visible */
        transform: translateY(0); /* Move to normal position */
    }
    75% {
        opacity: 1; /* Stay visible */
        transform: translateY(0); /* Stay in normal position */
    }
    100% {
        opacity: 0; /* Fade out */
        transform: translateY(-30px); /* Move 30px up */
    }
}





/* Make cursor-follow an element that will follow the mouse */
.cursor-follow {
    background-image: cover;
    position: absolute;
    pointer-events: none;  /* Ensures it doesn't interfere with other elements */
    z-index: -1;         /* Make sure it's above other content */
    transition: transform 0.1s ease-out;    
    width: 500px;           /* Change this to the desired size of your image */
    height: 500px;          /* Change this to the desired size of your image */
    display: none;         /* Initially hidden */
    border-radius: 20px;
}




@media(max-width: 900px) {

    .fixed-button-container {
        position: sticky;
    }

    .footer-links {
        margin-bottom: 0px !important;
        margin-left: 60% !important;
    }

    .footer-fixed-text {
        margin-bottom: 0px;

    }


    .contact-wrapper {
        display: inline-block;
        gap: 0px; /* Adds space between buttons */
        flex-wrap: nowrap; /* Wraps buttons if the screen is too small */
    }
    

    

    .cssbuttons-io-button {
        font-size: 20px;  /* Smaller text */
        padding: 0.25em 2.5em 0.25em 1em; /* Adjust padding */
        height: 2.4em;  /* Reduce height */
        border-radius: 0.7em; /* Adjust border radius */
    }

    .cssbuttons-io-button .icon {
        height: 1.8em; /* Smaller icon */
        width: 1.8em;
        border-radius: 0.5em;
    }

    .cssbuttons-io-button .icon svg {
        width: 0.9em;
    }
   


    .cursor-follow {
display: none;        
    }

    .about__container p {
   
        margin: 32px 0;
        color: #ffffff;
        font-size: 28px;
        font-weight: 400;
        z-index: 2;
        text-decoration: none;
    }

    .about__container{
        width: 69%;
        justify-content: center;
        align-items: center;
        padding:0px;
        margin-left: 32px;
        margin-top: 128px;
    }
    .cursor-follow {
        display: none;
    }

 
}

.lebenslauf__container_text {
    width: 50%;
    margin: 100px 0 100px 100px;
    padding: 40px;
    margin: 60px 0;
    margin-left: 40px;
    color: #ffffff;
    font-size: 46px;
    font-weight: 400;
    z-index: 2;
    text-decoration: none;
}

.lebenslauf__personal-info {
    font-size: 18px;
    color: #ffcc00;
    font-family: 'PixelFJVerdana', sans-serif;
    margin-top: 20px;
}

.lebenslauf__personal-info br {
    display: block;
    margin: 5px 0;
}

.lebenslauf__title {
    font-family: 'PixelFJVerdana', sans-serif;
    font-size: 48px;
    color: #ffcc00;
    margin-top: 40px;
}

.lebenslauf__position {
    font-family: 'IBM Plex Mono';
    font-weight: 700;
    font-size: 24px;
    color: #ffffff;
    margin-top: 16px;
}

.lebenslauf__description {
    font-family: 'IBM Plex Mono';
    font-weight: 300;
    font-size: 16px;
    color: #ffffff;
    margin-top: 8px;
}

.lebenslauf__link a {
    color: #ffcc00;
    font-family: 'PixelFJVerdana', sans-serif;
    font-size: 16px;
    text-decoration: none;
    margin-top: 0px!important;
}

.lebenslauf__link a:hover {
    text-decoration: underline;
}

.lebenslauf__container p .highlight-text {
    font-size: 24px;
    color: #ffcc00;
    font-family: 'PixelFJVerdana', sans-serif; /* Apply special font */
    animation: fadeInUp 8s ease-in-out infinite; /* Animation for fade in from bottom to top */
    opacity: 0; /* Initially invisible */
    transform: translateY(30px); /* Start 30px below */
}

/* Animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px); /* Start 30px below */
    }
    25% {
        opacity: 1; /* Make visible */
        transform: translateY(0); /* Move to normal position */
    }
    75% {
        opacity: 1; /* Stay visible */
        transform: translateY(0); /* Stay in normal position */
    }
    100% {
        opacity: 0; /* Fade out */
        transform: translateY(-30px); /* Move 30px up */
    }
}

/* Make cursor-follow an element that will follow the mouse */
.cursor-follow {
    background-image: cover;
    position: absolute;
    pointer-events: none;  /* Ensures it doesn't interfere with other elements */
    z-index: -1;         /* Make sure it's above other content */
    transition: transform 0.1s ease-out;    
    width: 500px;           /* Change this to the desired size of your image */
    height: 500px;          /* Change this to the desired size of your image */
    display: none;         /* Initially hidden */
    border-radius: 20px;
}

@media(max-width: 900px) {
    .fixed-button-container {
        position: sticky;
    }

   
    .cursor-follow {
        display: none;
    }
}



.project__container {
    width: 96%;
    margin: 100px auto;
    color: #000000;
    padding: 0px 40px;
    text-align: left;
}

.anime-js-title span {
    opacity: 0;
    transform: translateY(50px); /* Start off slightly lower */
    display: inline-block;
    margin-right: 5px; /* Space between the letters */
}




.project__container-title h1 {
    color: #ffffff;
    font-family: 'PixelFJVerdana';
    font-size: 32px;
    

}

.project__container-subtitle {
    width: 50%;

    text-align: left;
    margin-top: 16px;
    margin-bottom: 0px;
    font-family: 'Ibm';
    font-size: 1ypx;
    font-family: 'IBM Plex Mono';
    font-weight: 400;
    color: #ccc;
    justify-content: center;

}

.project__container__images {
    position: relative;
    width: 100%;
    height: 2000px;
    padding: 40px 0;
}

.project__image {
    
    margin: 40px auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    opacity: 0;
    transform: translateY(50px); /* Start position slightly lower */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.project__image.show {
    opacity: 1;
    transform: translateY(0);
}
.project__image-one {
    width: 1200px;
    height: 700px;
    background: url(img/text.png) no-repeat 50% 50%;
    background-size: cover;
    border-radius: 20px;
   }

   .project__image-two {
    width: 1200px;
    height: 700px;
    background: url(img/text.png) no-repeat 50% 50%;
    background-size: cover;
    border-radius: 20px;
   }
    


.project__image-three {
    width: 1200px;
    height: 700px;
    background: url(img/text.png) no-repeat 50% 50%;
    background-size: cover;
    border-radius: 20px;
}

.project__image-four {
    width: 1200px;
    height: 700px;
    background: url(img/text.png) no-repeat 50% 50%;
    background-size: cover;
    border-radius: 20px;
}

.project__image-five {
    width: 1200px;
    height: 700px;
    background: url(img/text.png) no-repeat 50% 50%;
    background-size: cover;
    border-radius: 20px;
}

.project-next-link{
    margin-top: 220px;
   
    position: relative;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-bottom: 0px;

}
.project-next-link a {
    font-family: 'IBM Plex Mono';
        color: #000000;
    text-decoration: none;
    font-size: 26px;

}

  
  @media (max-width: 640px) {
    .fixed-button-container {
        position: sticky;
    }

    .section-info-title {
      font-size: 40px;
    }
  
    .section-info-wrapper {
      padding: 0 16px;
    }
  
    .section-info-subtitle {
      font-size: 14px;
    }
  }
  
  
  


@media(max-width: 900px) {
    .fixed-button-container {
        position: sticky;
    }


    .project__container-title h1 {
        font-size: 40px;
}
.project__container {
    padding-right: 0px !important;

   padding-top: 120px;
   padding-left: 9px;
   margin-right: 9px;
}
.project__container-images {
        width: 100%;
        margin: 0 auto;
        height: 70%;

}

.about__container p .highlight-text {
    font-size: 42px;
}
.project__image {
    width: 100%;
    height: 120vw;
}
.project__image-one, .project__image-two, .project__image-three, .project__image-four {
    position: relative;
    top: 0;
    left:0;
    
}
}

/* Footer container */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: none;
    color: white;
    z-index: 9999; /* Ensure it's always on top */
    padding: 20px 0;
}

/* Content within footer */
.footer-content {
    display: flex;
    flex-direction: column; /* Stack the fixed text above the scrolling text */
   
    width: 100%;
    padding: 0 20px;
}

/* Fixed text above the scrolling content */
.footer-fixed-text {
    margin-bottom: 9px; /* Increased space between fixed text and scrolling text */
}

/* Container for the links to make them appear side by side */
.footer-links {
    margin-left: 90%;
    width: 100%; /* Make the container take full width */
    max-width: 600px; /* Limit the width for a cleaner appearance */
    margin-bottom: 10px; /* Add a bit of margin between links and the scrolling text */
}

/* Style for the links */
.link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none; /* Remove underline from links */
    font-family: 'IBM Plex Mono'; /* Default font */
    font-size: 10px;
    transition: color 0.3s ease, font-family 0.3s ease, font-size 0.3s ease; /* Smooth transition */
}



/* Hover effects for the links */


/* Footer text scrolling horizontally */
.footer-text {
    display: flex; /* Use flex to arrange the texts side by side */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden; /* Hide the overflow to keep the scrolling effect */
    width: 100%; /* Adjust this to control the visible portion */
}

/* Text inside the footer */
.footer-text p {
    font-size: 10px;
    display: inline-block;
    white-space: nowrap;
    margin-right: 650px; /* Space between the two texts */
}

/* Animation for the entire scrolling text */
.footer-text {
    animation: scroll-text 45s linear infinite; /* Slower scroll animation */
}

/* Animation for scrolling the entire content from right to left */
@keyframes scroll-text {
    0% {
        transform: translateX(100%); /* Start from right */
    }
    100% {
        transform: translateX(-100%); /* End at left, making it disappear and reset */
    }
}

