/* @import "tailwindcss"; */

@font-face {
    font-family: 'Canesa';
    src: url('./public/asset/fonts/Canesa.woff2') format('woff2'),
        url('./public/asset/fonts/Canesa.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@layer utilities {
  .text-secondary-light {
    opacity: 0.65;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
  }
}


@font-face {
    font-family: 'Canela Trial';
    src: url('./public/asset/fonts/Canesa.woff2') format('woff2'),
        url('./public/asset/fonts/Canesa.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Canela Trial';
    src: url('./public/asset/fonts/Canela-regular.woff2') format('woff2'),
        url('./public/asset/fonts/Canela-regular.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: 'Canela Trial';
    src: url('./public/asset/fonts/Canela-medium.woff2') format('woff2'),
        url('./public/asset/fonts/Canela-medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: 'Canela Trial';
    src: url('./public/asset/fonts/Canela-bold.woff2') format('woff2'),
        url('./public/asset/fonts/Canela-bold.woff') format('woff');
    font-weight: 700;
}

@font-face {
    font-family: 'Canela Trial';
    src: url('./public/asset/fonts/canela-thin.woff2') format('woff2'),
        url('./public/asset/fonts/canela-thin.woff') format('woff');
    font-weight: 100;
}

body {
    font-family: 'Canela Trial', sans-serif;
}

:root {
    --color-black-1: #2C1D19;
    --color-black-2: #404340;
    --color-black-3: #CDC5BA;
    --color-black-4: #2B2B2B;
    --color-black-5: #575757;
    --color-light-Warm: #E1D8CA;
    --color-gray-1: #636363;
}

/* @media (max-width: 1450px) {

    .adams-hand {
        width: 30%;
        height: auto;
    }

    .gods-hand {
        width: 25%;
        height: auto;
    }
} */
@media (max-width: 1340px) {
    .gods-hand {
        width: 25% !important;
        height: auto !important;
    }
    .adams-hand {
        width: 30% !important;
        /* height: 192px !important; */
    }
}
@media (max-width: 767px) {
    .gods-hand {
        width: 27% !important;
        height: auto !important;
    }
    .adams-hand {
        width: 27% !important;
        height: auto !important;
    }
}
 @media (max-width: 640px) {
    .adams-hand {
        width: 60% !important;
        left: -200px;
        position: relative;
    }

    .gods-hand {
        width: 60% !important;
        right: -225px;
        position: relative;
    }

    .custom-overflow {
        overflow: hidden;
    }
}
@media (max-width: 480px) {
    .adams-hand {
        left: -150px;
    }

    .gods-hand {
        right: -150px;
    }
}
@media (max-width: 420px) {
    .adams-hand {
        left: -120px;
    }

    .gods-hand {
        right: -120px;
    }
}
@media (max-width: 360px) {
    .adams-hand {
        left: -100px;
    }

    .gods-hand {
        right: -100px;
    }
}
/*
@media (max-width: 575px) {
    .gods-hand {
        right: -190px;
    }

    .adams-hand {
        width: 60% !important;
    }
}

@media (max-width: 480px) {
    .adams-hand {
        width: 50% !important;
        left: -145px;
    }

    .gods-hand {
        width: 170px !important;
        right: -170px;
    }
}

@media (max-width: 400px) {
    .adams-hand {
        width: 60% !important;
        left: -115px;
    }

    .gods-hand {
        right: -130px;
    }
}
@media (max-width: 360px) {
    .gods-hand {
        right: -120px;
    }
} */

@media (max-height: 800px) {
    .gods-hand {
        width: 320px;
        height: auto;
    }
    .adams-hand {
        width: 400px;
        height: auto;
    }
}

@media (max-height: 700px) {
    /* footer {
        margin-top: 20px;
    } */

    .gods-hand {
        /* width: 280px; */
        /* height: auto; */
    }
    .adams-hand {
        /* width: 300px; */
        /* height: auto; */
    }
}

.custom-overflow {
    overflow: hidden;
}

.custom-tooltip .tooltip-box {
    transition: all 0.3s ease;
    transform: translateX(-50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
}

.custom-tooltip:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.modal-animate {
    animation: modalFadeIn 0.3s ease-out;
}

body.modal-open {
    overflow: hidden;
}

/* Toast Animation */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.animate-slideIn {
    animation: slideIn 0.3s ease-out forwards;
}

.animate-slideOut {
    animation: slideOut 0.3s ease-in forwards;
}


