:root {
    --primary: #FF6F0F;
    --secondary: #FFF0E6;
    --light: #F8F8F9;
    --dark: #001D23;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: var(--dark);
    padding: 10px 0;
}

.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-md img {
    width: 100px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-donate {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-donate:hover {
    background-color: #ff4a3d;
}

/* Page Header */
/* .page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(#aeb7b9cc, rgba(0, 29, 35, .8)), url('images/team-1.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
} */
 .page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: linear-gradient(#aeb7b9cc, rgba(0, 29, 35, .8)), url('images/team-1.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
}

.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .blockquote {
    margin-top: 20px;
    font-size: 1.5rem;
    /* color: var(--secondary); */
    color: grey;
}

.page-header .blockquote-footer {
    color: var(--primary);
    /* font-size: 1.2rem; */
    font-size: 1rem;
}

/* Team Section */
.team-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-item:hover {
    transform: translateY(-10px);
}

.team-item img {
    width: 100%;
    height: auto;
}

.team-text {
    padding: 20px;
    background-color: var(--light);
    text-align: center;
}

.team-text h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.team-text p {
    font-size: 1rem;
    color: var(--primary);
}

.team-social {
    margin-top: 10px;
}

.team-social a {
    color: var(--dark);
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--primary);
}

/* Team Members Placeholder */
.team-members-placeholder {
    background-color: var(--primary);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 20px;
    text-align: left;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-item {
    flex: 1;
    min-width: 200px;
}

.footer-item img {
    margin-bottom: 10px;
}

.footer-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-item p,
.footer-item ul,
.footer-item form {
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li {
    margin-bottom: 5px;
}

.footer-item ul a {
    color: white;
    text-decoration: none;
}

.footer-item ul a:hover {
    color: var(--primary);
}

.footer-item form {
    display: flex;
    flex-direction: column;
}

.footer-item input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.footer-item button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
}

.footer-item button:hover {
    background-color: #ff4a3d;
}

.footer-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.footer-social a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
}

.footer-social a img {
    width: 30px;
    height: 30px;
}

.footer-social a:hover {
    color: var (--primary);
}

/* Remove underline from footer quick links */
.footer-nav a {
    text-decoration: none;
}

/* Add hover effect for better user experience (optional) */
.footer-nav a:hover {
    text-decoration: none; /* You can replace this with any desired effect */
}