/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: #20166c;
}

h1, h2, h3 {
    color: #20166c;
}

p {
    line-height: 1.6;
}

.btn {
    display: inline-block;
    background-color: #20166c;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #3e329c;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation Bar */
.navbar {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #20166c;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 20px;
    font-size: 16px;
    color: #333;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
}

#toggle-menu {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        width: 200px;
        display: none;
    }

    .nav-links a {
        margin: 15px;
    }

    .hamburger-menu {
        display: block;
    }

    #toggle-menu:checked ~ .nav-links {
        display: flex;
    }
}

/* Hero Section */
.hero-section {
    background-image: url('img/chill.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content .subtitle {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero-content .description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-content .btn {
    font-size: 18px;
}

.semi-transparent {
    background-color: rgba(0, 0, 0, 0.75); 
    color: white; 
    padding: 20px; 
    border-radius: 15px; 
  }

/* Section Titles */
section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* About Section */
.about-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-section img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 10px;
}

/* Who Section */
.who-section .who-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.who-section .card {
    flex: 1 1 calc(33% - 20px);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.who-section .card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.who-section .card p {
    font-size: 16px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .who-section .card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .who-section .card {
        flex: 1 1 100%;
    }
}

/* Events Section */
.events-section {
    background-color: #20166c;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.events-section p {
    font-size: 18px;
    margin-bottom: 10px;
}

.events-section h2 {
    color: #fff;
}

.events-section .btn {
    background-color: #fff;
    color: #20166c;
}

.events-section .btn:hover {
    background-color: #ddd;
}

.events-section a {
    color: rgb(0, 179, 255);
}


/* How It Works Section */
.how-it-works-section .steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.how-it-works-section .step {
    flex: 1 1 calc(33% - 20px);
    text-align: center;
    padding: 20px;
}

.how-it-works-section .step img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.how-it-works-section .step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.how-it-works-section .step p {
    font-size: 16px;
}

@media (max-width: 992px) {
    .how-it-works-section .step {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .how-it-works-section .step {
        flex: 1 1 100%;
    }
}

/* Get Involved Section */
.get-involved-section {
    background-color: #f5f5f5;
    text-align: center;
    padding: 60px 0;
}

.get-involved-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Books  */
#books ul {
    list-style-type: none;
    font-weight:bold; 
}


/* Contact Section */
.contact-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-section .contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    width: 100%;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #20166c;
    color: white;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}
