* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Top Menu Donate Button */
.menu-donate-btn {
    display: inline-block;
    background-color: #C5A059; /* Elegant bronze/gold */
    color: #ffffff !important; /* Ensures text stays white */
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: 30px; /* Smooth pill shape */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap; /* Prevents text wrapping */
}
/* Video Showcase Desktop Container */
.video-showcase-section {
    width: 100%;
    padding: 0px 0px 40px 0px;
    background-color: #ffffff; /* Clean breakup backdrop color */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Pull the intro text section up closer to the video */

.video-container-box {
    width: 100%;
    max-width: 900px; /* Elegant, cinematic reading constraint width */
    margin: -40px auto 0 auto; /* Added a negative top margin to pull it up */
    padding: 0px 10px 0px 10px; /* Reset padding to valid positive values */
    box-sizing: border-box;
}

/* 16:9 Aspect Ratio Lock Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 proportion ratio standard hook */
    height: 0;
    overflow: hidden;
    border-radius: 12px; /* Smooth corners matching premium layout design */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); /* Subtle shadows */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Hover Effect */
.menu-donate-btn:hover {
    background-color: #A38042; /* Slightly darker shade on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); /* Gentle lift effect */
    color: #ffffff;
}

/* Click/Active Effect */
.menu-donate-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

:root {
    --primary-color: #5c3d2e;
    --secondary-color: #b8860b;
    --accent-gold: #cd7f32;
    --text-color: #4a3728;
    --light-text: #f5f1e8;
    --light-bg: #f9f7f3;
    --white: #fefdfb;
    --dark-overlay: rgba(92, 61, 46, 0.75);
    --light-overlay: rgba(255, 253, 251, 0.95);
    --terracotta: #a0522d;
    --deep-red: #8b4513;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-image: url('bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Password Modal Styles */
.password-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.95) 0%, rgba(140, 69, 19, 0.95) 100%),
                url('bg.png') center/cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.password-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.password-content {
    background: linear-gradient(135deg, #ffffff 0%, #fefdfb 100%);
    padding: 5rem 4rem;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 0 60px rgba(184, 134, 11, 0.15);
    max-width: 550px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.2);
    animation: slideUp 0.6s ease-out;
    backdrop-filter: blur(5px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.password-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.password-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.password-description {
    font-size: 1.05rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.password-form {
    margin-top: 2rem;
}

.password-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.password-input-group input {
    flex: 1;
    padding: 1.1rem 1.6rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.05rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f8f8;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.password-input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.15), 0 4px 12px rgba(184, 134, 11, 0.1);
    background-color: #ffffff;
}

.password-input-group input::placeholder {
    color: #a0a0a0;
    font-weight: 400;
}

.password-submit {
    padding: 1.15rem 2.5rem;
    background: linear-gradient(135deg, #b8860b 0%, #cd7f32 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.password-submit:hover {
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 100%);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.45), 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.password-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.error-message {
    color: #c0392b;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 500;
    animation: shake 0.3s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Header Styling */
header {
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.97) 0%, rgba(92, 61, 46, 0.92) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.logo img:hover {
    transform: scale(1.4);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.8));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--secondary-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold));
    transition: width 0.3s ease;
    border-radius: 2px;
}

nav a:hover::after {
    width: 100%;
}

/* Donate Button in Header */
.donate-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-gold) 100%);
    color: var(--primary-color);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--secondary-color);
}

.donate-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-color) 100%);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.45) 0%, rgba(140, 69, 19, 0.35) 100%),
        url('bg.png') center/cover fixed;
    color: var(--light-text);
    padding: 180px 2rem 140px;
    text-align: center;
    margin-top: 0px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.hero p {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1.2px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.6);
    margin-top: 1.5rem;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-divider {
    margin-top: 2.5rem;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin-left: auto;
    margin-right: auto;
    border-radius: 2px;
    animation: slideDown 1s ease-out 0.5s both;
}

/* Donate Button in Hero */
.hero-donate-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-gold) 100%);
    color: #ffffff;
    padding: 1.3rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5), 0 0 30px rgba(184, 134, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 3px solid #ffffff;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s both, glow 2s ease-in-out infinite;
}

.hero-donate-btn:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--secondary-color) 100%);
    box-shadow: 0 12px 40px rgba(184, 134, 11, 0.7), 0 0 40px rgba(184, 134, 11, 0.5);
    transform: translateY(-4px) scale(1.05);
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.5), 0 0 30px rgba(184, 134, 11, 0.3);
    }

    50% {
        box-shadow: 0 8px 35px rgba(184, 134, 11, 0.7), 0 0 50px rgba(184, 134, 11, 0.5);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: scaleX(0);
    }

    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Vision Section */
.vision {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%),
        url('bg.png') center/cover fixed;
    background-attachment: fixed;
    padding: 100px 2rem;
    margin: 0;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

/* Vision Logo */
.vision-logo {
    text-align: center;
    margin-bottom: 3rem;
}

.vision-logo img {
    height: 200px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 5px rgba(92, 61, 46, 0.2));
}

.vision-logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 10px rgba(92, 61, 46, 0.3));
}

.vision h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.vision h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.vision p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    text-align: justify;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Mission Section */
.mission {
    position: relative;
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.92) 0%, rgba(140, 69, 19, 0.88) 100%),
        url('bg.png') center/cover fixed;
    background-attachment: fixed;
    padding: 100px 2rem;
    color: var(--light-text);
}

.mission::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.mission h2 {
    font-size: 2.8rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.mission>.container>p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: justify;
    color: var(--light-text);
}

.strategic-priorities {
    margin-top: 3rem;
}

.strategic-priorities h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.priority {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.priority::before {
    content: '';
    position: absolute;
    top: 0;
    right: -30px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.priority:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.priority h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.priority ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.priority li {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

/* Board Members Section */
.board-members {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%),
        url('bg.png') center/cover fixed;
    background-attachment: fixed;
    padding: 100px 2rem;
}

.board-members::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.board-members h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.board-members h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.board-member {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.board-member::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.board-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.2);
}

.board-member:hover::before {
    transform: scaleX(1);
}

.board-member h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.board-member .title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.board-member .bio {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
}

.board-members .note {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
    font-size: 0.95rem;
}

/* Projects Section */
.projects {
    position: relative;
    background: linear-gradient(135deg, rgba(92, 61, 46, 0.92) 0%, rgba(140, 69, 19, 0.88) 100%),
        url('bg.png') center/cover fixed;
    background-attachment: fixed;
    padding: 100px 2rem;
    color: var(--light-text);
}

.projects::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.projects h2 {
    font-size: 2.8rem;
    color: var(--light-text);
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 3rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-gold), transparent);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.2);
}

.project-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.project-description {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.project-link:hover {
    color: var(--accent-gold);
}

.project-link:hover::after {
    width: 100%;
    background: var(--accent-gold);
}

/* Partner Card Styles */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 2rem;
}

.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo {
    max-height: 100px;
    max-width: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(92, 61, 46, 0.15));
}

.partner-logo-link:hover .partner-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(92, 61, 46, 0.25));
}

.partner-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(140, 69, 19, 0.95) 100%);
    color: var(--light-text);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--secondary-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('bg.png') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

footer a:hover {
    color: var(--accent-gold);
}

footer a:hover::after {
    width: 100%;
}

/* Fix for horizontal scroll and overflow */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        gap: 1.2rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .donate-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 120px 1.5rem 100px;
        margin-top: 0px;
    }

    .hero-donate-btn {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .vision h2,
    .mission h2,
    .board-members h2 {
        font-size: 2.2rem;
    }

    .vision,
    .mission,
    .board-members {
        padding: 70px 1.5rem;
    }

    .priority {
        padding: 2rem 1.5rem;
    }

    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.8rem;
    }

    .projects {
        padding: 70px 1.5rem;
    }

    .vision-logo img {
        height: 160px;
    }

    .projects h2 {
        font-size: 2.2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-logo {
        max-height: 90px;
    }

    header .container {
        flex-direction: column;
        gap: 1.2rem;
    }

    nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }

    .logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    header .container {
        padding: 0 1rem;
    }

    header {
        padding: 1rem 0;
    }

    .hero {
        padding: 80px 1rem 60px;
        margin-top: 00px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .hero p {
        font-size: 1rem;
    }

    nav ul {
        gap: 0.8rem;
        flex-wrap: wrap;
    }

    nav a {
        font-size: 0.8rem;
        text-transform: capitalize;
    }

    .donate-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
        display: block;
        margin-top: 0.5rem;
    }

    header .container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-donate-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
        letter-spacing: 1px;
    }

    .vision,
    .mission,
    .board-members {
        padding: 50px 1rem;
    }

    .vision h2,
    .mission h2,
    .board-members h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .strategic-priorities h3 {
        font-size: 1.6rem;
    }

    .priority {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .board-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .board-member {
        padding: 2rem 1.5rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .projects {
        padding: 50px 1rem;
    }

    .projects h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .project-card h3 {
        font-size: 1.5rem;
    }

    .partner-logo {
        max-height: 80px;
    }

    .vision-logo img {
        height: 140px;
    }

    .project-description {
        font-size: 1rem;
    }

    .vision p,
    .mission>.container>p {
        text-align: left;
    }

    /* Responsive Password Modal */
    .password-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .password-content h1 {
        font-size: 1.6rem;
    }

    .password-subtitle {
        font-size: 1rem;
    }

    .password-description {
        font-size: 0.9rem;
    }

    .password-input-group {
        flex-direction: column;
        gap: 0.6rem;
    }

    .password-input-group input {
        padding: 0.8rem 1rem;
        font-size: 16px;
    }

    .password-submit {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    @media (max-width: 480px) {
    /* ... your existing rules like .hero padding ... */

    .video-showcase-section {
        padding: 40px 0; /* Brings the spacing down beautifully for tight phone columns */
    }
    
    .video-container-box {
        padding: 0 1rem; /* Perfectly aligns content edge-to-edge with the rest of your content padding grid */
    }
    
    .video-wrapper {
        border-radius: 8px; /* Slightly tighter radius for smaller screens */
    }
}
}

@media (max-width: 768px) {
    .password-content {
        padding: 3rem 2rem;
    }

    .password-content h1 {
        font-size: 2rem;
    }

    .password-input-group {
        flex-direction: column;
        gap: 0.6rem;
    }

    .password-submit {
        width: 100%;
    }
}
/* --- Press Release Section Styles --- */
.pr-section {

    padding: 60px 20px;
    background-color: #fcfcfc;
}


.pr-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pr-header {
    border-bottom: 2px solid #d4af37; /* Gold accent for an ancient/regal theme */
    padding-bottom: 15px;
    margin-bottom: 25px;
}


.pr-title {
    font-size: 24px;
    color: #2c3e50;
    margin: 25px 0;
    text-align: center;
    line-height: 1.4;
}

.pr-container h4 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 5px;
}

.pr-container blockquote {
    font-size: 17px;
    font-style: italic;
    background: #f8f9fa;
    border-left: 5px solid #d4af37;
    margin: 25px 0;
    padding: 20px 25px;
    color: #555555;
}

.pr-board-list {
    list-style-type: none;
    padding-left: 0;
}

.pr-board-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pr-board-list li::before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}

.pr-media {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #e1e4e8;
}

.pr-media p {
    margin: 0;
}

.pr-video {
    margin-top: 40px;
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}