/* Dark Theme */
body {
    background-color: #121212;
    color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

/* Full-screen Hero Section */
#hero {
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)),url('../img/pexels-pixabay-270366.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

#hero h1 {
    font-size: 6rem;
    font-weight: 700;
}

#hero p {
    font-size: 2.5rem;
}

/* Typing Animation */
.typing-animation {
    display: inline-block;
    border-right: 4px solid #fff;
    padding-right: 5px;
    animation: blink 0.6s steps(1) infinite;
}

@keyframes blink {
    0%, 50% {
        border-color: white;
    }
    50%, 100% {
        border-color: transparent;
    }
}

#typed-text {
    font-weight: bold;
    color: #adebb3;
}

.forename {
    font-weight: bold;
    color: #8d8d8d;
}

.carousel-item img {
    max-height: 500px;
    object-fit: cover;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1rem;
    border-radius: 0.5rem;
}

footer {
    background-color: #212529;
    padding: 20px 0;
}

.footer-icons i {
    margin-right: 15px;
    font-size: 1.5rem;
}

.nav-link.active {
    font-weight: bold;
}

.skills-wrapper {
    text-align: center;
}
.skills-wrapper ul {
    color: #ffffff;
    list-style-type: disc;
    list-style-position: inside;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.skills-wrapper li {
    float: left;
    width: 100%;
}

.heading {
    font-weight: bold;
}

a.mail-contact {
    font-weight: bold;
    color: #adebb3;
    text-decoration: none;
}