/* ===== Font Faces ===== */

@font-face {
    font-family: "Noto Sans";
    src: url("/assets/fonts/noto-english/NotoSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* ===== Base Styles ===== */
body,
html {
    font-family: "Noto Sans", sans-serif;
}

/* ===== Color Variables ===== */
:root {
    --color-primary: #183a53;
    --color-secondary: #3cb4e7;
    --color-secondary-blue: #00b6be;
    --color-ternary: #f3f6f9;
    --color-secondary-light: #b3ddf0;
    --color-text-dark: #1f1f1f;
    --color-dark-gray: #4b4b4b;
    --color-text-light-gray: #626262;
    --color-light-gray: #e3e7e9;
    --color-danger: #ed1941;
}

/* ===== Color Utilities ===== */
/* Background Colors */
.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.bg-secondary-blue {
    background-color: var(--color-secondary-blue);
}

.bg-ternary {
    background-color: var(--color-ternary);
}

.bg-secondary-light {
    background-color: var(--color-secondary-light);
}

.bg-danger {
    background-color: var(--color-danger);
}

.bg-dark-gray {
    background-color: var(--color-dark-gray);
}

.bg-light-gray {
    background-color: var(--color-light-gray);
}

/* Text Colors */
.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-secondary-blue {
    color: var(--color-secondary-blue);
}

.text-dark {
    color: var(--color-text-dark);
}

.text-dark-gray {
    color: var(--color-dark-gray);
}

.text-light-gray {
    color: var(--color-text-light-gray);
}

.text-danger {
    color: var(--color-danger);
}

.text-white {
    color: white;
}

/* ===== Typography ===== */
/* font family */
.font-noto {
    font-family: "Noto Sans", sans-serif;
}

/* Headings */
.h1-bold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 47px;
    line-height: 70px;
    letter-spacing: -0.5%;
}

.h2-bold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.25%;
}

.h3-bold,
.h3-semibold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.15%;
}

.h4-bold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: -0.15%;
}

.h5-semibold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
}

.h6-medium {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

.h6-bold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

/* Body Text */
.body-regular {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
}

.body-small {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0%;
}

/* CTA Text */
.cta-regular {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.5%;
}

.cta-big {
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
}

.cta-small {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5%;
}

/* Captions */
.caption-big-bold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
}

.caption-big-semibold {
    font-family: "Noto Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5%;
}

.caption-big-medium {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0%;
}

.caption-small-medium {
    font-family: "Noto Sans", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.2%;
}

/* ===== Scrollbar Styling ===== */
/* Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: rgba(221, 221, 221, 1);
    border-radius: 9999px;
}

::-webkit-scrollbar-corner {
    background: transparent; /* hide corner in both directions */
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgb(122, 122, 122) transparent;
}

/* ===== Utility Classes ===== */
/* Background Gradient */
.bg-grad {
    background: linear-gradient(to right, #3cb4e7 0%, #1eb5d3 30%, #00b6be 60%);
}

/* RTL Support */
[dir="rtl"] .no-rtl-flip {
    transform: none !important;
}

/* Breadcrums css */
.breadcrumb-section {
    min-height: 300px;
}

    .breadcrumb-section img {
        transition: transform 0.3s ease;
    }

    .breadcrumb-section:hover img {
        transform: scale(1.05);
    }

@media (max-width: 768px) {
    .breadcrumb-section {
        min-height: 200px;
    }

    .breadcrumb-content h1 {
        font-size: 2rem;
    }
}
