/* =============================================
   BASE.CSS — Reset, body, typography dasar, container
   File ini mengatur fondasi tampilan website.
   ============================================= */

/* --- Reset Default Browser --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--deep-blue);
    background: var(--gradient-sky);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

a,
button {
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Container Utama --- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Custom Cursor --- */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--sky-600);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.cursor-follower {
    position: fixed;
    width: 44px;
    height: 44px;
    border: 2px solid var(--sky-400);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.25s var(--ease-smooth),
        width 0.3s var(--ease-cloud),
        height 0.3s var(--ease-cloud),
        background 0.3s ease;
    background: rgba(56, 189, 248, 0.05);
    will-change: transform, width, height;
}

.cursor-follower.hover {
    width: 70px;
    height: 70px;
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--sky-300);
}

/* --- Typography: Text Gradient --- */
.text-gradient {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Light gradient untuk background gelap */
.about .text-gradient {
    background: linear-gradient(135deg, #bae6fd 0%, #7dd3fc 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}