.banner {
    margin-top: 50px;
    height: 100vh;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.banner img {
    width: 100%;
    height: 100vh;
    z-index: 0;
    object-fit: cover;
    transform: translateY(0);
}

.container-home-let {
    text-align: center;
    position: absolute;
    top: 45vh;
    left: 50%;
    transform: translate(-50%, -50%);
}

.container-home-let, .banner > *:not(img) {  
    z-index: 2;
    color: white;
}

.banner-text {
    position: absolute;
    left: 10%;
    top: 50%;
    margin: 0;
    color: white;
    padding: 2vw;
    font-size: 1.2rem;
    border-radius: 8px;  
    z-index: 2;  
    transform: translateY(-50%);
} 

.banner-title {
    font-size: clamp(3rem, 7vw + 1rem, 7rem);
}

.banner-subtitle {
    font-size: clamp(1.5rem, 2rem, 3rem);
}

.banner-h1 {
    margin: 0;
    font-size: 4em;
    text-align: left;
}

.banner-p {
    font-size: 1.5em;
    text-align: left;
    margin-top: 10px;
}

.main-title {
    font-size: 7rem;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.main-title.visible {
    opacity: 1;
    transform: translateX(0);
}

.subtitle {
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.75s ease-in;
}

.subtitle.visible {
    opacity: 1;
}

.blend {
    padding: 20px;
    backdrop-filter: blur(2px);
    border-radius: 25px;
}

.mob-adjst {
    display: block;
}

@media (max-width: 768px) {
    .banner {
        height: 100vh;
        width: 100%;
        overflow-y: hidden;
    }

    .banner-text {
        position: absolute;
        top: 70vh;
        margin-top: 0;
        margin-right: 5%;
    }

    .banner img {
        height: 100vh;
        width: 100%;
        object-fit: cover;
        display: none;
    }

    .banner .img-mobile {
        display: flex;
    }

    .main-title.visible {
        font-size: clamp(5rem, 10vw + 2rem, 7rem);
    }

    .banner-h1 {
        font-size: clamp(2.6em, 6vw + 1em, 4em);
    }

    .mob-adjst {
        margin-top: -100px;
    }
    
}

@media (max-width: 450px) {
    .banner-title {
        font-size: clamp(1.5rem, 4vw + 1rem, 3rem);
    }

    .banner-subtitle {
        font-size: 1.5rem;
    }
}

.break {
    height: 50vh;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.break img {
    width: 100%;
    height: 100vh;
    z-index: 0;
    object-fit: cover;
    transform: translateY(0);
}

.break-text {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    margin: 0;
    color: white;
    padding: 2vw;
    font-size: 1.2rem;
    border-radius: 8px;  
    z-index: 2;  
    transform: translateY(-50%);
} 

/* P/AI */
.bookmark-trigger {
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    z-index: 12;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bookmark-trigger .arrow {
    margin-right: 6px;
}

.hover-element {
    position: fixed;
    top: 10px;
    right: -300px;
    width: 80vw;
    margin-left: 10px;
    max-width: 250px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    border-radius: 25px;
    padding: 15px 20px;
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: start;
    align-items: start;
    transition: right 0.6s ease;
    z-index: 10;
}

.hover-element.show {
    right: 10px; 
}

.bookmark-trigger.hidden {
    opacity: 0;
    pointer-events: none;
}

.banner-hover{
    top: 90px;
}

.hover-text p{
    font-size: 16px;
}