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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

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

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: bold;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-weight: bold;
    transition: all 0.3s ease;
}

input {
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    width: 100%;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .email-form {
        flex-direction: row;
        align-items: center;
    }
    
    .email-form input {
        flex: 1;
    }
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 56px; /* Increased by 40% from original 40px */
    width: auto;
}

.contact-container {
    display: flex;
    align-items: center;
}

.contact-info {
    height: auto;
    max-height: 40px;
}

.join-button-pink {
    background-color: #ff8cd9;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
}

.join-button {
    background-color: #20B2AA;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
}

.find-out-more {
    background-color: #20B2AA;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Account for fixed header */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Mission Section */
.mission {
    background: url('../images/Mission.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.mission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.mission .container {
    position: relative;
    z-index: 2;
}

.mission-statement {
    font-size: 1.5rem;
    max-width: 800px;
    margin-bottom: 3rem;
}

.mission-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .mission-details {
        grid-template-columns: 1fr 1fr;
        align-items: flex-start;
    }
    
    .mission-text {
        padding-right: 2rem;
    }
    
    .values-grid {
        padding-left: 2rem;
    }
}

.mission-text ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.mission-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #20B2AA;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-icon {
    width: 80px; /* Increased from 60px */
    height: 80px; /* Increased from 60px */
    margin-bottom: 1rem;
    object-fit: contain;
}

/* Leadership Section */
.leadership {
    background-color: white;
    color: black;
}

.leadership-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .leadership-features {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .leadership-text {
        padding-right: 2rem;
    }
    
    .leadership-diagram {
        padding-left: 2rem;
    }
}

.leadership-text ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.leadership-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #20B2AA;
}

.venn-diagram {
    width: 100%;
    max-width: 500px; /* Increased from 400px */
    border-radius: 20px;
    display: block;
    margin: 0 auto;
}

/* Goals Section */
.goals {
    background: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.goals::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.goals .container {
    position: relative;
    z-index: 2;
}

.goals-list {
    margin: 3rem 0;
}

.goal-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.goal-icon {
    width: 50px;
    height: 50px;
    margin-right: 1.5rem;
    object-fit: contain;
}

.highlight-yellow {
    color: #FFD700; /* Yellow color to match icons */
}

.goals-tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin: 3rem 0;
    text-align: center;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .stakeholders-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .stakeholders-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.stakeholder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stakeholder-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    object-fit: contain;
}

/* Global Community Section */
.global-community {
    background-color: white;
    color: black;
}

.community-intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .community-intro {
        grid-template-columns: 3fr 2fr;
    }
}

.community-text ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.community-text ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #20B2AA;
}

.contact-cta {
    color: #20B2AA;
    font-weight: bold;
}

.community-locations {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-card {
    background-color: #f5f5f5;
    color: black;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    margin-bottom: 1.5rem;
}

.location-link {
    color: #20B2AA;
    text-decoration: none;
    font-weight: bold;
}

.location-link:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #000;
    padding: 3rem 0;
    text-align: center;
}

.copyright {
    color: white;
    font-size: 1rem;
}
