/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: transparent;
  color: #eee;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-weight: 700;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Fullscreen Background Video */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  overflow: hidden;
}
.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Nav */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: #111;
  color: #00acee;
  padding: 20px 0;
  text-align: center;
  z-index: 1000;
  display: none;
}
.side-nav .logo {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.side-nav nav ul {
  list-style: none;
}
.side-nav nav ul li {
  margin: 20px 0;
}
.side-nav nav ul li a {
  color: #eee;
  transition: color 0.3s;
}
.side-nav nav ul li a:hover {
  color: #00acee;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #111;
  color: #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.top-nav .logo span {
  color: #00acee;
}
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
}
.mobile-nav {
  display: none;
  background: #111;
  position: absolute;
  top: 60px;
  right: 20px;
  border-radius: 6px;
  padding: 10px;
}
.mobile-nav.active {
  display: block;
}
.mobile-nav ul {
  list-style: none;
}
.mobile-nav ul li {
  margin: 10px 0;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 80px 20px;
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.hero h1 {
  font-size: 2.8rem;
}
.hero h1 span {
  color: #00acee;
}
.hero p {
  margin: 15px 0;
  font-size: 1.1rem;
}

/* Sections */
.section {
  padding: 80px 20px;
  position: relative;
  z-index: 2;
}
.section.dark {
  background: rgba(0, 0, 0, 0.6);
}
.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #00acee;
}

/* Image sections */
.section-image {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.card {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
  transition: transform 0.3s;
  text-align: center;
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.card h3 {
  margin: 15px 0 10px;
}
.card:hover {
  transform: translateY(-5px);
}

/* Stats */
.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}
.stat .count {
  font-size: 2.5rem;
  color: #00acee;
}
.stat p {
  margin-top: 10px;
}

/* Testimonials */
.testimonial-slider {
  max-width: 700px;
  margin: auto;
}
.testimonial {
  display: none;
}
.testimonial.active {
  display: block;
  animation: fade 1s;
}
.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial h4 {
  margin-top: 10px;
  color: #00acee;
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Contact */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
form, .contact-info {
  flex: 1 1 48%;
  background: #111;
  padding: 20px;
  border-radius: 10px;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  background: #222;
  border: 1px solid #333;
  color: #fff;
}
form textarea {
  resize: vertical;
}
.btn {
  display: inline-block;
  padding: 10px 25px;
  background: #00acee;
  color: #fff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
}
.btn:hover {
  background: #008ccf;
}
.donation-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

/* Facebook iframe wrapper */
.facebook-iframe-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.note {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #aaa;
  font-size: 0.85rem;
}

/* Responsive */
@media (min-width: 768px) {
  .side-nav {
    display: block;
  }
  .top-nav {
    display: none;
  }
  body {
    margin-left: 200px;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
  object-fit: cover;
  height: 100%;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
  object-fit: cover;
}
.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.facebook-iframe-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.facebook-iframe-inner {
  max-width: 500px;
  width: 100%;
}
.facebook-iframe-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .facebook-iframe-center {
    margin-left: 200px;
  }
}
.section-image {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 100%;
  border-radius: 10px;
}
.count::after {
  content: "+";
  margin-left: 2px;
  color: #00acee;
  font-weight: bold;
}
.stat-icon {
  font-size: 2.5rem;
  color: #00acee;
  margin-bottom: 10px;
  display: block;
}
.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.support-card {
  background: #111;
  color: #eee;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 220px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
.support-card i {
  font-size: 2rem;
  color: #00acee;
  margin-bottom: 10px;
}
.support-card .btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
}
.support-icon {
  width: 150px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}
.nav-logo {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
  font-size: 0.95rem;
}
.cookie-consent p {
  margin: 0;
  flex: 1;
}
.cookie-consent .btn {
  background: #00acee;
  color: #fff;
  border: none;
  padding: 8px 15px;
  font-size: 0.9rem;
  margin-left: 15px;
  cursor: pointer;
  border-radius: 4px;
}
.cookie-consent .btn:hover {
  background: #008ccf;
}
.full-height {
  min-height: 100vh;
 
}
@media (max-width: 768px) {
  .hero {
    padding-top: 105px; /* Adjust to match your nav height */
  }
}
.gallery-scroll {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
  scroll-snap-type: x mandatory;
}
.gallery-scroll img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-scroll img:hover {
  transform: scale(1.05);
}
.live-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.live-column {
  flex: 1 1 48%;
  min-width: 320px;
}

.live-column iframe,
.fb-embed {
  width: 100% !important;
  height: 600px !important;
  border-radius: 8px;
  display: block;
}

.radar-full {
  margin-top: 20px;
}
.facebook-feed {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .facebook-feed {
    justify-content: center;
  }
}

.facebook-feed-adjusted {
  margin-left: auto;
  margin-right: auto;
  transform: translateX(60px); /* adjust this value as needed */
}

@media (max-width: 1024px) {
  .facebook-feed-adjusted {
    transform: none;
  }
}
.facebook-feed-adjusted {
  margin-left: calc(50% - 250px - 50px); /* center - half width - sidebar offset */
}

@media (max-width: 1024px) {
  .facebook-feed-adjusted {
    margin-left: auto;
    margin-right: auto;
  }
}
.facebook-feed-centered {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  left: 80px; /* move to the left to visually center against sidebar */
}

@media (max-width: 1024px) {
  .facebook-feed-centered {
    left: 0; /* reset on mobile */
  }
}
.hero-logo {
  max-width: 90%;
  width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .top-nav {
    padding: 10px 15px;
  }

  .nav-logo {
    max-height: 50px;
  }
}
.mobile-nav {
  display: none;
}

.mobile-nav.active {
  display: block;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.flex-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}


.footer-content {
  max-width: 1200px;
  margin: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-brand img.footer-logo {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 6px #00f0ff);
}
/* Remove fixed margin-left if it exists */
footer {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 20px 10px;
  font-size: 0.9rem;
  text-align: center;
}

/* Container inside footer */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Logo Styling */
.footer-logo {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 0 6px #00f0ff);
}

/* Optional: For horizontal layout on desktop */
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}
/* Overlay */
.prompt-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
  overflow-y: auto;
}

/* Popup Box */
.prompt-box {
  background: #222;
  padding: 20px 25px;
  border-radius: 10px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  color: #fff;
  border: 2px solid #f4b400;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Heading */
.prompt-box h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #f4b400;
}

/* Description */
.prompt-box p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Buttons */
.prompt-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prompt-actions button {
  background: #f4b400;
  color: #000;
  border: none;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.prompt-actions button:hover {
  background: #d39e00;
}

/* Mobile Adjustments */
@media (min-width: 480px) {
  .prompt-actions {
    flex-direction: row;
    justify-content: center;
  }

  .prompt-actions button {
    flex: 1;
    margin: 0 10px;
  }
}
body {
  background: #000; /* This will show when no video is visible */
  transition: background 0.5s ease;
}
