body {
    background-color: #E6B2BA; /* Fallback color if the image doesn’t load */
    height: 100vh; /* Ensure full viewport height */
    margin: 0;
    padding: 0;

    /* Background Image */
    background-image: url('./../img/background.webp');
    background-size: cover; /* Ensures full coverage */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps background fixed */

    /* Text Color */
    color: rgb(193, 183, 183);
}

/* Optional: Make sure the content fills the full viewport */
html, body {
    min-height: 100vh;
}

/* Improve text readability with a slight background overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay for better contrast */
    z-index: -1; /* Behind the content */
}


body > .container-fluid {
    padding-top: 4rem;
}



html {
    scrollbar-width: none;
    
}

.navbar {
    background-color: transparent !important;
    box-shadow: none; /* Removes any shadow */
}

.progress-bar-right {
    position: fixed;
    height: 90vh;
    width: 1.5px;
    right: 5rem;
    top: 0px;
    background-color: rgb(210, 141, 141);
}

.progress-bar-left {
    position: fixed;
    height: 90vh;
    width: 1.5px;
    left: 5rem;
    top: 0px;
    background-color: rgb(210, 141, 141);
}

.progress-inner-right {
    background-color: rgb(87, 46, 46);
    height: 100%;
    transition: height 1s ease-in-out;
}

.progress-inner-left {
    background-color: rgb(87, 46, 46);
    height: 100%;
    transition: height 1s ease-in-out;
}

.active {
    text-decoration: underline;
}

footer {
    position: fixed;
    right: 10rem;
    bottom: 10vh;
}

#side-icons {
    position: fixed;
    bottom: 10vh;
    left: 1.5rem;
}

#side-icons ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none; /* Removes bullet points */
    padding: 0; /* Removes extra space */
    margin: 0; /* Optional: Remove default margin */
}

#about {
    display: grid;
    grid-template-columns: 3fr 2fr;
}

.about-img {
    margin-top: 0;
}

#experiences img {
    border: 2px solid rgb(37, 54, 69);
}

#contact > .container {
    display: flex;
    flex-direction: row;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.appear-text {
    opacity: 0; /* Start hidden */
    animation: slideUpFade 800ms ease-out forwards;
}

.appear-text-delay {
    opacity: 0; /* Start hidden */
    animation: slideUpFade 800ms ease-out forwards;
    animation-delay: 200ms;
}

@media (min-width: 1200px) {


    #about > * {
        margin-top: 150px;
    }
}

@media (max-width: 992px) {
    #about > * {
        margin-top: 0;
    }
}

