@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
    --primary: #dc3545;
    --secondary: #ffffff;

    --primary-light: #f86c6b;
    --primary-dark: #a71d2a;

    --primary-soft: #e64444;


    --text-primary: var(--secondary);
    --text-secondary: #212529;

}


section {
    @apply overflow-x-hidden;
}

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

.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}


.home-hero {
    background: #f8f9fa;
    background: linear-gradient(145deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.9) 50%, rgba(222, 226, 230, 0.85) 100%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.font-josefin {
    font-family: "Josefin Sans", sans-serif !important;
}

.font-inter {
    font-family: "Inter", sans-serif !important;
}

.tab-active {
    background-color: var(--secondary) !important;
    color: var(--danger) !important;
}

.hover-underline {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.hover-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

.hover-underline:hover::after {
    width: 100%;
}


.text-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.5rem;
    height: calc(1.5rem * 1);
}


.text-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 1.5rem;
    height: calc(1.5rem * 2.5);
}

.button-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    line-height: 2rem;
    height: calc(2em * 2.5);
}

.sitemaxwidth {
    max-width: 1800px !important;
    margin: auto !important;
    padding: 0 3rem;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    /* background-color: var(--primary-dark); */
    /* background-color: rgba(25, 25, 25, 0.4); */
    border-radius: 8px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    /* background-color: darken(var(--primary-dark), 10%); */
    /* background-color: rgba(25, 25, 25, 0.3); */
}

.custom-scrollbar::-webkit-scrollbar-button {
    display: none;
}

/* public/css/custom.css */
.card-shadow {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 40px 0px;
}

.page-link {
    /* background-color: var(--danger) !important; */
    color: var(--danger) !important;
}

.page-item.active .page-link {
    background-color: var(--danger) !important;
    border: 2px solid var(--danger) !important;
    color: white !important;
}

.iti__country-container{
    left: 10px !important;
}

.iti--inline-dropdown{
    width: 100% !important;
}

/* @media (max-width: 1400px) {
    .sitemaxwidth {
        max-width: 1200px !important;
        margin: auto !important;
    }
} */