@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap");

:root {
    --brand-red: #f14e4b;
    --text-dark: #333333;
    --text-grey: #666666;
    --border-color: #eaeaea;
}

body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

/* Top Header */
.top-header {
    border-bottom: 1px solid var(--border-color);
    background-color: #ffffff;
    height: 48px;
}

.top-header-text {
    font-size: 13px;
    color: var(--text-grey);
}

.phone-number {
    color: #5c8b9b;
}

.top-volunteer-btn {
    background-color: var(--brand-red);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
    height: 100%;
}

.top-volunteer-btn:hover {
    color: #ffffff;
    opacity: 0.9;
}

/* Navbar */
.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.navbar-brand img {
    max-height: 55px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 18px !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--brand-red);
}

.navbar-nav .nav-link.active {
    color: var(--brand-red) !important;
}

.btn-donate {
    background-color: var(--brand-red);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 2px;
    transition: opacity 0.3s ease;
    border: none;
}

.btn-donate:hover {
    color: #ffffff;
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070&auto=format&fit=crop")
        center/cover no-repeat;
    padding: 80px 0;
}

.hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.badge-custom {
    background: #ffffff;
    color: var(--brand-red);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.25;
}

.text-highlight {
    color: var(--brand-red);
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.95;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

.btn-primary-custom {
    background-color: var(--brand-red);
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #d9423f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(241, 78, 75, 0.4);
}

.btn-outline-light-custom {
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 4px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
    background-color: #fff;
    color: #333;
    transform: translateY(-2px);
}

/* About Section */
.text-brand-red {
    color: var(--brand-red) !important;
}

.text-dark-blue {
    color: #1a2b4c;
}

.bg-light-red {
    background-color: rgba(241, 78, 75, 0.1);
}

.tracking-wider {
    letter-spacing: 2px;
}

.section-subtitle .subtitle-line {
    width: 40px;
    height: 2px;
    background-color: var(--brand-red);
    display: inline-block;
}

.icon-box-sm {
    width: 45px;
    height: 45px;
    min-width: 45px;
}

.about-img-wrapper {
    padding-left: 30px;
    padding-bottom: 30px;
}

.about-img-bg {
    top: 30px;
    left: 0;
    width: 90%;
    height: 95%;
    background-color: var(--brand-red);
    opacity: 0.1;
    border: 2px dashed var(--brand-red);
}

.floating-badge {
    bottom: 0px;
    right: -20px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .floating-badge {
        right: 10px;
        bottom: 0px;
    }
}

/* Footer Section */
.footer-section {
    background-color: #0d1321;
    color: #a0aabf;
}

.footer-logo {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--brand-red);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0aabf;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--brand-red);
    transform: translateX(5px);
}

.what-we-do-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.what-we-do-links li:last-child {
    border-bottom: none;
}

.footer-contact li {
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-link {
    color: #a0aabf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--brand-red);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--brand-red);
    color: #ffffff;
    transform: translateY(-3px);
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom-text {
    font-size: 0.85rem;
}

/* Team Section */
.bg-light {
    background-color: #f8f9fa !important;
}

.team-card {
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.team-img-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0) 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-img-wrapper::after {
    opacity: 1;
}

.team-img-wrapper img {
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.08);
}

.team-social {
    bottom: 20px;
    left: 0;
    right: 0;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: var(--brand-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #fff;
    color: var(--brand-red);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Gallery Section */
.gallery-item img {
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    background: rgba(22, 33, 53, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    text-decoration: none;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.gallery-icon:hover {
    background-color: #fff !important;
    color: var(--brand-red) !important;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.bg-brand-red {
    background-color: var(--brand-red) !important;
}

/* CTA Section */
.py-lg-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.cta-section {
    background: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070&auto=format&fit=crop")
        center/cover fixed;
}

.cta-overlay {
    background: linear-gradient(
        135deg,
        rgba(236, 68, 65, 0.92),
        rgba(184, 18, 18, 0.95)
    ); /* Brand red to deep red */
}

.cta-social .social-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    border-radius: 8px; /* Square with rounded corners like the image */
    font-size: 1.25rem;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.cta-social .btn-fb {
    background-color: #3b5998;
    color: white;
}
.cta-social .btn-tw {
    background-color: #00aced;
    color: white;
}
.cta-social .btn-yt {
    background-color: #cb2027;
    color: white;
}
.cta-social .btn-ig {
    background-color: #262626;
    color: white;
}

.cta-social .social-btn:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
    color: white;
}

.cta-btn {
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #111;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: transparent;
    color: #ffffff;
}

.cta-btn i {
    color: #111;
    transition: color 0.4s ease;
}

.cta-btn:hover i {
    color: #ffffff;
}

/* About Us Page Styles */
.page-header {
    background: url("https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?q=80&w=2070&auto=format&fit=crop")
        center/cover no-repeat fixed;
}

.page-header-bg {
    background: rgba(13, 19, 33, 0.85); /* dark blue overlay */
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.mission-card {
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.objective-box {
    transition: all 0.3s ease;
}

.objective-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    border-top-color: var(--dark-blue) !important;
}

.objective-box i {
    transition: transform 0.3s ease;
}

.objective-box:hover i {
    transform: scale(1.15);
}

/* Contact Page Styles */
.contact-form-wrapper .form-control {
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 0.25rem rgba(241, 78, 75, 0.25);
}

.contact-info-wrapper {
    background: linear-gradient(145deg, #ffffff, #f1f3f5);
}

.info-icon {
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background-color: var(--brand-red) !important;
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(241, 78, 75, 0.3) !important;
}



/* Modal content wrapper */
.donation-modal-content {
    border-radius: 16px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    font-family: "Montserrat", sans-serif;
}

/* Header banner */
.donation-modal-header {
    overflow: hidden;
}

.donation-header-bg {
    background: linear-gradient(135deg, #c0392b 0%, var(--brand-red) 50%, #e74c3c 100%);
    position: relative;
}

.donation-header-bg::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

.donation-header-bg::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* Animated heart icon */
.donation-icon-wrap {
    width: 68px;
    height: 68px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    animation: donation-pulse 2s ease-in-out infinite;
}

.donation-heart-icon {
    font-size: 1.8rem;
    color: #ffffff;
}

@keyframes donation-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50%       { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.donation-modal-title {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.donation-modal-subtitle {
    font-size: 0.9rem;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* Close button (top-right corner) */
.donation-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.donation-close-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(90deg);
}

/* Quote message box */
.donation-message-box {
    background: rgba(241, 78, 75, 0.06);
    border-left: 4px solid var(--brand-red);
    border-radius: 0 8px 8px 0;
    margin: 24px 24px 0 24px;
}

.donation-message-text {
    font-size: 0.93rem;
    color: #444;
    line-height: 1.75;
}

.donation-quote-icon {
    color: var(--brand-red);
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Divider */
.donation-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #eaeaea, transparent);
    margin-top: 20px;
}

/* Section label with lines */
.donation-section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.donation-label-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--brand-red));
}

.donation-label-line:last-child {
    background: linear-gradient(to left, transparent, var(--brand-red));
}

.donation-label-text {
    white-space: nowrap;
}

/* Info cards */
.donation-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 16px 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.donation-info-card:hover {
    border-color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(241, 78, 75, 0.12);
}

.donation-info-icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(241, 78, 75, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--brand-red);
    transition: all 0.3s ease;
}

.donation-info-card:hover .donation-info-icon-wrap {
    background: var(--brand-red);
    color: #ffffff;
}

.donation-info-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}

.donation-info-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2b4c;
    word-break: break-all;
}

/* Copyable values */
.donation-copyable {
    cursor: pointer;
    transition: color 0.2s ease;
}

.donation-copyable:hover {
    color: var(--brand-red);
}

.donation-copy-icon {
    font-size: 0.78rem;
    opacity: 0.55;
}

/* Copy success toast */
.donation-copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a2b4c;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
    white-space: nowrap;
}

.donation-copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Footer note */
.donation-footer-note {
    margin-top: 4px;
}

.donation-note-inner {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px 18px;
}

.donation-shield-icon {
    font-size: 1.6rem;
    color: #28a745;
}

.donation-note-text {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.6;
}

/* Modal footer bar */
.donation-modal-footer {
    background: #f8f9fa;
    border-top: 1px solid #eaeaea;
}

.donation-footer-brand {
    font-size: 0.82rem;
    color: #999;
    font-weight: 500;
}

.donation-close-footer-btn {
    background: var(--brand-red);
    color: #ffffff;
    border: none;
    padding: 8px 26px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-close-footer-btn:hover {
    background: #d9423f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 78, 75, 0.35);
}

/* Responsive tweaks */
@media (max-width: 575px) {
    .donation-modal-title {
        font-size: 1.2rem;
    }

    .donation-section-label {
        font-size: 0.65rem;
        gap: 6px;
    }

    .donation-info-card {
        padding: 12px 14px;
    }

    .donation-label-text {
        white-space: normal;
        text-align: center;
    }
}


