body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #8C1D40, #FFC627); /* Dark Red to Yellow Gradient */
    color: #333;
    line-height: 1.6;
}

header {
    background: url('image.jpg') no-repeat center center;
    background-size: cover;
    color: #FFF;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    position: relative;
}

.logo {
    display: none; /* Hide the logo as it is now the background */
}

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

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFC627; /* Yellow color from the logo */
}

section {
    padding: 40px 20px;
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#about-us, #activities, #join-us {
    background-color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-size: 36px; /* Increase the size of the main header */
    color: #8C1D40; /* Dark Red color from the logo */
}

h2 {
    font-size: 28px; /* Increase the size of the subheaders */
    color: #8C1D40; /* Dark Red color from the logo */
}

#activities ul {
    list-style-type: none;
    padding: 0;
}

#activities ul li {
    margin: 10px 0;
    padding: 10px 0;
    background-color: rgba(255, 204, 39, 0.8); /* Yellow with slight transparency */
    border-radius: 5px;
}

#join-us ul.social-media {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

#join-us ul.social-media li {
    margin: 0 10px;
}

#join-us ul.social-media li a {
    text-decoration: none;
    color: #8C1D40; /* Dark Red color from the logo */
    font-weight: bold;
    transition: color 0.3s ease;
}

#join-us ul.social-media li a:hover {
    color: #FFC627; /* Yellow color from the logo */
}

footer {
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay to make footer stand out */
    color: #FFF;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    font-size: 14px;
}

footer a {
    color: #FFC627; /* Yellow color from the logo */
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}
