:root {
    --black: #000000;
    --white: #ffffff;
    --gold: #d4af37;
    --gray: #f4f4f4;
    --dark-gray: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--white);
    line-height: 1.6;
    color: var(--dark-gray);
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background-color: var(--black);
    color: var(--white);
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}



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

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    height: 80px; /* Logo determines nav height */
    width: auto;
}

.brand-text h1 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--white);
}

.tagline {
    font-size: 0.7rem;
    color: var(--gold);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

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

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

/* Hero Section */
.hero {
    height: 60vh;
    background: url('pic11.jpeg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.hero-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-small {
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin: 10px;
}

.btn-primary { 
  background: var(--gold);
   color: var(--black); 
  }
.btn-small { 
  background: var(--gold);
   color: var(--black); 
   font-size: 0.8rem;
   }

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

.flex-row {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.founder-img img {
    width: 350px;
    border-radius: 10px;
    box-shadow: 10px 10px 0px var(--gold);
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 8px;
    border-top: 5px solid var(--gold);
}

.image-row img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

  

bio-section {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.bio-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bio-text {
    flex: 1;
}

.bio-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bio-image {
    flex: 1;
    position: relative;
}

.bio-image img {
    width: 100%;
    box-shadow: 10px 10px 0px #ccc;
    
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky; top: 0; z-index: 1000;
}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; margin-right: 10px; }
.nav-links { list-style: none; display: flex;color: aliceblue; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #e9e0e0; font-weight: bold; }

/* Hero Section with Background */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('pic6.jpeg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero-content p { font-size: 1.2rem; max-width: 800px; font-style: italic; }

/* Info Section */
.info-section { padding: 50px 5%; text-align: center; background: #f9f9f9; }
.info-section h2 { margin-bottom: 20px; color: #222; }
.info-section p { max-width: 900px; margin: 0 auto; font-size: 1.1rem; }

/* Responsive Gallery */


/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .nav-links { display: none; } /* Simplified for demo */
}
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: #333;
 
  background-size: cover;
}

.overlay {
  background-color: rgba(255, 255, 255, 0.85);
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  margin-top: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

h1, h2 {
  text-align: center;
  color: #080808;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "• ";
  color: #27ae60;
  font-weight: bold;
}

.section {
  margin-bottom: 2rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 2rem;
  color: #777;
}
/*gallery

:root {
    --black: #000000;
    --white: #ffffff;
    --gold: #d4af37;
    --soft-gray: #f4f4f4;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }

/* Sticky Navbar */
.navbar {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: auto; }
.nav-logo { height: 75px; width: auto; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 600; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

/* Gallery Header */
.gallery-header { text-align: center; padding: 60px 20px; background: var(--soft-gray); }
.mission-text { max-width: 700px; margin: 15px auto; font-style: italic; color: #555; }

/* Grid Layout */
.container { max-width: 1200px; margin: auto; padding: 40px 20px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    background: #222;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.1); opacity: 0.7; }

/* Info Card Styling */
.info-card {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 1px solid var(--gold);
}

.card-content h3 { color: var(--gold); margin-bottom: 10px; }
.card-content p { color: var(--white); font-size: 0.9rem; }

/* Item Overlay */
.item-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(212, 175, 55, 0.95);
    color: black;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    transition: bottom 0.4s ease;
}

.gallery-item:hover .item-overlay { bottom: 0; }

/* Modal Lightbox */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content-container { max-width: 800px; margin: 50px auto; text-align: center; }
.modal-img { width: 100%; border: 3px solid var(--gold); border-radius: 4px; }
#modal-caption { color: var(--white); padding: 20px; font-size: 1.1rem; line-height: 1.6; }
.close-modal { position: absolute; top: 20px; right: 35px; color: var(--white); font-size: 40px; cursor: pointer; }

footer { background: var(--black); color: var(--white); text-align: center; padding: 40px; }
/* contact
:root {
    --gold: #D4AF37;
    --black: #0a0a0a;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.92);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: url('pic11.jpeg') no-repeat center center fixed;
    background-size: cover;
    color: var(--black);
    line-height: 1.6;
}

/* Navigation */
#navbar {
    background: url(pic11.jpeg);
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 2px solid var(--gold);
}

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

.logo-img {
    height: 45px;
    border-radius: 70%;
    border: 1px solid var(--gold);
}

.brand-name {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-left: 10px;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.donate-btn {
    background: var(--gold);
    color: var(--black) !important;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600 !important;
}

/* Hero Section */
.hero {
    height: 60vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content { z-index: 1; }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    letter-spacing: 3px;
}

/* Contact Grid */
.main-container {
    padding: 60px 20px;
}

.contact-grid {
    max-width: 1200px;
    margin: -100px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    z-index: 5;
    position: relative;
}

.card {
    background: var(--glass);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gold-text {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tagline { font-style: italic; color: #555; margin-bottom: 25px; }

.detail-item { margin-bottom: 20px; }

.detail-item label {
    display: block;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.map-card { padding: 0; overflow: hidden; height: 450px; }

/* Form Styling */
.form-card { background: var(--black); color: var(--white); }

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
}

input:focus, textarea:focus { border-color: var(--gold); outline: none; }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--gold);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover { background: #b8952d; }

footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; margin-top: 20px; }
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; } /* Simplified for mobile */

}
/*info
/* --- Support Section (Bottom of Page) --- */
.cta-section {
    background-color: var(--gold); /* High contrast gold background */
    padding: 100px 20px;
    border-top: 5px solid var(--black);
}

.black-text {
    color: var(--black) !important;
    font-weight: 800;
}

.cta-text {
    color: var(--black);
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
    font-weight: 500;
}

.btn-main-cta {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 20px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-main-cta:hover {
    background-color: #333;
    transform: translateY(-5px);
}

/* --- Footer --- */
.footer {
    background: var(--black);
    color: #888;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* --- Governance Note Styling --- */
.governance-info {
    margin-top: 30px;
    background: var(--light-grey);
    padding: 20px;
    border-left: 4px solid var(--gold);
    font-size: 0.9rem;
}
/*support
/* --- Support Page Specifics --- */
.needs-list-styled {
    list-style: none;
    margin-top: 20px;
}

.needs-list-styled li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
}

.needs-list-styled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.donation-card {
    background: var(--light-grey);
    padding: 40px;
    border-top: 4px solid var(--gold);
    position: sticky;
    top: 120px;
}

.payment-info {
    background: var(--black);
    color: var(--white);
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.payment-info p {
    margin-bottom: 5px;
    font-family: monospace;
    font-size: 1.1rem;
}
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1100px;
}

/* Individual Photo Cards */
.photo-card {
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.photo-card img {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    object-fit: cover; /* Crops image to fill the area without stretching */
    border-radius: 8px;
    display: block;
}
/* --- Large Screens (Desktops >1200px) --- */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
    padding: 5rem 3rem;
  }
  .hero-content h1 {
    font-size: 4rem;
  }
}

/* --- Medium Screens (Tablets 768px–1199px) --- */
@media (max-width: 1199px) and (min-width: 768px) {
  .flex-row {
    flex-direction: column;
    text-align: center;
  }
  .founder-img img {
    width: 80%;
    margin: auto;
  }
  .bio-container {
    flex-direction: column;
    gap: 30px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Small Screens (Mobile <768px) --- */
@media (max-width: 768px) {
  /* Navigation */
  .nav-links {
    display: none; /* Hide menu for mobile */
  }
  .navbar {
    padding: 0.5rem 1rem;
  }
  .nav-logo {
    height: 50px;
  }

  /* Hero */
  .hero {
    height: 60vh;
    padding: 0 10px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content h2 {
    font-size: 1.5rem;
  }

  /* Sections */
  .flex-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .founder-img img {
    width: 100%;
  }
  .bio-container {
    flex-direction: column;
  }

  /* Cards & Grids */
  .grid-cards {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Buttons */
  .btn-primary, .btn-secondary, .btn-small {
    width: 100%;
    text-align: center;
  }

  /* Footer */
  footer {
    padding: 1rem;
    font-size: 0.8rem;
  }
}

/* --- Extra Small Screens (<480px) --- */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .bio-text h2 {
    font-size: 2rem;
  }
  .photo-card img {
    height: 180px;
  }
}

/* --- 1. Global Visibility Fixes --- */
img {
    max-width: 100%; /* Prevents images from ever breaking the layout */
    height: auto;
    display: block;
}

/* Ensure the hero background is always visible */
.hero {
    background-size: cover;
    background-position: center;
    width: 100%;
}

/* --- 2. Navigation Fix (Visible on all devices) --- */
@media (max-width: 768px) {
    .nav-links {
        display: flex; /* Changed from 'none' to 'flex' */
        flex-direction: column; /* Stacked for mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--black);
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--gold);
        /* Initially hidden until you add a toggle class, 
           or keep it visible as a simple stacked menu: */
        display: none; 
    }

    /* To show the menu on mobile, you can add a 'show' class via JS 
       or use this simple hover trick for testing: */
    .navbar:hover .nav-links {
        display: flex;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .brand-text h1 {
        font-size: 1rem; /* Smaller text for small screens */
    }
}

/* --- 3. Tablet & Small Laptop (768px to 1024px) --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .flex-row, .bio-container {
        flex-direction: column;
        text-align: center;
    }

    .founder-img img, .bio-image img {
        width: 70%;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr; /* Two columns for tablets */
        margin-top: -50px;
    }

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

/* --- 4. Large Laptops & Desktops (1025px and up) --- */
@media (min-width: 1025px) {
    .nav-links {
        display: flex !important; /* Always visible on desktop */
    }

    .flex-row {
        flex-direction: row;
    }

    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- 5. Image Grid & Gallery Visibility --- */
@media (max-width: 600px) {
    .gallery-grid, .grid-cards {
        grid-template-columns: 1fr; /* Force single column on phones */
    }

    .photo-card img {
        height: 200px; /* Shorter images for mobile viewing */
    }

    .main-container {
        padding: 20px 10px;
    }

    /* Adjust the overlapping contact cards so they don't hide content */
    .contact-grid {
        margin-top: 20px;
    }
}