/* ==========================================================================
   02-BASE.CSS - Base Styles & Typography
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--dark-blue);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: var(--font-weight-black);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 30%, var(--mint-green) 60%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
    background-size: 200% 200%;
}

h2.section-title {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light-blue), var(--mint-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
    color: var(--white);
}

h4 {
    color: var(--light-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
}

p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: var(--font-weight-normal);
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Lists */
ul {
    list-style: none;
}