
 /* Base Styles */
   
            /* Header Styles */
  .site-header{
    background:#fff;
    border-bottom:1px solid #ddd;
    padding:12px 0;
  }
  .container{
    width:95%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* Logo + Title */
  .brand{
    display:flex;
    align-items:center;
    text-decoration:none;
  }
  .logo{
    height:50px;
    margin-right:10px;
  }
  .brand-title{
    font-size:1.3rem;
    font-weight:700;
    color:#a80000;
  }

  /* Navigation */
  .navbar .menu{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
  }
  .navbar .menu > li{
    position:relative;
    margin:0 12px;
  }
  .navbar .menu > li > a{
    text-decoration:none;
    font-weight:600;
    color:#333;
    padding:8px 10px;
  }
  .navbar .menu > li > a:hover{
    color:#a80000;
  }
/*.nav-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle; 
  position: relative;
  top: -2px;              
}
*/

  /* Dropdown */
  .submenu{
    list-style:none;
    margin:0;
    padding:8px 0;
    background:#fff;
    border:1px solid #ddd;
    border-radius:6px;
    position:absolute;
    top:100%;
    left:0;
    min-width:180px;
    display:none;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .submenu li a{
    display:flex;
    padding:10px 15px;
    align-items: center;
    text-decoration:none;
    color:#333;
    font-size:0.95rem;
    gap: 8px;
  }
  .submenu li a:hover{
    background:#f4f4f4;
    color:#a80000;
  }

  .submenu li a .icon {
  width: 18px;
  height: 18px;
}

/* Dropdown Fix */
.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
  display: block;   /* stays open if hovered or focused */
}

  /* Donate Button */
.donate {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

.donate h2 {
  color: #a80000;
  margin-bottom: 15px;
}

.donate p {
  margin-bottom: 25px;
  color: #444;
}

.donate-btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  background: #a80000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
  .donate-btn:hover{
    background:#ff7a00;
  }

        /* ==============================
   GLOBAL STYLES
============================== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #222;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #333;
  font-weight: 700;
}

p {
  color: #555;
}

/* Button Base Style */
.btn, .btn3 {
  display: inline-block;
  background: #d11f3d;
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover, .btn3:hover {
  background: #b01832;
  transform: translateY(-2px);
}

/* ==============================
   HERO SECTION
============================== */
.hero3 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
              url('https://images.unsplash.com/photo-1600508772925-8d8d7fda3e2a?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  animation: fadeInHero 2s ease;
}

@keyframes fadeInHero {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero3 .container3 h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero3 p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ==============================
   SECTION TITLES
============================== */
.section-title3 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title3 h2 {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.section-title3 h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #d11f3d;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* ==============================
   WAYS TO HELP
============================== */
.help-options3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.help-card3 {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  animation: popIn 0.8s ease forwards;
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.help-card3:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card-icon3 {
  font-size: 2.5rem;
  color: #d11f3d;
  margin-bottom: 1rem;
}

/* ==============================
   VOLUNTEER FORM
============================== */
#volunteer {
  padding: 60px 20px;
}

#volunteerForm3 {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group3 {
  margin-bottom: 1.2rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control3, textarea, select {
  width: 100%;
  padding: 0.8rem;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-control3:focus, textarea:focus, select:focus {
  border-color: #d11f3d;
  outline: none;
}

/* ==============================
   EVENTS SECTION
============================== */
.events-grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem 3rem;
}

.event-card3 {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.event-card3:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.event-image3 {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-content3 {
  padding: 1.5rem;
}

.event-date3 {
  font-weight: bold;
  color: #d11f3d;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.4rem;
}

.event-content3 h3 {
  margin: 0.3rem 0 0.6rem;
}

/* ==============================
   FOOTER SECTION
============================== */
.site-footer {
  background-color: #111;
  color: #ddd;
  padding: 3rem 1rem 1rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #d11f3d;
}

.socials a {
  display: inline-flex;
  align-items: center;
  color: #ddd;
  margin-right: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.socials a:hover {
  color: #d11f3d;
  transform: translateY(-2px);
}

.socials img {
  width: 20px;
  margin-right: 5px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 768px) {
  .hero3 h2 {
    font-size: 2rem;
  }
  .help-options3 {
    flex-direction: column;
    align-items: center;
  }
  #volunteerForm3 {
    padding: 1.5rem;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
