/* ===== Reset & Base ===== */
html {
    overflow-x: hidden;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

body {
    overflow-x: hidden;
    font-family: 'Ubuntu', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FCFCFC;
}

/* ===== Scrollbar (WebKit) ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 9999px;
    min-height: 20px;
    transition: all 0.3s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-track-piece {
    margin: 2px 0;
}

/* ===== Flexbox Utilities ===== */
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-shrink { flex-shrink: 1; }
.flex-grow { flex-grow: 1; }

/* ===== Position Utilities ===== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* ===== Size Utilities ===== */
.h-100 { height: 100%; }

/* ===== Typography ===== */
h1 {
    font-family: 'Ubuntu', sans-serif;
    font-size: 40px;
}

h3 {
    font-weight: normal;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
}

.text-primary { color: #F6811C; }
.text-grey { color: rgba(0, 0, 0, 0.448); }
.text-grey-darken { color: rgba(0, 0, 0, 0.646); }

/* ===== Buttons ===== */
.primary-button {
    text-align: center;
    text-decoration: none;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 30px;
    font-weight: bold;
    color: white;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #F6811C 0%, #FCAB17 100%);
    transition: all 0.3s ease-in-out;
    display: inline-block;
}

.primary-button:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.primary-button:active {
    transform: scale(0.98);
}

/* ===== Gradient Bar ===== */
.gradient-bar {
    z-index: 2;
    width: 100%;
    height: 40px;
    background: linear-gradient(to right, #F14F22, #FCAB17);
}
