/* experience.css */

body.dark-background {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
}

.cyberhouse-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #ff5722;
    margin-bottom: 30px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff9800;
}

.experience-section {
    max-width: 800px;
    margin: 0 auto 50px;
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.experience-section h2 {
    color: #f8b400;
    margin-bottom: 20px;
}

.experience-section ul {
    list-style: disc;
    padding-left: 20px;
    color: #cccccc;
}

.experience-section ul li {
    margin-bottom: 10px;
}

.site-footer {
    text-align: center;
    border-top: 1px solid #333;
    padding: 20px;
    font-size: 0.9rem;
    color: #999;
}

.site-footer a {
    color: #ff5722;
    margin-left: 10px;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}
