body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar adjustments */
.navbar {
    background-color: rgba(0, 0, 0, 0.7) !important; /* Semi-transparent background */
}
.navbar-brand {
    font-weight: bold;
}

/* Hero Section */
.parallax-section {
    height: 100vh; /* Full viewport height */
    background-attachment: fixed; /* Key for parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.parallax-section h1, .parallax-section h2 {
    font-size: 4rem; /* Adjust as needed */
    margin-bottom: 20px;
}

.parallax-section p.lead {
    font-size: 1.5rem;
}

/* Section Padding */
section {
    padding: 80px 0;
}

/* Card Styling for Activities */
.card {
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.logo_left {
    text-align: center;
    margin-bottom: 2em;
}

/* Footer Styling */
footer {
    background-color: #222;
    padding: 30px 0;
}

.ac-button {
    background-color: white !important;
}