
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


@font-face {
    font-family: 'Montserrat';
    src: url('../font/Montserrat.ttf') format('truetype');
}

:root {
    --primary-color: #dc2626; 
    --primary-color-low: rgba(220, 38, 38, 0.5);
    --primary-color-dark: #991b1b;

    --secondary-color: #1f2937; 
    --secondary-color-low: rgba(31, 41, 55, 0.5);
    --secondary-color-dark: #111827;

    --tertiary-color: #f3f4f6;
    --tertiary-color-low: rgba(243, 244, 246, 0.5);
    --tertiary-color-dark: #e5e7eb;

    --bg-color: #F8FAF8;
    --bg-color-low: rgba(255, 255, 255, 0.5);
    --bg-color-dark: #f9fafb;

    --text-dark: #111827;
    --text-dark-low: rgba(17, 24, 39, 0.7);
    --text-dark-dark: #000000;

    --text-light: #ffffff;
    --text-light-low: rgba(255, 255, 255, 0.7);
    --text-light-dark: #f3f4f6;

    --button-color: #dc2626; 
    --button-color-low: rgba(220, 38, 38, 0.5);
    --button-color-dark: #991b1b;

    --card-bg: #ffffff;
    --card-bg-low: #f9fafb;
    --smoothline-color: var(--tertiary-color);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background-color: var(--bg-color);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    body {
        padding-top: 60px; 
    }
}

a {
    text-decoration: none;
    color: var(--text-dark);
}

i {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

button:focus {
    outline: none;
}

button:active {
    outline: none;
}

button:hover {
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0;
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}
h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}
h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

::-webkit-scrollbar-track {
    background-color: var(--bg-color);
}



body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

section {
    display: flex;
    position: relative;
}
