/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center;
    background: url('RRHC_BANNER_.png') no-repeat center center fixed;
    background-size: cover;
}

/* Background Particles */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(30, 61, 93, 0.7);
}

.navbar a {
    color: #fff;
    padding: 10px;
    text-decoration: none;
}

.navbar a:hover {
    text-shadow: 0 0 10px cyan;
}

/* Sections */
.section {
    background: rgba(30, 61, 93, 0.9);
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(172, 195, 217, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease-in-out;
}

/* Make sections appear on scroll */
.section.show {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.button {
    background: linear-gradient(45deg, cyan, blue);
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    box-shadow: 0px 0px 15px cyan;
}

.button:hover {
    background: linear-gradient(45deg, blue, cyan);
    box-shadow: 0px 0px 25px cyan;
}

/* Reviews */
.reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    margin-bottom: 10px;
}

.review img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}
