/*=============== FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

/*=============== ROOT VARIABLES ===============*/
:root{    
    --font-family: 'Poppins', sans-serif;
    --default-font-size: 1rem;

    --bg-primary-color: #eeddcb;
    --bg-secondary-color: #F7EFE7;
    --bg-different-color: #f2e3d3;

    --bg-primary-gradient: radial-gradient(circle,var(--bg-primary-color), #cab7a3);
    --bg-secondary-gradient: radial-gradient(circle,var(--bg-secondary-color),var(--bg-primary-color));

    --font-title-gradient: linear-gradient(45deg, #573c2b, #402d20);
    --font-p-gradient: linear-gradient(45deg,  #624431, #3c2719);
    --btn-gradient: linear-gradient(#7b543b, #80563c, #7b543b);

    --button-active-color: #967259;
    --button-inactive-color: #8F7F74;
    --button-hover-color: #9b8170;
    --button-progress-color: #a77d61;

    --progress-gradient-color: linear-gradient(var(--button-progress-color), transparent 85%), linear-gradient(90deg, var(--button-progress-color), var(--button-active-color));
    --bubble-gradient-color: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));

    --text-color-white: rgb(241, 236, 236);
    --text-color-black: rgb(31, 30, 30);

    --h1-font-size: min(30vh, 30vw, calc(6px + 5vw + 4vh));
    --h2-font-size: 1.2rem;

    --p-font-size: min(7vh, calc(2px + 0.8vw + 0.8vh));
    --m-font-size: min(4vh, calc(2px + 0.5vw + 0.5vh));

    --items-z-index: 99;
    --fullscreen-z-index: calc(var(--items-z-index)*2);

    --card-font-size: 1rem;
    --card-border-radius: 10px;

    --section-wrapper-padding: 0 20px 0 20px;

    --btn-letter-spacing: 0.08rem;
    --btn-radius: 12px;
    --btn-padding: 10px;

    --hover-opacity: 0.96;
    --hover-scale: 1.05;
    --active-scale: 1.1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-family);
    font-size: var(--default-font-size);
    color: var(--text-color);
    overflow: hidden;
}

h1{
    font-size: var(--h1-font-size);
}

p{
    font-size: var(--p-font-size);
    font-weight: 500;
}

a { 
    color: inherit;
    text-decoration: none;
} 
/*=============== NAVIGATION ===============*/
.navigation{
    position: absolute;
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    animation: slideInUp 1s ease forwards;
    background: transparent;
    z-index: calc(var(--items-z-index) + 1);
}

.navigation-container{
    position: relative;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    border-radius: calc(var(--btn-radius) + 2px);
    background-color: var(--button-active-color);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.483);
}

.navigation-item:first-child {
    border-radius: var(--btn-radius) 0 0 var(--btn-radius);
}

.navigation-item:last-child {
    border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
}

.navigation-item{
    padding: var(--btn-padding);
    background-color: var(--button-inactive-color);
    letter-spacing: var(--btn-letter-spacing);
    font-weight: 600;
    color: var(--text-color-white);
    text-decoration: none;
    transition: background-color .5s ease;
}

.navigation-item:hover,
.navigation-item:active {
    background-color: var(--button-hover-color);
    cursor: pointer;
}

.navigation-item:active{
    opacity: 1;
}

.navigation-item.active {
    transition: background-color .5s ease-out, text-decoration .5s ease-out;
    background-color: var(--button-active-color);
    text-decoration: underline solid #ffd70c 3px;
    text-underline-offset: 6px;
    cursor: default;
}

.navigation-item.active:hover{
    opacity: 1;
}

.navigation-item.active {
    background-color: var(--button-active-color);
    cursor: default;
}

.mobile-menu-btn {
    position: absolute;
    top: 7px;
    right: 4px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 360px), screen and (max-height: 320px) {
    .navigation{
        left: -100%;
        top: 0;
        height: 100%;
        padding: 10px 0 20px 0;
        background: #2020209c;
        backdrop-filter: blur(10px);
        transition: left 0.6s ease-out;
        display: flex;
        align-items: center;
    }

    .navigation.active{
        left: 0;
        height: 100%;
    }

    .navigation-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 80%;
        box-shadow: unset;
    }

    .navigation-item:first-child {
        border-radius: var(--btn-radius) var(--btn-radius) 0 0;
    }
    
    .navigation-item:last-child {
        border-radius: 0 0 var(--btn-radius) var(--btn-radius);
    }

    .navigation-container .navigation-item{
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 999;
        opacity: 1;
        transition: opacity 0.4s ease;
    }

    .mobile-menu-btn.hidden{
        opacity: 0;
    }

}

/*=============== BACKGROUND ===============*/
.container {
    height: 100vh;
    height: 100dvh;
    width: auto;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: var(--bg-different-color);
}

.container::-webkit-scrollbar {
    display: none;
}

.bg-first, .bg-second{
    position: absolute;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 2s ease;
}

.bg-first::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-primary-gradient);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    animation: steam 3s infinite;
}
  
.bg-second::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-secondary-gradient);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
    animation: steam 3s infinite;
}

.show-bg {
    opacity: 1; 
}

@keyframes steam {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  100% {
    opacity: 0.75;
    transform: scale(1);
  }
}

/*=============== BUBBLES ===============*/
.bubble {
    position: absolute;
    bottom: -50px;
    background: var(--bubble-gradient-color);
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2), inset 0px 1px 3px rgba(255, 255, 255, 0.5);
    animation: bubble infinite ease-in-out;
    z-index: 2;
    opacity: 0.3;
}

@keyframes bubble {
    0% {
        bottom: 0;
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        bottom: 100vh;
        bottom: 100dvh;
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes bubble-shake-1 {
    0% { transform: translateX(0); }
    25% { transform: translateX(-50%); }
    50% { transform: translateX(50%); }
    75% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@keyframes bubble-shake-2 {
    0% { transform: translateX(0); }
    25% { transform: translateX(50%); }
    50% { transform: translateX(-50%); }
    75% { transform: translateX(50%); }
    100% { transform: translateX(0); }
}
/*=============== DEFAULT SECTION ===============*/
.section{
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.title-gradient{
    background-image: var(--font-title-gradient);
    background-clip: text;
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.button{
    padding: var(--btn-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--btn-gradient);
    min-width: 15vw;
    border-radius: var(--btn-radius);
    letter-spacing: var(--btn-letter-spacing);
    font-weight: 600;
    font-size: var(--p-font-size);
    color: var(--text-color-white);
    cursor: pointer;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.button:hover{
    opacity: var(--hover-opacity);
}

.button:active{
    opacity: 1;
}

.icon{
    max-width: 40px;
    max-height: 40px;
    width: calc(12px + 1vw);
    height: auto;
    margin-right: 10px;
}

/*=============== HOME SECTION ===============*/
.home-section{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: var(--section-wrapper-padding);
    z-index: var(--items-z-index);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px; /* Slightly increased margin for better spacing */
    opacity: 0;
}

.main-logo {
    max-width: min(500px, 90%); /* Increased from 280px to 400px and from 80% to 90% */
    height: auto;
}

.btn-wrapper{
    margin-top: 3vh;
    display: flex;
    justify-content: space-around;
}

.app-subtitle{
    background-image: var(--font-p-gradient);
    background-clip: text;
    background-size: 100%;
    background-repeat: repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.quote-static, .quote-dynamic{
    font-size: var(--p-font-size);
    font-weight: 600;
    font-style: italic;
    color: #624431;
}


.blinking-cursor {
    font-weight: 600;
    font-size: var(--p-font-size);
    color: #624431;
    animation: 1.4s blink step-end infinite;
}
  
@keyframes blink {
    from, to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@media screen and (max-width: 850px) and (min-height: 625px) {
    .home-section{
        flex-direction: column-reverse;
        justify-content: center;
        height: 100%;
    }
    .logo-wrapper img{
        width: 35vw;
        max-width: 200px;
        height: auto;
        margin-bottom: 50px;
    }
}


/*=============== ABOUT SECTION ===============*/
.about-section{
    z-index: var(--items-z-index);
    width: 100%;
    height: 100%;
    padding: var(--section-wrapper-padding);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-top: 60px;
    height: calc(100vh - 60px);
    min-height: 500px;
}

.card {
    background: #fff3ec;
    border-radius: var(--card-border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.card:hover .card-image{
    filter: brightness(1.06);
}

.card-image{
    transition: all 0.2s ease;
    width: 100%;
    height: auto;
    border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
}

.card-details{
    display: flex;
    flex-direction: column;
    padding: 10px;
    height: 100%;
    overflow: hidden;
}

.card-title{
    font-size: var(--h2-font-size);
    overflow: hidden;
}

.card-description {
    margin-top: 0.5vh;
    font-size: var(--card-font-size);
    overflow: hidden;
    color: #555;
}

.card-next-btn{
    padding: var(--btn-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c38f6c;
    border-radius: 0 0  var(--card-border-radius) var(--card-border-radius);
    letter-spacing: var(--btn-letter-spacing);
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
    display: none;
}

.card-next-btn:hover{
    opacity: var(--hover-opacity);
}

.card-next-btn:active{
    opacity: 1;
}

@media screen and (max-width: 1000px), screen and (max-height: 700px){    
    .card {
        max-width: 250px;
    }

    .card-title{
        font-size: 1rem;
    }

    .card-description{
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 820px), screen and (max-height: 550px){    
    .card {
        max-width: 200px;
    }

    .card-title{
        font-size: 0.9rem;
    }

    .card-description{
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 660px){
    .card{
        width: 100%;
        max-width: 300px;
    }

    .card:not(.active){
        display: none;
    }

    .card-next-btn{
        display: block;
    }

    .card-title{
        font-size: 1rem;
    }

    .card-description{
        font-size: 0.8rem;
    }
}

@media screen and (max-height: 380px), screen and (max-height: 540px) and (max-width: 660px) {
    .card{
        flex-direction: row;
        width: 100%;
        max-width: fit-content;
        position: relative;
        max-height: fit-content;
        height: min(45dvh, 45vw);
    }

    .card-image{
        width: auto;
        height: min(45vh, 45vw);
        border-radius: var(--card-border-radius) 0 0 var(--card-border-radius);
    }

    .card-title{
        font-size: min(calc(6vh + 4px), calc(6vw + 4px));
    }

    .card-description{
        font-size: min(calc(2vh + 4px), calc(2vw + 4px));
    }

    .card:not(.active){
        display: none;
    }

    .card-next-btn{
        display: block;
    }

    .card-next-btn span{
        display: none;
    }

    .card-next-btn{
        position: relative;
        justify-content: center;
        align-items: center;
        height: 100%;
        display: flex;
        width: fit-content;
        border-radius: 0 var(--card-border-radius) var(--card-border-radius) 0;
    }

    .card-next-btn::before{
        content: ">";
    }
}

@media screen and (max-width: 395px) and (max-height: 540px), screen and (max-height: 200px) {
    .card-image{
        display: none;
    }
}
/*=============== DOWNLOAD SECTION ===============*/
.download-section{
    z-index: var(--items-z-index);
    width: 100%;
    max-width: 1200px;
    height: calc(100dvh - 61px);
    margin-top: 60px;
    padding: var(--section-wrapper-padding);
    text-align: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
}

.download-details-container{
    display: flex;
    height: 40%;
    width: 100%;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.download-title{
    margin-top: 10px;
    font-size: 3.8rem;
}

.download-text{
    font-size: 1.3rem;
    font-weight: 600;
    color: #543928;
}

.download-links{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 48px;
    gap: 12px;
    margin-top: 10px;
}

.store-btn{
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
}

.store-btn-image{
    height: 100%;
    width: auto;
}

.store-btn:hover .store-btn-image{
    filter: opacity(0.9);
}

.app-gallery{
    display: flex;
    height: 60%;
    width: 100%;
    justify-content: center;
    align-items: end;
    flex-direction: row;
}

.app-gallery-container{
    position: relative;
    height: 94%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-gallery-image{
    height: 100%;
    background-color: var(--text-color-white);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    position: relative;
    width: min-content;
}

.gallery-image{
    height: 100%;
    border-radius: var(--btn-radius);
    transition: filter 0.2s ease, opacity 0.2s ease;
}

.app-gallery-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    background-color: var(--text-color-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.app-gallery-btn:hover{
    background-color: rgb(212, 209, 209);
}

.app-gallery-btn.left{
    border-radius: 10px 0 0 10px;
}

.app-gallery-btn.right{
    border-radius: 0 10px 10px 0;
}

.gallery-icon{
    height: 16px;
    padding: auto;
    width: auto;
    pointer-events: none;
}

.gallery-image-expand{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    pointer-events: none;
}

.expand-icon{
    height: 32px;
    padding: auto;
    width: auto;
}

.gallery-image:hover{
    filter: blur(1px) opacity(0.8);
    cursor: pointer;
}

.gallery-image:hover + .gallery-image-expand {
    display: flex;
}

.fullscreen-container{
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    top:0;
    justify-content: space-evenly;
    align-items: center;
    background: rgba(0, 0, 0, 0.785);
    z-index: var(--fullscreen-z-index);
    transition: opacity 0.2s ease-in-out;
    pointer-events: none;
}

.fullscreen-content{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreen-image{
    opacity: 0;
    height: 96%;
    width: auto;
    border-radius: var(--btn-radius);
}

.fullscreen-btn{
    font-size: 2rem;
    color: var(--text-color-white);
    padding: 6px;
    background-color: #202020;
    margin: 0 10px;
    border-radius: 90%;
    width: 48px;
    height: 48px;
    position: absolute;
    display: flex;
    top: 50%;
    transform: translateY(-50%);
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}

.fullscreen-btn.left{
    left: 20px;
}

.fullscreen-btn.right{
    right: 20px;
}

.fullscreen-btn:hover{
    background-color: #747373;
}

.fullscreen-container.active{
    pointer-events: visibleFill;
    opacity: 1;
}

.fullscreen-container.active .fullscreen-image{
    opacity: 1;
}

@media screen and (max-width: 800px), screen and (max-height: 600px) {
    .download-title{
        font-size: 2rem;
    }

    .download-text{
        font-size: 1rem;
    }

    .download-links{
        height: 32px;
    }
}

@media screen and (max-height: 380px) {
    .download-section{
        flex-direction: row;
    }

    .download-details-container{
        height: 100%;
        justify-content: center;
    }

    .app-gallery{
        height: 100%;
        align-items: center;
    }
}
/*=============== CONTACT SECTION ===============*/
.contact-section{
    z-index: var(--items-z-index);
    width: 100%;
    max-width: 1200px;
    height: calc(100vh - 61px - 2rem);
    margin-top: 60px;
    padding: var(--section-wrapper-padding);
    padding-top: 60px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.envelope-wrapper {
    height: 200px;
    width: 300px;
    background-color: #e2c6a9;
    position: relative;
    display: flex;
    justify-content: center;
}

.lid {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-right: 150px solid transparent;
    border-bottom: 100px solid transparent;
    border-left: 150px solid transparent;
    transform-origin: top;
    border-top: 100px solid #e2c6a9;
    transform: rotateX(180deg);
}

.envelope {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 100px solid transparent;
    border-right: 150px solid #ebd9c5;
    border-bottom: 100px solid #e8d5c1;
    border-left: 150px solid #ebd9c5;
    z-index: var(--items-z-index);
    cursor: pointer;
}

.letter {
    position: absolute;
    top: -22px;
    width: 80%;
    height: 80%;
    background-color: white;
    border-radius: var(--card-border-radius);
    z-index: calc(var(--items-z-index) - 1);
    color: var(--text-color-black);
    transition: 0.4s;
}

.letter-title {
    text-align: center;
    font-size: 2rem;
    margin-top: 30px;
}

.letter-desc{
    font-size: 1rem;
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.envelope-wrapper:hover .letter {
    transform: translateY(-50px);
}

.envelope-wrapper:hover .letter-desc{
    opacity: 1;
}

.contact-information{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding: 10px 20px;
    border-radius: var(--card-border-radius);
    background-color: var(--bg-primary-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: var(--text-color-black);
}

.contact-information *{
    font-size: 1rem;
    user-select: text;
}

footer{
    height: 2rem;
    z-index: var(--items-z-index);
}

.footer-text{
    font-size: 1rem;
}

@media screen and (max-width: 420px) {
    .footer-text {
        font-size: 0.7rem;
    }
}
@media screen and (max-height: 420px) {
    .contact-section{
        flex-direction: row;
    }
    
    .envelope-wrapper{
        display: none;
    }

    .contact-information{
        margin: 0;
    }
}

/* Partnership Section Styles */
.partnership-section {
    z-index: var(--items-z-index);
    width: 100%;
    max-width: 1200px;
    height: calc(100vh - 61px - 2rem);
    margin-top: 30px;
    padding: var(--section-wrapper-padding);
    padding-top: 30px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.partnership-section .section-title {
    font-size: calc(var(--h1-font-size) * 0.45);
    font-weight: 700;
    background: var(--font-title-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 0.5rem;
    width: 100%;
}

.partnership-section .section-intro {
    text-align: center;
    max-width: 600px;
    font-size: var(--m-font-size);
    background: var(--font-p-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-card-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 2rem;
    justify-content: center;
    position: relative;
    margin: 2rem;
}

.partner-card {
    flex: 1;
    max-width: 500px;
    background: var(--bg-different-color);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-card .card-header {
    background: var(--button-active-color);
    padding: 1rem;
    text-align: center;
}

.partner-card .card-header h3 {
    color: var(--text-color-white);
    margin: 0;
    font-size: 1.2rem;
}

.partner-card .card-content {
    padding: 0.5rem;
}

.partner-card .card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-card .card-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-color-black);
}

.partner-card .card-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--button-active-color);
}

.partner-nav-btn {
    padding: 0.5rem 0.75rem;
    background-color: var(--button-active-color);
    border: none;
    justify-content: center;
    border-radius: var(--btn-radius);
    letter-spacing: var(--btn-letter-spacing);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color-white);
    display: none;
    transition: background-color 0.3s ease;
}

.partner-nav-btn:hover {
    background-color: var(--button-hover-color);
}

.partnership-footer {
    text-align: center;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.partnership-footer p {
    max-width: 600px;
    font-size: var(--m-font-size);
    background: var(--font-p-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.partnership-footer .button {
    display: inline-flex;
    align-items: center;
    padding: var(--btn-padding);
    background: var(--btn-gradient);
    color: var(--text-color-white);
    border-radius: var(--btn-radius);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: var(--btn-letter-spacing);
    transition: opacity 0.3s ease, transform 0.3s ease;
    -webkit-text-fill-color: initial; /* Override any inherited transparent text */

}

.partnership-footer .button:hover {
    opacity: var(--hover-opacity);
    transform: scale(var(--hover-scale));
}

/* Responsive styles */
@media (max-width: 768px) {
    .partnership-section {
        gap: 0.75rem;
        padding: 1rem var(--section-wrapper-padding);
    }

    .partnership-footer {
        margin-top: 0.75rem;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
        margin: 0.5rem 0;
    }

    .partner-card {
        display: none;
        width: 100%;
    }

    .partner-card.active {
        display: flex;
        flex-direction: column;
    }

    .partner-card.active .partner-nav-btn {
        display: flex;
    }

}

/*=============== SLIDE-IN ANIMATIONS ===============*/
@keyframes slideInLeft {
    0% {
        opacity: 0;
        scale: 0.9;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        scale: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        scale: 0.9;
        transform: translateX(+20%);
    }
    100% {
        opacity: 1;
        scale: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(-100%);
        scale:0.9;
    }
    100% {
        opacity: 1;
        scale:1;
        transform: translateY(0);
    }
}

.init-animation{
    opacity: 1;
    animation: slideInLeft 1.4s ease forwards;
}

[data-inviewport="slide-in-left"]:not(.details-wrapper){
    opacity: 0;
}

[data-inviewport="slide-in-left"].is-inViewport{
    animation: slideInLeft 1.2s ease forwards;
}

/*=============== ALERT - WARNING ===============*/
.alert-container {
    position: fixed;
    bottom: 0;
    opacity: 0;
    width: 100%;
    display: flex;
	justify-content: center;
    align-items: end;
    z-index: calc(var(--fullscreen-z-index) - 1);
    padding: 6px;
    pointer-events: none;
    transition: opacity .3s ease-in-out;
}
    
.alert-container.active {
    opacity: 1;
}

.alert-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-start;
    padding: 8px;
	background: #d29524;
	transform: scale(0);
	border-radius: var(--card-border-radius);
	color: white;
	opacity: 0;
	overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	animation: scale-in .3s ease-out forwards;
    margin-bottom: 10px;
}

.alert-text {
	display: flex;
	align-items: center;
	padding: 0 16px;
	font-size: 1rem;
	animation: fade-in .65s ease-in forwards;
    text-align: center;
    font-weight: 500;
}

@keyframes scale-in {
	50% {
		transform: scale(.8);
		opacity: .5;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: .8;
	}
}
/*=============== LANGUAGE SELECT ===============*/
.language-wrapper {
    position: absolute;
    right: 10px;
    bottom: 26px;
    background-color: #181818c0;
    padding: 6px 3px;
    flex-direction: column;
    display: block;
    float: left;
    border-radius: 3px;
    z-index: 999;
    overflow: hidden;
    backdrop-filter: blur(10px);
    height: 40px;
    transition: height .2s ease-in;
}

.language-wrapper:hover {
    height: 74px;
    transition: height .2s ease-out;
}

.language-wrapper:active {
    height: 74px;
    transition: height .2s ease-out;
}

.language-icon-wrapper {
    padding: 2px;
    background-color: #fefefe;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 90%;
    transition: background-color .2s ease-in-out;
}

.language-icon-wrapper:not(:first-child) {
    margin-top: 6px;
}

.language-icon-wrapper:hover {
    background-color: rgb(107, 219, 107);
    cursor: pointer;
}

.language-icon {
    width: 24px;
    height: 24px;
}

body:has(.fullscreen-container.active) .language-wrapper {
    display: none;
}