/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    padding: 20px;
    transition: background-color 0.3s, color 0.3s;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff8800;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2rem;
    color: #ff8800;
}

h2 {
    color: #cc6d00;
    margin-bottom: 10px;
}

section {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

ul {
    list-style-type: none;
    padding-left: 10px;
}

li {
    padding: 5px 0;
}

a {
    color: #ff8800;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #cc6d00;
}

footer {
    text-align: center;
    padding: 10px;
    background: #f0f0f0;
    border-radius: 8px;
}

/* Dark Mode */
.dark-mode {
    background-color: #0d1117;
    color: #c9d1d9;
}

.dark-mode header, .dark-mode section, .dark-mode footer {
    background: #161b22;
}

.dark-mode h1 {
    color: #ff8800;
}

.dark-mode h2 {
    color: #ffb366;
}

.dark-mode a {
    color: #ff8800;
}

.dark-mode a:hover {
    color: #ffb366;
}

/* Theme Toggle Button */
#theme-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff8800;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

#theme-toggle:hover {
    background: #cc6d00;
}

.dark-mode #theme-toggle {
    background: #ffb366;
    color: #0d1117;
}

.dark-mode #theme-toggle:hover {
    background: #ff8800;
}
