* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-popup {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0,0,0,0.45);

    backdrop-filter: blur(5px);

    align-items: center;

    justify-content: center;

    z-index: 2000;

}


.login-popup.active {

    display: flex;

}


.login-popup__box {

    background: #F8F5EE;

    padding: 3rem;

    border-radius: 20px;

    text-align: center;

    max-width: 400px;

}


.login-popup__box h2 {

    color: #0B1B33;

    margin-bottom: 1rem;

}


.login-popup__box p {

    color: #0B1B33;

    margin-bottom: 2rem;

}


.login-popup__box button {

    background: #BFA15A;

    color: white;

    border: none;

    padding: 0.8rem 2rem;

    border-radius: 50px;

    cursor: pointer;

}

.login-popup__box button {

    background: #BFA15A;

    color: #FFFFFF;

    border: 2px solid #BFA15A;

    padding: 0.8rem 2rem;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

    transition: all 0.3s ease;

}


.login-popup__box button:hover {

    background: transparent;

    color: #BFA15A;

    transform: translateY(-3px);

    box-shadow: 0 8px 20px rgba(191, 161, 90, 0.25);

}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

main {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-very__mark {
    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}

@media (hover: hover) and (pointer: fine) {

    .why-very__mark:hover {
        transform: scale(1.03);

        border-color: rgba(201, 162, 39, 0.6);

        box-shadow:
            0 0 35px rgba(201, 162, 39, 0.12),
            inset 0 0 35px rgba(201, 162, 39, 0.05);
    }

}

.principle {
    transition:
        transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {

    .principle:hover {
        transform: translateY(-4px);
    }

}


