/* src/styles/01-base.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--evmt-navy-dark);
    font-family: var(--font-primary);
    color: var(--evmt-white);
    overflow-x: hidden;
    line-height: 1.6;
}

#header-placeholder {
    min-height: 80px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   SCROLLBAR CUSTOMIZATION
   ========================= */
/* Width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    /* For horizontal scrollbars */
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Handle on hover (Gold Gradient) */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a67c00 0%, #D3A02F 50%, #F0D075 100%);
    box-shadow: 0 0 10px rgba(211, 160, 47, 0.3);
}