:root {
    --primary: #2D5016;
    --primary-light: #4A7C23;
    --secondary: #8B4513;
    --accent: #D4A574;
    --cream: #FDF8F3;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #6b7280;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, #fff9f0 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(45,80,22,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-text h1 span {
    display: block;
    font-size: 1.8rem;
    color: var(--secondary);
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.stats-bar {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.welcome {
    background: var(--cream);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.director-card {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
}

.director-card::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -20px;
    left: 20px;
}

.director-label {
    display: inline-block;
    background: var(--primary);
    color: var(--light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.director-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.director-card blockquote {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature {
    color: var(--secondary);
    font-weight: 600;
}

.welcome-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.empowerment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.empowerment-card {
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

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

.empowerment-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.empowerment-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.empowerment-card p {
    color: var(--gray);
}

.president-section {
    background: var(--primary);
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.president-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.president-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.president-badge {
    text-align: center;
}

.president-badge .badge-circle {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255,255,255,0.2);
}

.president-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.president-badge p {
    opacity: 0.8;
}

.president-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 25px;
}

.president-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.products {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 30px;
    color: var(--light);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-header h4 {
    font-size: 1.4rem;
}

.product-body {
    padding: 30px;
}

.product-body p {
    color: var(--gray);
    margin-bottom: 20px;
}

.call-to-action {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    border: 2px solid var(--accent);
}

.call-to-action h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.partners-section {
    background: var(--light);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.partner-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.partner-card h5 {
    color: var(--primary);
    font-size: 1.1rem;
}

.challenges {
    background: var(--cream);
}

.challenges-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.challenge-card {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}

.challenge-card:hover {
    transform: translateY(-8px);
}

.challenge-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.challenge-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.challenge-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.causes-section {
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.causes-section h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.causes-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.causes-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: var(--cream);
    border-radius: 10px;
    transition: all 0.3s;
}

.causes-list li:hover {
    background: rgba(45,80,22,0.08);
}

.cause-icon {
    color: #c0392b;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.causes-list li span:last-child {
    color: var(--dark);
    line-height: 1.6;
}

.causes-list li strong {
    color: var(--primary);
}

.source-note {
    text-align: center;
    margin-top: 40px;
    color: var(--gray);
    font-size: 0.9rem;
}

.climate-section {
    background: var(--light);
}

.climate-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.climate-intro p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.climate-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.climate-stat {
    background: var(--cream);
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
    min-width: 200px;
}

.stat-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-desc {
    color: var(--gray);
    font-size: 0.9rem;
}

.green-fuels-section {
    margin-bottom: 60px;
}

.green-fuels-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.green-fuels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.green-fuel-card {
    background: var(--primary);
    color: var(--light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.fuel-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.green-fuel-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.green-fuel-card p {
    opacity: 0.9;
    line-height: 1.7;
}

.smart-agronomy-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.agronomy-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.agronomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.agronomy-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s;
}

.agronomy-card:hover {
    transform: translateY(-5px);
}

.agronomy-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.agronomy-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 15px 0 10px;
    padding-top: 10px;
}

.agronomy-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.yield-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.yield-before, .yield-after {
    text-align: center;
    padding: 20px 40px;
    border-radius: 16px;
}

.yield-before {
    background: #fee2e2;
}

.yield-after {
    background: #dcfce7;
}

.yield-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.yield-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.yield-before .yield-value {
    color: #dc2626;
}

.yield-after .yield-value {
    color: var(--primary);
}

.yield-arrow {
    font-size: 2rem;
    color: var(--gray);
}

.solutions-section {
    background: var(--cream);
}

.solutions-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-tab {
    background: var(--light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.solution-header {
    background: var(--primary);
    color: var(--light);
    padding: 25px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.solution-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.5;
}

.solution-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.solution-content {
    padding: 30px 40px;
}

.solution-content > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.solution-list li {
    padding: 10px 15px;
    background: var(--cream);
    border-radius: 8px;
    color: var(--dark);
    font-size: 0.95rem;
    position: relative;
    padding-left: 30px;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-weight: bold;
}

.demographic-note {
    margin-top: 20px;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.strategy-section {
    background: var(--light);
}

.strategy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.strategy-quote {
    text-align: center;
    margin-bottom: 50px;
}

.strategy-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
    border-left: 4px solid var(--primary);
    padding-left: 25px;
    text-align: left;
}

.strategy-quote p {
    color: var(--dark);
}

.ndp-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.ndp-pillar {
    background: var(--cream);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.ndp-pillar:hover {
    transform: translateY(-5px);
}

.ndp-pillar.featured {
    background: var(--primary);
    color: var(--light);
}

.ndp-pillar.featured h4 {
    color: var(--light);
}

.ndp-pillar.featured p {
    color: rgba(255,255,255,0.9);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ndp-pillar h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.ndp-pillar p {
    font-size: 0.9rem;
    color: var(--gray);
}

.cassava-importance {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.cassava-importance h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cassava-importance p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.cassava-importance .highlight {
    background: var(--primary);
    color: var(--light);
    padding: 20px 30px;
    border-radius: 12px;
    margin-top: 20px;
    font-weight: 500;
}

.source-attribution {
    text-align: center;
    margin-top: 30px;
    color: var(--gray);
    font-size: 0.9rem;
}

.project-area {
    background: var(--cream);
}

.area-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.area-intro p {
    color: var(--gray);
    line-height: 1.8;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.district-column {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.district-column h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.district-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.district-list li {
    padding: 10px 15px;
    background: var(--cream);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.3s;
}

.district-list li:hover {
    background: var(--primary);
    color: var(--light);
}

.map-container {
    background: var(--light);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.uganda-map {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: block;
}

.uganda-map .map-label {
    fill: #333;
    font-family: 'Inter', sans-serif;
}

.uganda-map .district-label {
    fill: #fff;
    font-weight: 600;
}

.uganda-map .map-title {
    fill: var(--primary);
    font-family: 'Playfair Display', serif;
}

.uganda-map .target-region circle {
    cursor: pointer;
    transition: all 0.3s;
}

.uganda-map .target-region circle:hover {
    transform: scale(1.3);
    filter: brightness(1.2);
}

.uganda-map .highlight-area {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.15; }
    50% { opacity: 0.25; }
}

.map-legend-text {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.major {
    background: var(--primary);
}

.legend-dot.target {
    background: var(--primary-light);
}

.contact {
    background: var(--dark);
    color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

footer {
    background: #111;
    padding: 30px 0;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .hero-content,
    .welcome-grid,
    .president-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h1 span {
        font-size: 1.3rem;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat {
        flex: 1 1 40%;
    }

    .stat-number {
        font-size: 2rem;
    }
}
