/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

header {
    background: #1e1e2f;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

button {
    background-color: #ff9800;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    border-radius: 5px;
}

button:hover {
    background-color: #e68900;
}

section {
    padding: 50px;
    text-align: center;
}

#home {
    background: #1e1e2f;
    color: white;
    padding: 100px 20px;
}

#about, #portfolio, #blog, #contact {
    background: white;
    margin: 20px auto;
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
    text-align: center;
    padding: 20px;
    background: #1e1e2f;
    color: white;
}

/* Dark Mode */
.dark-mode {
    background-color: #1e1e2f;
    color: white;
}

.dark-mode header, .dark-mode footer {
    background: #121223;
}

.dark-mode #about, .dark-mode #portfolio, .dark-mode #blog, .dark-mode #contact {
    background: #252538;
    color: white;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}
