/* =================================================================
   Base Styles (HTML, Body, Typography, Variables)
   ================================================================= */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #121212;
    color: #ffffff;
    font-family: sans-serif;
    margin: 0;
    transition: background-color 0.3s, color 0.3s;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

a {
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
}

i {
    margin-right: 8px;
}

/* --- Light Mode Theme --- */
body.light-mode {
    background-color: #f0f0f0;
    color: #333333;
}

body.light-mode nav a {
    color: #333333;
}

body.light-mode .hero-text {
    color: #333333;
}

body.light-mode .social-links a {
    color: #333333;
}

/* --- Glitch Effect --- */
.glitch {
    position: relative;
    color: #fff;
}

body.light-mode .glitch {
    color: #333;
}

/* --- Hero Text Specifics --- */
.hero-text h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero-text p {
    font-size: 1.2em;
    margin: 5px 0 0;
}

#typed-text {
    color: #00aaff;
}

/* About Section Specifics */
#about .about-text p {
    font-size: 1.1em;
    line-height: 1.8;
}
