* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



html { 
    scroll-behavior: smooth; 
}


body {
    font-family: 'Lora', serif; 
    color: #000;
    background-color: #F2F2EB;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Header styles */
header {
    padding: 2px 0;
    border-bottom: 1px solid #F2F2EB;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    flex: 0 1 auto;
    margin-right: 200px; 

}

.logo img {
    max-height: 200px; 
}

.nav-links {
    flex: 1 1 auto;
    display: flex;
    list-style-type: none;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 25px;
    
}


.nav-links li {
    position: relative;
}


.nav-links a {
    text-decoration: none;
    color: #0D0D0D;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-links a.active {
    color: #1d5b1d;
    font-weight: bold;
    border-bottom: 2px solid #1d5b1d;
}

.link-item a:hover {
    color: #5aba4a; 
}

.nav-links li::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color:  #5aba4a;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links li:not(:has(> a.active)):hover::after { 
    width: 100%;
}




/* Slide Menu */
.menu-toggle {
    display: none;
    position: fixed;
    top: 63px;
    right: 15px;
    z-index: 20;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #0D0D0D;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}
.menu-toggle span:nth-child(2) {
    top: 10px;
}
.menu-toggle span:nth-child(3) {
    top: 20px;
}
.menu-toggle.open span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    right: -60px;
}
.menu-toggle.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

.menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100%;
    background: #f1f1f1;
    transition: left 0.3s ease;
    z-index: 10;
    
}
.menu.active {
    right: 0;
}

.nav-menu a.activated {
    color: #fff;
    font-weight: bold;
    background-color: #1e3e72;
}

.menu ul {
    padding: 0;
    list-style-type: none;
    margin-top: 8rem;
}
.menu ul li a {
    display: block;
    padding: 15px;
    color: #000;
    text-decoration: none;
}

.menu ul li a:not(.activated):hover {
    color: #333333;
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
}
.overlay.active {
    display: block;
}

.desktop-menu {
    display: block;
    background: #f1f1f1;
    padding: 10px 0;
}
.desktop-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.desktop-menu ul li {
    margin: 0 15px;
}
.desktop-menu ul li a {
    text-decoration: none;
    color: #000;
}





/*Hero Section */
.hero {
    background-color: #1d5b1d;
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
  
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.hero-text {
    flex: 1;
}
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-image {
    flex: 1;
    position: relative;
}
.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.volunteer-btn {
    display: inline-block;
    background-color: #d32f2f;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.volunteer-btn:hover {
    background-color: #b71c1c;
}



/* Mission Statement Section */
.mission-statement {
    background-color: #F2F2EB; 
    text-align: center;
    padding: 60px 0;
    font-family: 'Lora', serif;
}

.mission-statement h2 {
    font-size: 2.5rem; 
    color: #111;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto 30px;
    max-width: 900px;
}

.learn-more-btn {
    display: inline-block;
    background-color: #1e3e72;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease, padding-right 0.3s ease;
    position: relative;
}


.learn-more-btn::after {
    content: '→';
    position: absolute;
    right: -20px;
    opacity: 0;
    transition: right 0.3s ease, opacity 0.3s ease; 
}

.learn-more-btn:hover::after {
    right: 10px; 
    opacity: 1; 
}

.learn-more-btn:hover {
    background-color: #1e3e95;
    padding-right: 40px; 
}


/* Projects Section */
.projects-section {
    padding: 60px 20px;
    background-color: #F2F2EB;
    text-align: center;
}

.projects-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #111;
}

.projects-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.project-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 30%;
    padding: 20px;
    transition: transform 0.3s ease;
}

.project-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.project-card h3 {
    font-size: 1.5rem;
    color: #111;
    margin-top: 15px;
}

.project-card p {
    font-size: 1rem;
    color: #555;
    margin: 15px 0;
}

.project-card a {
    text-decoration: none;
    color: #1e3e72;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.project-card a:hover {
    color: #1d5b1d;
}

.view-all-btn {
    display: inline-block;
    margin-top: 40px;
    background-color: #1e3e72;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #1e3e95;
}


/* Donation Section */
.donation-section {
    background-color: #1d5b1d;
    padding: 60px 20px;
    text-align: left;
}

.donation-content {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.donation-text {
    flex: 1;
    margin-right: 40px;
}

.donation-text h2 {
    font-size: 2rem;
    color: #F5F5F5;
    margin-bottom: 10px;
}

.donation-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #FAFAFA;
}


.donation-form {
    flex: 1; 
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.donation-type {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.donation-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: 2px solid #1e3e72;
    background-color: transparent;
    color: #1e3e72;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-btn.active {
    background-color: #1e3e72;
    color: #fff;
}

.amount-options {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: 1px solid #1e3e72;
    background-color: #fff;
    color: #1e3e72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover, #monthly:hover {
    background-color: #1e3e72;
    color: #fff;
}

.amount-btn.active {
    background-color: #1e3e72; 
    color: #fff;                
    border-color: #1e3e72;  
}


.custom-amount {
    margin-bottom: 20px;
    text-align: center;
}

.custom-amount input {
    padding: 10px;
    width: 150px;
    font-size: 1rem;
    text-align: center;
    margin-left: 3px;
}

.currency {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.donate-submit {
    display: block;
    width: 100%;
    padding: 12px 30px;
    background-color: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donate-submit:hover {
    background-color: #b71c1c;
}


/* Join Us Section Styling */
.join-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1e3e72;
    padding: 40px; 
    color: #fff;
    margin: 100px 0;
}

  
  /* Text Styling */
.join-text h2 {
    font-size: 2.5rem; 
    font-weight: bold;
    margin: 0;
    max-width: 500px;
    margin-left: 100px;
}
  
  /* Form Styling */
.join-form {
    display: flex;
    align-items: center;
}
  
.join-form input[type="email"] {
    padding: 15px; 
    border: none;
    border-radius: 4px;
    margin-right: 15px;
    width: 300px; 
    box-sizing: border-box;
    font-size: 18px;
}
  
.join-form button {
    padding: 15px 30px; 
    background-color: #d32f2f; 
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}


/*Partners Section*/
.partners-section {
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.column {
    flex: 1 1 45%;
    background-color: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.column h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.column p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.column a {
    display: inline-block;
    margin-bottom: 15px;
    color: #0056b3;
    text-decoration: none;
}

.column a:hover {
    text-decoration: underline;
}

.partner-logo img, .tv-image img {
    width: 200px;
    height: auto;
    border: 1px solid #e0e0e0;
    padding: 5px;
    background-color: #fff;
    transition: transform 0.3s ease;
}


/*Footer Section*/
footer {
    background-color: #1F2833;
    color: #fff;
    padding: 30px 0;
}
  
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
  
.footer-section {
    flex: 1;
    padding: 30px;
}
  
.footer-section h3 {
    color: #5aba4a;
    margin-bottom: 15px;
}
  
.footer-section p,
.footer-section a {
    color: #fff;
    text-decoration: none;
}
  
.footer-section a:hover {
    text-decoration: underline;
}
  
.footer-section ul {
    list-style: none;
    padding: 0;
}
  
.footer-section ul li {
    margin-bottom: 10px;
}
  
.footer-section ul li a {
    color: #fff;
}
  
.footer-section .social a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}
  
.footer-section .social a:hover {
    color: #ffcc00;
}
  
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1.5px solid #444;
    margin-top: 30px;
}
  
.footer-bottom p {
    margin: 0;
}
  