/* Add Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Basic Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

/* General Section Styling */
section {
    padding: 60px 20px;
    margin-top: 50px; 
}

section h1 {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

/* Apply Lobster font to all section titles */
section h1 {
    font-family: 'Lobster', cursive;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    font-size: 2.5em;
    color: #443;
    text-shadow: 1px 1px 2px #000;
}



header ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

header li {
    margin: 0 15px;
}

header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    position: relative;
    height: 100vh; /* Full viewport height */
    background: url('images/nussiness.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}


.logo {
    position: sticky;
    top: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    z-index: 10;
}

.logo img {
    width: 150px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}


.hero h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.about-section, .programs-section, .involved-section {
    background: #f4f4f4;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.involvement-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.option-item {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

