.LANDING {
    background-color: var(--cream);
    width: 100%;
    min-width: 320px; /* Changed from 1200px for mobile */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

/* KEEP THIS VERSION - THE STICKY ONE */
.LANDING .NAVIGTION {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    background-color: var(--cream);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideDownFromTop 0.8s ease-out 0.2s forwards;
}

@keyframes slideDownFromTop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.header-wrapper {
    width: 100%; /* Changed from fixed 1200px */
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 100px;
}

.LANDING .LOGO {
    position: relative;
    width: 133px;
    height: 48px;
    aspect-ratio: 2.77;
}

.LANDING .SOCIAL-LINKS {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex: 0 0 auto;
}

.LANDING .text-wrapper {
    position: relative;
    width: fit-content;
    font-family: "Rubik", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--purple-black);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
}

.LANDING .LINKS-HOLDER {
    position: relative;
    padding: 8px 12px;
    border-radius: 1000px;
    background-color: var(--yellow);
    display: flex;
    border: 1px solid;
    border-color: var(--purple-black);
    gap: 16px;
}

.social-icon {
    stroke: var(--cream);
}

.LANDING .CONTAINER {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    max-width: 1000px;
    width: calc(100% - 40px);
    min-height: 80vh;
    position: relative;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    background-image: url("img/Serenity\ in\ Nature\ 1.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Start larger */
    /* animation: backgroundScaleOut 1.0s ease-out 0.1s forwards; */
}

/* @keyframes backgroundScaleOut {
    from {
        background-size: 150%;
    }
    to {
        background-size: cover;
    }
} */
.hero-image {
    width: 100%;
    height: fit-content;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUpFromBottom 1s ease-out 0.5s forwards;
}

@keyframes slideUpFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.LANDING .TEXT {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    margin-top: 32px;
}

.LANDING .safespender-is {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Rubik", Helvetica, sans-serif;
    font-weight: 700;
    color: var(--purple-1);
    font-size: 64px;
    text-align: center;
    letter-spacing: -3.20px;
    line-height: 64px;
}

.LANDING .a-secure-way-to-buy {
    position: relative;
    align-self: stretch;
    font-family: "Rubik", Helvetica, sans-serif;
    font-weight: 400;
    color: transparent;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: 28.8px;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUpFade 1s ease-out 1.2s forwards;
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.LANDING .span {
    color: #3b0270;
}

.LANDING .text-wrapper-2 {
    font-family: "Rubik", Helvetica, sans-serif;
    font-weight: 700;
    color: #6f00ff;
}

.LANDING .COPYRIGHT {
    display: flex;
    max-width: 1200px;
    width: 100%;
    height: 35px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 10px;
    background-color: var(--cream);
    z-index: 999;
}

.LANDING .div {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Rubik", Helvetica, sans-serif;
    font-weight: 400;
    color: var(--purple-black);
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 19.2px;
    white-space: nowrap;
}

.early-access-btn {
    display: inline-block;
    background: #E9B3FB;
    padding: 12px 24px;
    border: none;
    font-family: "Rubik", Helvetica, sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #6f00ff;
    border-radius: 1000px;
    position: absolute;
    top: 110%;
    text-decoration: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    animation: slideUpFade 1s ease-out 1.5s forwards, bounce 2s ease-in-out 2.5s infinite;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.early-access-btn:hover {
    background: #6f00ff;
    color: #E9B3FB;
    animation-play-state: paused, paused;
    transform: translateY(-2px);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* Tablet styles */
@media (max-width: 1600px) {
   

    .LANDING .TEXT {
    width: 100%;
    gap: 16px;
    margin-top: 32px;
    padding: 0 12px;
    max-width: 500px;
}

 .LANDING .safespender-is {
        font-size: 60px;
        line-height: 60px;
        letter-spacing: -2.4px;
    }
    
    .LANDING .a-secure-way-to-buy {
        font-size: 18px;
        line-height: 20px;
    }
    

}

                                                                                   /* MOBILE RESPONSIVENESS */

/* Tablet styles */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: row;
        width: 100%;
        max-width: 100%;
        padding: 16px 16px;
    }

    .LANDING .TEXT {
    width: 100%;
    gap: 16px;
    margin-top: 32px;
    padding-left: 12px;
    padding-right: 12px;
    max-width: 350px;
}

    .LANDING .text-wrapper {
        display: none;
    }
    
    .LANDING .CONTAINER {
        min-height: 75vh;
        margin-top: 100px;
    }
    
    .LANDING .safespender-is {
        font-size: 40px;
        line-height: 40px;
        letter-spacing: -2.4px;
    }
    
    .LANDING .a-secure-way-to-buy {
        font-size: 16px;
        line-height: 20px;
    }
    
    .LANDING .TEXT {
        margin-top: 24px;
        gap: 12px;
    }
}

                                                                                       /* Mobile styles */
@media (max-width: 480px) {
    
    .LANDING .NAVIGTION {
        height: auto;
        min-height: 80px;
        padding: 8px 0;
    }
    
    
    .LANDING .SOCIAL-LINKS {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    

    
    /* .LANDING .LINKS-HOLDER {
        padding: 6px;
        gap: 8px;
    }
     */

    /* .LANDING .safespender-is {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: -1.6px;
    }
    
    .LANDING .a-secure-way-to-buy {
        font-size: 18px;
        line-height: 22px;
    }
     */
    
    

}


                                                                                   /* Very small mobile */
@media (max-width: 360px) {


    /* .LANDING .safespender-is {
        font-size: 28px;
        line-height: 32px;
    } */
    

}