/* ================================
   Global Resets & Variables
================================ */
:root {
  --orange: #f7931a;
  --white: #fff;
  --black: #000;
  --light: #f4f4f4;
}

* { box-sizing: border-box; margin:0; padding:0; }

body { font-family: Arial, Helvetica, sans-serif; line-height:1.6; color:#111; }  color:#111;
img { max-width:100%; display:block; height:auto; }
a { text-decoration:none; }
body {
  
  margin: 0 auto;
}
/* ================================
   Header & Navigation
================================ */
.sticky-header {
  position: fixed;
  top:0; left:0; right:0;
  background: rgba(0,0,0,.9);
  backdrop-filter: saturate(140%) blur(2px);
  padding: .8rem 1rem;
  z-index:1000;
  transition: background .3s, box-shadow .3s;
}
.sticky-header.scrolled { background:#000; box-shadow:0 6px 20px rgba(0,0,0,.4); }

.navbar { max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; }

/* ===== Logo Wrap & Link ===== */
.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-link img {
  height: 40px; /* adjust as needed */
  width: auto;
}

.logo-link .logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
}

/* ===== Navigation Links ===== */
.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav-links a {
  color:#fff;
  font-weight:600;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--orange);
}

/* ===== Mobile Menu Toggle ===== */
.menu-toggle {
  display: none; /* desktop only */
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ===== Mobile Header Styles ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* below header */
    right: 20px;
    background: #222;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ================================
   Header & Navigation
================================ */
.sticky-header {
  position: fixed;
  top:0; left:0; right:0;
  background: rgba(0,0,0,.9);
  backdrop-filter: saturate(140%) blur(2px);
  padding: .8rem 1rem;
  z-index:1000;
  transition: background .3s, box-shadow .3s;
 
}
.sticky-header.scrolled { background:#000; box-shadow:0 6px 20px rgba(0,0,0,.4); }

.navbar { margin:0 auto; display:flex; justify-content:space-between; align-items:center; }
.logo-wrap img { height:50px; }
.nav-links { display:flex; list-style:none; gap:1rem; }
.nav-links a { color:#fff; font-weight:600; transition:color .2s; }
.nav-links a:hover { color:var(--orange); }

.menu-toggle { display:none; font-size:2rem; background:none; border:none; color:#fff; cursor:pointer; }

main { margin-top:76px; } /* header offset */

/* ================================
   Hero Section
================================ */
/* ✅ Hero Section */
.full-hero {
  width: 100%;
  min-height: 80vh;
  background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
 

}
/*.full-hero { background:url('../images/hero/hero-bg.jpg') center/cover no-repeat; height:78vh; display:flex; justify-content:center; align-items:center; } */
.hero-overlay { background:rgba(0,0,0,.6); padding:2rem; text-align:center; border-radius:12px; color:#fff; max-width:840px; }
.hero-overlay h1 { font-size:2.2rem; margin-bottom:.5rem; }
.hero-overlay p { margin-bottom:1rem; }  


/* ================================
   Buttons
================================ */
.btn, .btn-card, .btn-cta { cursor:pointer; transition: all .3s ease; }
.btn-cta { background:var(--orange); color:#000; padding:.85rem 1.5rem; border-radius:6px; font-weight:700; display:inline-block; }
.btn-cta:hover { background:#000; color:var(--orange); transform:translateY(-2px); outline:1px solid var(--orange); }
.btn-card { display:block; width:100%; margin:1rem auto 0; background:var(--orange); color:#000; text-align:center; padding:.6rem 1.2rem; border-radius:6px; font-weight:700; text-decoration:none; }
.btn-card:hover { background:#000; color:var(--orange); transform:translateY(-2px); outline:1px solid var(--orange); }

/* Global image shadow (top-left) except banner and logo images */
img:not(.hero-img):not(.logo-link img) {
  box-shadow: -6px -6px 20px rgba(0,0,0,0.25);
  border-radius: 8px; /* optional, keeps images soft */
  transition: transform 0.3s, box-shadow 0.3s;
}

img:not(.hero-img):not(.logo-link img):hover {
  transform: translateY(-2px);
  box-shadow: -8px -8px 25px rgba(0,0,0,0.3);
}

/* Orange spacer after header */
.header-spacer {
  width: 100%;
  height: 60px; /* adjust height to match desired spacing */
  background: var(--orange);
}

/* Full-width video container ignoring body max-width */
.video-fullwidth-container {
  width: 100vw; /* full viewport width */
  margin: 0;    /* remove auto margins */
  position: relative;
  overflow: hidden;
}

/* Video Section */
.project-video-section {
  position: relative;
  width: 100%;
  height: 80vh; /* adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000; /* fallback background */
}

.project-video-section .project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay on video */
.project-video-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); /* semi-transparent dark overlay */
  pointer-events: none;
  z-index: 1;
}

/* Ensure controls appear above overlay */
.project-video-section .project-video {
  position: relative;
  z-index: 2;
}

/* ================================
   Sections & Layout
================================  */
section { padding:3rem 1rem; }

.section-wrap { max-width:1200px; margin:0 auto;  background: #f5f5f5;}
.alt { background:var(--light); }
.center { text-align:center; }
.grid { display:grid; gap:1rem; border:5px solid re }  /*  holds the imags together in three columns 2 rows */
/*.section-wrap1 { max-width:1200px; margin:0 auto; }*/
.grid-3 { grid-template-columns:repeat(3,1fr); }
/*.grid-2 { grid-template-columns:repeat(3,1fr); border: 1px dashed yellow;} */
/* 🌟 3-Article Grid Section */
.grid-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #fffff0;; /* Light luminous green background */

}

.grid-section h2 {
  font-size: 2rem;
  color: #004d00;
  margin-bottom: 2.5rem;
}

/* ✅ Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
 /* max-width: 1200px; */
  margin: 0 auto;
}

/* ✅ Each Article Card */
.grid-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px; /* ✅ Ensures all cards are equal height */
  text-align: left;
}

/* ✅ Image Placeholder (Fixed Height) */
.image-wrap {
  width: 100%;
  height: 250px; /* Fixed image area for consistency */
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ Keeps images cropped and uniform */
}

/* ✅ Content */
.grid-card h3 {
  font-size: 1.4rem;
  margin: 1rem;
  color: #004d00;
}

.grid-card p {
  flex-grow: 1;
  margin: 0 1rem 1.5rem;
  color: #333;
  font-size: 1rem;
}

.grid-card .btn {
  display: block;
  text-align: center;
  background: #ff6600;
  color: #fff;
  padding: 0.8rem;
  margin: 0 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.grid-card .btn:hover {
  background: #e65c00;
}

/* ✅ Hover effect */
.grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 📱 Responsive Design */
@media (max-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* 1 column on mobile */
  }

  .grid-card {
    min-height: auto;
  }

  .image-wrap {
    height: 220px; /* slightly smaller image on mobile */
  }
}

/* ================================
   Gallery Section Styling
================================ */
.welcome-text {
  font-size: 2rem;              /* larger heading */
  font-weight: 700;
  color: var(--orange);         /* orange title */
  margin-bottom: 0.75rem;
}

.catchy-quote {
  font-size: 1.15rem;           /* slightly larger text */
  line-height: 1.6;
  color: #333;                  /* dark gray for balance */
  max-width: 800px;
  margin: 0 auto 1.5rem auto;   /* center with spacing */
 
}

/* ==============================
   Orange top-left shadow for shop & gallery
   ============================== */
.gallery-grid .card {
  text-align: center;          /* center captions */
  overflow: hidden;            /* hide overflow for hover scaling */
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  
}

.gallery-grid .card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-grid .card:hover img {
  transform: scale(1.05);
}

.gallery-grid .image-caption {
  margin-top: 0.5rem;
  font-weight: bold;

  font-size: 1rem;

  color: #0a0a0a; /* very dark black */
 

}


/* Apply shadow to the container to avoid clipping */
.shop-item,
.gallery-item {
  position: relative; /* needed for shadow */
  box-shadow: -8px -8px 20px rgba(247, 147, 26, 0.5);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: visible; /* allow shadow to show outside */
}

/* Hover effect: lift and stronger shadow */
.shop-item:hover,
.card:hover {
  transform: translateY(-3px);
  box-shadow: -10px -10px 25px rgba(247, 147, 26, 0.6);
}

/* Keep images responsive and rounded inside */
.shop-item img,
.gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
  object-fit: cover;
  transition: transform 0.3s;
}

.shop-item img:hover,
.gallery-item img:hover {
  transform: scale(1.05);
}

/* Black top-left shadow for shop images */
.shop-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s, filter 0.3s;
  filter: drop-shadow(-8px -8px 15px rgba(0, 0, 0, 0.5));
}

.shop-item img:hover {
  transform: scale(1.05);
  filter: drop-shadow(-10px -10px 20px rgba(0, 0, 0, 0.6));
}
/* Buy button - same orange as donate button */
.btn-buy {
  background: var(--orange);     /* colour xxx */
  color: #000;    /* colour xxx */
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.shop-item {
  position: relative; /* required for absolute button */
}

.btn-buy:hover {
  background: #000;
  color: var(--orange);      /* colour xxx */
  transform: translateY(-2px);
  outline: 1px solid var(--orange);
}


/* ================================
   Shop Section Styling
================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  
}

.shop-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.shop-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.shop-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.shop-info {
  padding: 1rem;
  text-align: center;
}

.shop-info h3 {
  margin: 0;
  font-size: 1.2rem;
}

.shop-info p {
  color: #555;     /* colour xxx */
  margin: 0.5rem 0;
}

.price {
  color: var(--orange);    /* colour xxx */
  font-weight: bold;
}

/* Lightbox image shadow and hover effect like .card */
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px; /* rounded corners */
  box-shadow: -8px -8px 20px rgba(247, 147, 26, 0.5); /* top-left orange shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.lightbox img:hover {
  transform: scale(1.03); /* slight zoom on hover */
  box-shadow: -10px -10px 25px rgba(247, 147, 26, 0.6); /* stronger shadow */
}

/* Card top-left orange shadow 
.card {
  box-shadow: -8px -8px 20px rgba(247, 147, 26, 0.5);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;

} 

/* Card hover effect 
.card:hover {
  transform: translateY(-3px);
  box-shadow: -10px -10px 25px ;
}


/* ================================
   Cards
================================ 
.card { background:#fff; border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,.08); padding:1rem; transition:transform .2s, box-shadow .2s; text-align:left; }
.card img { border-radius:10px; max-height:283px; object-fit:cover; }
.card h3 { color:var(--orange); font-weight:700; text-align:center; margin:.5rem 0 .8rem; }      colour xxx 
.card:hover { transform:translateY(-3px); box-shadow:0 14px 34px rgba(0,0,0,.14); }
.card h3:hover { color:#ffb36b; transform:scale(1.05); }   colour xxx */ 

/* Main video shadow 
#current-video {
  box-shadow: -8px -8px 20px );/* top-left orange shadow 
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
} */

/* Optional hover effect to lift video slightly 
#current-video:hover {
  transform: translateY(-2px);
  box-shadow: -10px -10px 25px rgba(247, 147, 26, 0.6);
} */

/* Video thumbnails shadow (smaller) 
.card.video-thumbs img {
  box-shadow: -4px -4px 15px rgba(247, 147, 26, 0.5);
  border-radius: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* .video-thumbs img:hover {
 transform: translateY(-3px);
  box-shadow: -10px -10px 25px rgba(247, 147, 26, 0.6);
}


/* ================================
   Video Section Thumbs 
================================ */
.video-wrapper { display:flex; flex-direction:column; align-items:center; gap:5px; }
.main-video { width:100%; max-width:800px; }
.video-thumbs { display:flex; justify-content:center; flex-wrap:wrap; gap:10px; }
.video-thumbs img { width:120px; height:70px; object-fit:cover; border:2px solid transparent; border-radius:5px; cursor:pointer; transition:border .3s; }
.video-thumbs img.active, .video-thumbs img:hover { border-color:green; }

/* ================================
   Donation Section
================================ */
.donation-section { padding:60px 20px; position:relative; display:flex; align-items:center; justify-content:center; min-height:400px; color:#fff; background-size:cover; background-position:center; }
.donation-overlay { background:rgba(0,0,0,.6); padding:40px; border-radius:10px; max-width:500px; width:90%; text-align:center; }
.donation-section h2 { color:var(--orange); font-size:2rem; margin-bottom:15px; }
.donation-section p { margin-bottom:20px; font-size:1.1rem; }
.donation-form { display:flex; flex-direction:column; gap:15px; }
.donation-form input { padding:12px; border-radius:5px; border:none; font-size:1rem; }
.donation-form .btn-orange { background:var(--orange); border:none; color:#fff; font-weight:bold; padding:12px; border-radius:5px; cursor:pointer; transition:background .3s; }
.donation-form .btn-orange:hover { background:#000; }




/* ================================
   Contact Form Styling
================================ */
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
  color: #333;    /* colour xxx */
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 4px var(--orange);
}

/* Orange Send Button */
.btn-send {
  background: var(--orange);    /* colour xxx */
  color: #000;    /* colour xxx */
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: #000;      /* colour xxx */
  color: var(--orange);    /* colour xxx */
  transform: translateY(-2px);
  outline: 1px solid var(--orange);
}

/* Form feedback message */
.form-feedback {
  color: var(--orange);
  font-weight: 600;
  margin-top: 0.5rem;
  display: none; /* hidden by default */
}

/* Responsive adjustments */
@media(max-width:768px){
  .contact-card {
    padding: 1.5rem;
  }
}
.form-feedback {
  color: var(--orange); /* colour xxx */
  font-weight: 600;
  margin-top: 0.5rem;
  display: none; /* hidden by default */
  transition: opacity 0.4s ease;
}
/* Contact Form Card */
.contact-card {
  background: #fff; /* colour xxx */
  border-radius: 12px;
  box-shadow: -6px -6px 20px rgba(0,0,0,0.25); /* top-left shadow */
  padding: 2rem;
  max-width: 500px;
  margin: 2rem auto;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: -8px -8px 25px rgba(0,0,0,0.3); /* stronger on hover */
}


/* ================================
   Gallery
================================ */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:15px; margin-top:20px; }
.gallery-item { overflow:hidden; border-radius:8px; text-align:center; cursor:pointer; }
.gallery-item img { width:100%; height:auto; transition:transform .4s ease; }
.gallery-item img:hover { transform:scale(1.05); }
.gallery-item .caption { margin-top:8px; font-size:.95rem; color:#333; }

/* ================================
   Lightbox
================================ */
.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,.9); justify-content:center; align-items:center; z-index:1200; }
.lightbox img { max-width:90%; max-height:80%; border-radius:8px; }
.lightbox .close, .lightbox .prev, .lightbox .next { position:absolute; color:#fff; font-size:2rem; cursor:pointer; user-select:none; }
.lightbox .close { top:20px; right:30px; }
.lightbox .prev { left:20px; top:50%; transform:translateY(-50%); }
.lightbox .next { right:20px; top:50%; transform:translateY(-50%); }
.lightbox .caption { position:absolute; bottom:30px; color:#fff; font-size:1.1rem; text-align:center; width:100%; }

/* ================================
   Responsive Adjustments
================================ */
@media(max-width:768px){
  .nav-links { display:none; flex-direction:column; background:#000; position:absolute; top:58px; left:0; right:0; padding:1rem 0; }
  .nav-links.show { display:flex; }
  .menu-toggle { display:block; }
  .grid-3, .grid-2 { grid-template-columns:1fr; }
  .video-thumbs img { width:80px; height:50px; }
  .donation-section { padding:40px 15px; min-height:350px; }
  .donation-section h2 { font-size:1.6rem; }
  .donation-section p { font-size:1rem; }
}
@media(max-width:480px){
  .donation-section { padding:30px 10px; min-height:300px; }
  .donation-section h2 { font-size:1.4rem; }
  .donation-section p { font-size:.95rem; }
}
/* ==============================
   Footer Styles (Global)
   ============================== */

/* ===== Site Footer Container ===== */
.site-footer {
  background: #222; /* dark background */
  color: #eee;      /* light text */
  padding: 2rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== Inner Container Flex Layout ===== */
.site-footer .footer-container {
  display: flex;          /* flex layout */
  flex-wrap: wrap;        /* allow wrapping on small screens */
  gap: 2rem;              /* space between columns */
  max-width: 1200px;      /* center content */
  margin: 0 auto;
  justify-content: space-between; /* distribute columns */
}

/* ===== Individual Columns ===== */
.site-footer .footer-col {
  flex: 1 1 200px;       /* grow/shrink, minimum width 200px */
  min-width: 150px;
}

/* ===== Footer Headings ===== */
.site-footer .footer-col h4 {
  margin-bottom: 1rem;
  color: #fff;
}

/* ===== Footer Links ===== */
.site-footer a {
  color: #f90;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: #ffa500;
}

/* ===== Social Links Icons ===== */
.site-footer .social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.site-footer .social-links a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  transition: fill 0.2s ease;
}
.site-footer .social-links a:hover svg {
  fill: #f90;
}

/* ===== Newsletter Form ===== */
.site-footer .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer .newsletter-form input[type="email"] {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
}
.site-footer .newsletter-form button {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  background: #f90;
  color: #222;
  cursor: pointer;
  transition: background 0.2s ease;
}
.site-footer .newsletter-form button:hover {
  background: #ffa500;
}

/* ===== Footer Bottom ===== */
.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #444;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #ccc;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .site-footer .footer-container {
    flex-direction: column; /* stack columns on mobile */
    align-items: flex-start;
  }
  .site-footer .footer-col {
    width: 100%;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
}
/* ===== Base Footer Styles (Desktop) ===== */
.site-footer {
  background: #222;
  color: #eee;
  text-align: left;
  padding: 3rem 2rem; /* bigger padding for desktop */
  font-size: 1rem;    /* slightly bigger text */
  line-height: 1.6;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

/* Footer headings */
.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Quick links */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #eee;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f90;
}

/* Social icons */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-links a svg {
  fill: #fff;
  width: 24px;
  height: 24px;
  transition: fill 0.3s ease;
}

.social-links a:hover svg {
  fill: #f90;
}

/* Newsletter form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.newsletter-form input {
  padding: 0.6rem 0.75rem;
  border-radius: 4px;
  border: none;
  font-size: 0.95rem;
}

.newsletter-form button {
  background: #f90;
  color: #222;   /* colour xxxx */
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e67e00;
}

/* HISTORY PAGE - alternating styles */
.history-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.history-grid .card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: -6px -6px 12px rgba(255, 165, 0, 0.3); /* orange top + left shadow */
  display: flex;
  align-items: center;
  justify-content: center;
}

.history-grid .card.image-only {
  padding: 0; /* image should fill card */

}
/* image for about section only  */
 .history-grid.card.image-about {
  padding: 2px; 

}

.history-grid .card.image-only img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.history-grid .card.text-only h3 {
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.history-grid .card.text-only p {
  font-size: 1rem;
  color: #333;  /* colour  xxx */
  line-height: 1.5;
  margin: 0;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 10px rgba(255,165,0,0.7); /* default lighter orange shadow */
  padding: 1rem;
  background: #fff;
  margin: 1rem;
  border-radius: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: 5px 5px 15px rgba(255,140,0,0.9); /* darker orange shadow */
  transform: translateY(-5px); /* optional lift effect */
}

.card-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff7f00;   /* orange colour */
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 5px 5px 10px rgba(255,165,0,0.7); /* orange top-left shadow */
  padding: 1rem;
  background: #fff;
  margin: 1rem;
  border-radius: 10px;
}

.card-title {
  text-align: center;
  margin-top: 0; /* remove default spacing */
  margin-bottom: 1rem; /* space before image */
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff7f00; /* optional accent color */
}
/* Project image captions */
.image-caption {
  font-weight: bold;
  color: #e65100; /* Dark orange for brand consistency */
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1rem;
}

/*================================
donate ,support us volunteers buttons 
=======================================*/
/* 🌟 Call-to-Action Section */
.cta-section {
  text-align: center;
  padding: 4rem 2rem;
  background: transparent; /* keeps your shiny background visible */
}

.cta-section h2 {
  font-size: 2rem;
  color: #0a0a0a; /* dark shiny black */
  margin-bottom: 2.5rem;
  font-weight: 700;
}

/* 📏 Button container - evenly spaced layout */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem; /* even spacing between buttons */
  max-width: 320px;
  margin: 0 auto;
}

/* ✨ Button Styling - matching "Find Out More" look */
.cta-btn {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ff6600, #e65c00); /* shiny orange gradient */
  color: #fffaf0; /* creamy white text */
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ✨ Hover effects: subtle lift & glow */
.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
  background: linear-gradient(135deg, #ff7a1a, #ff6600);
}

/* 📱 Responsive adjustments */
@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    max-width: 800px;
    gap: 2rem;
  }

  .cta-btn {
    width: auto;
    min-width: 220px ;
  }
} 

/* end */

/* Responsive */
@media (max-width: 768px) {
  .history-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
}

/* ===== Responsive Footer (Mobile) ===== */
@media (max-width: 768px) {
  .site-footer {
    padding: 1.5rem 1rem;
    font-size: 0.875rem;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .footer-col {
    min-width: auto;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 90%;
    max-width: 300px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1rem;
  }
}


  