/* General Styles */

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.text-center {
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #31708f;
}

/* Header Styles */

header {
    background: #0a6d65;
    color: #fff;
    padding: 20px 0;
    border-bottom: 3px solid #31708f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    width: 100px;
    height: auto;
    margin-right: 20px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    flex: 1;
}

header nav {
    flex: 2;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links li {
    display: inline;
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: 0.3s ease;
}

.is-active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.is-active .bar:nth-child(2) {
    opacity: 0;
}

.is-active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Hero Section Styles */

.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 150px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.primary-button {
    display: inline-block;
    text-decoration: none;
    background: #50b3a2;
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.primary-button:hover {
    background: #31708f;
    transform: translateY(-5px);
}

/* About Section Styles */

.about {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    color: #50b3a2;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.about-text {
    max-width: 600px;
    text-align: left;
    line-height: 1.8;
    padding: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

/* Programs Section Styles */

.programs {
    background: #f4f4f9;
    padding: 60px 0;
}

.programs h2 {
    color: #50b3a2;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.program-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.program-item:hover .program-image {
    opacity: 0.8;
}

.program-item h3 {
    color: #31708f;
    font-size: 1.5em;
    margin: 20px 0 10px 0;
    text-align: center;
}

.program-item p {
    padding: 0 15px 15px;
    text-align: center;
    line-height: 1.5;
}

/* Contact Section Styles */

.contact {
    background-color: #fff;
    padding: 60px 0;
}

.contact h2 {
    color: #50b3a2;
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
}

.contact-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.contact-details {
    max-width: 600px;
    text-align: left;
    line-height: 1.8;
    padding: 20px;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #31708f;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: start;
    margin-top: 10px;
}

.social-links li {
    margin-right: 15px;
}

.social-links a img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.1);
}

/* Donate Section Styles */

.donate {
    background: #f4f4f9;
    padding: 60px 0;
    text-align: center;
}

.donate h2 {
    color: #50b3a2;
    font-size: 2.5em;
    margin-bottom: 20