/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #333; /* Add color to all text */
}

header {
    background-color: #333;
    color: #fff;
    padding: 5px;
    text-align: center;
    position: relative;
}

.backbtn {
    position: fixed;
    z-index: 9999;
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transition: color 0.3s ease;
}

.backbtn:hover {
    background-color: #11d84d;
    color: #fff;
}

.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('rwanda.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

nav {
    background-color: #333;
    padding: 10px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav li {
    margin: 0 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
}

nav a:hover {
    background-color: #555;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

section {
    padding: 20px;
    color: #2c2c2c;
    background-color: rgba(255, 255, 255, 0.6);
    margin: 20px;
    border-radius: 10px;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

footer p {
    margin: 0;
}

.scrollToTopBtn {
    position: fixed;
    bottom: 45px;
    right: 20px;
    background-color: #333;
    color: #fff;
    width: 70px;
    height: 50px;
    border: none;
    border-radius: 10px;
    font-size: 24px;
    cursor: pointer;
    display: none;
    opacity: 0.5; /* Set initial opacity */
    transition: opacity 0.3s; /* Add transition for smooth effect */
}

.scrollToTopBtn:hover {
    background-color: #555;
    opacity: 1; /* Increase opacity on hover */
}
