/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Navbar Logo */
header .logo img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav */
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-nav ul li a:hover,
.desktop-nav ul li a.active {
  color: #c82333;
}

.quote-btn {
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: 0.3s ease;
}

.quote-btn:hover {
  background: #0d8aff;
}

.desktop-quote {
  display: inline-block;
}
/* Desktop contact info */
.desktop-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
  font-size: 14px;
  color: #0056b3;
}

.desktop-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.desktop-contact span:hover {
  color: #c82333;
  cursor: default;
}

/* Hide desktop contact on smaller screens */
@media (max-width: 768px) {
  .desktop-contact {
    display: none;
  }
}

/* Hamburger (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #007bff;
  z-index: 1100;
}

/* Mobile Sidebar */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100%;
  background: black;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 20px;
  z-index: 1200;
  transition: left 0.3s ease;
}

.mobile-nav.active {
  left: 0;
}

.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mobile-header .logo img {
  height: 40px;
  width: auto;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  color: #007bff;
}

.mobile-nav ul {
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  list-style: none;
}

.mobile-nav ul li a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
  display: block;
  border-radius: 5px;
}

.mobile-nav ul li a.active {
  background: #ffe6e6;
  color: #c82333;
}

.contact-info {
  font-size: 14px;
  color: #0056b3;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 6px 0;
}

.mobile-quote {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

/* Responsive nav */
@media (max-width: 768px) {
  .desktop-nav,
  .desktop-quote {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* ===== Hero ===== */
.hero {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assets/mully.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn-primary {
  background: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-primary:hover {
  background: #0056b3;
}

/* ===== Sections ===== */
.commitment,
.donate,
.gallery {
  padding: 60px 20px;
  text-align: center;
}
.commitment {
  background: #f9f9f9;
}
.commitment h2,
.donate h2,
.gallery h2 {
  margin-bottom: 30px;
  color: #007bff;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #c82333;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.card h3 {
  margin-bottom: 10px;
}
.donate-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.donate-card {
  flex: 1;
  min-width: 250px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
}
.btn-secondary {
  background: #c82333;
  color: #fff;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #a71d2a;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.gallery-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.gallery-item img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}

/* ===== Footer ===== */
footer {
  background: #007bff;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}
