
.Title{
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    left: 50px;
    font-size: xx-large;
    font-family: 'Poppins', sans-serif;
    color: white;
    width: calc(100% - 50px); /* Take up left side, minus gap */
    height: 25%;
    transform: translateY(-50%);
}

.TitleText{
    font-family: "Rubik", sans-serif;
    font-size: 80px;
    font-weight: bolder;
    color: white;
    width: auto;
    height: auto;
    margin-left: 10px;
}

.SubtitleText{
    font-family: "Rubik", sans-serif;
    font-size: x-large;
    font-weight: bolder;
    color: white;
    width: auto;
    height: auto;
    margin-left: 10px;
}

.titleLogo{
    height: 80px;
}

.Showcase {
    position: absolute; /* absolute so we can place it manually */
    right: 50px; /* pushes it to the right side */
    top: 50%; /* keep it vertically centered */

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 50%; /* slightly smaller so Title has space */
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;

    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}




.ShowcaseTextContent {
    position: absolute;
    top: 0;
    left: 0;

     display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;

    height: 100%;
    padding: 2rem;

    
    z-index: 2;
    text-align: left;
    
}


.ShowcaseTitle{
    font-family: "Rubik", sans-serif;
    font-size: 50px;
    font-weight: bolder;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ShowcaseJump {
    position: relative;
    font-family: "Rubik", sans-serif;
    font-size: large;
    font-weight: bolder;
    color: white;
    background-color: #009DFF;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
    bottom: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition:all 0.2s ease;
}

.ShowcaseJump:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.ShowcaseJump:hover:active {
    transform: scale(0.95);
}


.ShowcaseImage{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: filter 0.2s ease;
}

.ScrollDown{
    position: absolute;
    height: 100vh;
    width: 100vw;
    z-index: -1;
    top: 0;
    display: flex;
    align-content: flex-end;
    align-items: flex-end;
}

.ScrollArrow{
    position: relative;
    left: 50%;
    bottom: 2rem;
    width: 5%;
    max-width: 80px;
    transform: translateX(-50%);
    animation: bounce 5s infinite;
    animation-delay: 5s;
    transition: all 0.2s ease;
}

.ScrollArrow:hover {
    cursor: pointer;
    animation-play-state: paused;
}

/* Animation for scroll arrow */
@keyframes bounce {
    0%, 30%, 60%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.ProjectContent{
    position: absolute;
    top: 150%;
    left: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100%;
    width: 100%;

    
    z-index: 2;
    text-align: left;
}

.ProjectShowcase{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to the start */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
     /* Increased width for side-by-side layout */
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: #222; /* Optional: background for clarity */
    transition: all 0.25s cubic-bezier(0.5, 1, 0.9, 1);
}

.ProjectShowcase:hover{
    cursor: pointer;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    transform: translate(-50%, -51%);
}
.ProjectShowcase:active{
    transform: translate(-50%, -49%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.ProjectList {
    position: relative;
    display: flex;
    margin-left: 2rem;
    width: auto;
    height: 80%;
    flex-direction: row;
    align-items: flex-start;
    gap: 1%;
    overflow-x: visible; /* show items out of bounds */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    transition: all 1.5s cubic-bezier(0.5, 1, 0.9, 1);
}

/* Hide scrollbar across browsers */
.ProjectList::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.ProjectList {
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
}

.SpaceExpander {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: -2;
    background-color: #0073FC;
    top: 200%;
    background-image: 
        linear-gradient(rgba(0, 115, 252,0.8), rgba(0, 88, 195, 0.8)), /* overlay for transparency */
        url('/src/Repeat_Pattern.svg'); /* Replace with your texture path */
    background-repeat: repeat;
    background-size: 71%; /* Image scales with width */
    background-position: 5% 95%;
}