/* Color Palette - Ocean-like Theme */
:root {
    --blue: #1e3a5f;        /* Deep ocean blue */
    --green: #2d5a4e;       /* Sea green */
    --white: #ffffff;       /* White */
    --sandy-tan: #d4c5a9;   /* Sandy tan */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: var(--blue);
    background-color: var(--white);
}

/* Youth-Led Badge */
.youth-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(5, 179, 248, 0.2); /* Blue */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px; /* Pill shape */
    color: black;
    font-weight: 500;
    font-size: 0.9rem;
    width: fit-content;
    margin: 1rem auto 0rem auto;
    backdrop-filter: blur(10px); /* Glass effect */
}

.heart-icon {
    color: #ff6b6b; /* Orange-red heart color */
    font-size: 1rem;
}

/* Add your custom styles here */
nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* left space, center menu, right space */
    align-items: center;
    padding: 0.5rem 2rem 0 2rem;
    background-color: var(--white);
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.logo-container {
    justify-self: start; /* logo stays left */
    margin-top: -50px;
    margin-bottom: 0;
    display: flex;
    padding: 0;
    align-items: center;
}

.menu-container {
    justify-self: center; /* menu stays perfectly centered */
    margin-top: 10px;
}

.logo-container img {
    width: 120px;
    height: auto;  /* Keeps image proportional */
    cursor: pointer;
    margin: 0; /* Remove any fixed margin */
}

.menu-container ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.menu-container ul li a {
    text-decoration: none;
    color: var(--blue);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.2rem 0.2rem;
}

.menu-container ul li a:hover {
    color: var(--green);
}

/* Hero Section */
.hero {
    min-height: auto; /* Full screen height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 2rem 2rem 2rem;
    text-align: center;
    padding-top: 2rem;
    background: linear-gradient(135deg, #2c7a9e 0%, #4dd0e1 100%);
}

.gradient-divider {
    width: 100%;
    height: 30px; /* Smaller height for the second bar */
    background: linear-gradient(180deg, #5fb8d1 0%, #88cfe0 100%); /* Lighter blue */
}

/* Donate Button Styling */
.donate-button {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    margin-top: 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background-color: var(--white);
}

.purpose {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem;
    min-height: 100vh; /* Full screen height */
    background-color: lightblue;
    text-align: center;
}

.purpose h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(62, 164, 62);

}

.link-card{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
}

.quick-link-section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.link-text p {
    font-size: 14px;
    color: #7f8c8d;
    text-align: left;
    margin: 0; /* Removes default paragraph margin */
}

.link-text {
    text-align: left;
}

.link-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    text-align: left;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fef3e8; /* Light peach/tan background */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0; /* Prevents the box from shrinking */
}

.link-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.icon-arrow {
    font-size: 30px;
}

.link-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-link-description {
    margin-bottom: 2rem;
}

footer {
    background-color: #34495e; /* Dark blue-gray */
    color: white;
    padding: 40px 20px 20px 20px;
    width: 100%;
}

.footer-bottom {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #95a5a6;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

.footer-left-text {
    margin-left: -150px;
    text-align: left;
}

.footer-right-text {
    margin-right: -150px;
    text-align: right;
}

.footer-content h3 {
    margin-bottom: 15px; 
}

.quick-link-section div.explore {
    color: rgb(62, 164, 62)
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.events {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

.events h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(62, 164, 62);
}



.purpose-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    justify-items: center;
}

.purpose-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;    
    padding-top: 5rem;         
    text-align: left; 
    margin-top: 0;
    padding-top: 2rem;

}

.purpose-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.purpose p {
    margin-top: 1rem;
}

.purpose-box h3 {
    padding-top: 1rem;
}

.mini-box {
    width: 60px;
    height: 60px;
    background-color: rgba(5, 179, 248, 0.15);
    border-radius: 12px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-box:hover {
    transform: translateY(-2px);
}

.events-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    justify-items: center;
}

.events-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;    
    padding-top: 5rem;         
    text-align: left; 
    margin-top: 0;
    padding-top: 2rem;
}

.calendar-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0; /* Prevents the box from shrinking */
}

.calendar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.events-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.event-category {
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
}

.category-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
    text-align: left;
    margin-bottom: 1.5rem;
}

.category-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-items: center;
}


.events-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;    
    text-align: left;
}

.detail-item {
    display: flex;
    margin-top: 10px;
}

.detail-item span {
    font-weight: bold;
    font-size: 14px;
    color: #333;
    margin-left: 8px;
}

.category-heading {
    text-align: center;
    width: 100%;
}

.event-category {
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    background-color: var(--sandy-tan); 
    padding: 2rem; 
    border-radius: 12px; 
}

.campaigns h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(62, 164, 62);
}

.campaigns {
   display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem;
    min-height: 100vh; /* Full screen height */
    background-color: lightblue;
    text-align: center;
}

.campaigns > p {
    font-size: 32px;
    font-weight: bold;
}

.events > p {
    font-size: 32px;
    font-weight: bold;
}

.campaign-box {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.campaign-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.campaign-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}


 /* Campaign details */
.campaign-details {
    margin-top: 1rem;
}

.campaign-category {
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
    background-color: var(--sandy-tan); 
    padding: 2rem; 
    border-radius: 12px; 
}

.campaign-category .category-boxes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for side-by-side */
    gap: 2rem;
}

.campaign-category {
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 1200px;
    background-color: var(--sandy-tan); 
    padding: 2rem; 
    border-radius: 12px;
}

.partnership {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem;
    min-height: 100vh; 
    text-align: center;
}

.partnership h2 {
    font-size: 30px;
    font-weight: 600;
    color: rgb(62, 164, 62);
}

.partnership p {
    max-width: 800px;
    margin-top: 1rem;
    font-size: 18px;
    color: var(--blue);
}

.partnership > h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--blue);
    margin: 0;
}


/* Partnership Options */
.partnership-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.partnership-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.partnership-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.partnership-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
}

.partnership-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Section */
.partnership-contact {
    background-color: var(--sandy-tan);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    text-align: center;
}

.partnership-contact h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1rem;
}

.partnership-contact p {
    font-size: 18px;
    color: var(--blue);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.email-icon {
    font-size: 24px;
}

/* Why Partner Section */
.why-partner {
    margin: 4rem 0 3rem 0;
}

.why-partner h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.partnered-grid {
    grid-template-columns: repeat(2, 1fr); /* looks cleaner for names */
    max-width: 800px;
}

.partnered-card {
    padding: 1.5rem;
}

.partnered-card h3 {
    margin: 0;
    font-size: 20px;
}
