html,
body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    font-family: 'Playfair Display', sans-serif;
    background-color: #fff;
}

.inter {
    font-family: 'Inter', sans-serif;
}

.jost {
    font-family: 'Jost', sans-serif;
}

#space {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.center-div {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
}   


.title-center {
    z-index: 10;
    margin: 0;
    text-align: center;
}   

.button {
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
    padding: 14px 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.3s ease;
}

.button:hover {
    background: #333;
    /* transform: translate(-50%, -50%) scale(1.05); */
}

.preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.8s ease-in-out;
}

.preloader-container.active_new {
    transform: translateY(-100%);
}

.preloader-text {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 8px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .button {
        padding: 12px 32px;
        font-size: 16px;
    }

    .preloader-text {
        font-size: 30px;
    }

    .index-title-h1{
        font-size: 34px;
    }

    .index-title-h4{
        font-size: 18px;
    }
}

.page-transition {
    position: fixed;
    inset: 0;
    background-color: #f5f0e9;
    clip-path: circle(0% at 50% 50%);
    z-index: 9999;
    pointer-events: none;
}