/* =========================================
   GLOBAL RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================================
   HTML + BODY
========================================= */
html {
    scroll-behavior: smooth;
}


body {
           /* HEADER OFFSET – DO NOT TOUCH */
    background-color: #ffffff;
    color: #1e293b;
    line-height: 1.6;

}

::selection {
    background-color: var(--red);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--red);
    color: var(--white);
}


/* =========================================
   LINKS & BUTTONS
========================================= */
a {
    color: inherit;
    text-decoration: none;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    cursor: pointer;
}

/* =========================================
   IMAGES
========================================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
    user-select: none;
}

/* =========================================
   CONTAINER (OPTIONAL USE)
========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 15px;
}

/* =========================================
   SCROLLBAR (DESKTOP ONLY)
========================================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e63946;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c92e3a;
}

/* =========================================
   UTILITY CLASSES
========================================= */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* =========================================
   MAIN CONTENT SAFETY
========================================= */
main {
    display: block;
    width: 100%;
}
