/* General Styles */
.nav-ll {
    letter-spacing: 9px;
}

.nav-is {
    letter-spacing: 5.4px;
}

.ll-navbar-logo {
    display: none;
}

.navbar {
    background-color: white;
}

.nav-link {
    color: #000000;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link.current-active {
    color: #A05700;
    background-color: rgba(254, 210, 20, 0.5);
    border-radius: 30px;
    text-align: center;
}

.nav-item {
    display: flex;
    align-items: center;
    margin: 20px;
}

.navbar-nav{
    justify-content: space-between;
}

.ll-outline-btn {
    padding: 15px 30px;
    font-size: 18px;
    border-color: black;
}

.ll-logo-container {
    background-color: black;
}

.ll-moto-container {
    background-color: white;
}

.color-lemon {
    color: #FED214;
}

.ll-work-with-us-btn {
    color: #A05700;
    background-color: rgba(254, 210, 20, 0.5);
    border-radius: 30px;
    text-align: center;
    display: flex;
    align-items: center;
}

.ll-join-paragraph {
    max-width: 600px;
    white-space: normal;
    word-wrap: break-word;
    vertical-align: middle;
}

.block-image-container {
    height: auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: boomerangStretchyEffect 2.5s ease-out forwards;
}

.block-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.double-width {
    width: 100%;
    height: 100%;
}

.double-height {
    height: 440px;
}

.ll-landing-spacer {
    height: 40px;
}

/* Visibility Classes */
.hidden {
    opacity: 0;
    visibility: hidden;
}

.fade-in {
    animation: fadeInVisibility 0.5s forwards;
}

.visible {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes boomerangStretchyEffect {
    0% {
        opacity: 0;
        transform: translateY(-150vh) scale(1);
    }
    60% {
        opacity: 1;
        transform: translateY(30vh) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-20vh) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInVisibility {
    from {
        opacity: 0;
        visibility: visible; /* Start visibility as visible to apply animation */
    }
    to {
        opacity: 1;
        visibility: visible; /* Ensure visibility stays visible after animation */
    }
}

@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animation Application */
.container .row.mt-4.gx-0 {
    width: 100%;
}

.container .row .col-md-2 img {
    display: flex;
    animation: fadeInSlideUp 1s ease-out forwards;
}

.ll-moto-container p {
    animation: fadeInSlideUp 1s ease-out forwards;
    animation-delay: 0.5s;
    font-size: 70px;
}

.col-md-10 .d-flex img,
.d-flex p,
.d-flex button {
    animation: fadeInSlideUp 1s ease-out forwards;
    animation-delay: 1s;
}

.col-md-10 {
    padding: 10px;
}

/* Mobile-specific Styles */
@media (max-width: 768px) {
    .navbar .d-flex.align-items-center {
        justify-content: space-between;
    }

    .ll-navbar-logo {
        display: flex;
        height: 7vh; /* Adjust the logo size as needed */
        margin-right: 5px;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
    }

    .col-md-2,
    .col-md-4 {
        flex: 1 0 100%;
    }

    .block-image-container {
        /* margin-bottom: 10px; */
    }

    .double-width,
    .double-height {
        flex: 1 0 100%;
    }

    .col-6 {
        flex: 1 0 50%;
    }

    .nav-ll {
        text-align: left;
        font-size: 100%;
        letter-spacing: 3px;
    }

    .nav-is {
        text-align: left;
        font-size: 70%;
        letter-spacing: 2px;
        margin-bottom: 0;
    }

    .container .row .col-md-2 img {
        display: none;
    }

    .col-md-10 .d-flex img,
    .d-flex p,
    .d-flex button {
        animation: fadeInSlideUp 1s ease-out forwards;
        animation-delay: 1s;
        font-size: 14px;
    }

    .ll-moto-container p {
        animation: fadeInSlideUp 1s ease-out forwards;
        animation-delay: 0.5s;
        font-size: 40px;
    }

    .container .row.mt-4.gx-0 {
        width: 70%;
    }

    .col-md-10 {
        padding-left: 8%;
        padding-right: 8%;
    }
}