/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
/* Hero Section */
.hero-section {
    background: url('../images/volunteer-hero.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-section .overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* Text Styling */
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;

}

/* Fix for Mobile Background */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll; /* Fix for mobile */
        height: 350px;
    }

    .hero-section h1 {
        font-size: 1rem;
        margin-top: 100px;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

/* Volunteer Cards */
.card {
    border: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Colors */
.text-orange {
    color: #ff7f00;
}

.text-violet {
    color: #6c4cff;
}

/* Buttons */
.btn-violet, .btn-orange {
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-violet:hover {
    background-color: #5a3bcc;
}

.btn-orange:hover {
    background-color: #e56700;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .hero-section {
        height: 350px;
    }
    .hero-section h1 {
        font-size: 2.5rem;
    }
}




.footer {
    background: #000;
    color: white;
  }
  
  .footer h5 {
    color: #ff7f00;
    font-size: 1.5rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7f00;
  }
  
  .footer .border-white {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  