:root {
    --primary-color: #800020; /* Elegant Maroon */
    --secondary-color: #FF7518; /* Deep Saffron */
    --accent-color: #D4AF37; /* Metallic Gold */
    --light-bg: #FFFDF9; /* Off-White traditional tone */
    --dark-text: #2c2c2c;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
}

/* Custom CSS Logo Design */
.custom-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color) !important;
}
.logo-icon {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 10px;
    border: 2px solid var(--accent-color);
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-link {
    color: var(--dark-text);
    font-weight: 500;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Lang Switcher Buttons */
.lang-btn {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 2px 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}
.lang-btn.btn-active {
    background-color: var(--primary-color);
    color: white;
}

/* Banner Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1509099836639-18ba1795216d?auto=format&fit=crop&w=1400&q=80') no-repeat center center/cover;
    color: white;
    padding: 120px 0;
}
.btn-custom {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
}
.btn-custom:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Cards & Components */
.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.card:hover {
    transform: translateY(-5px);
}
.bank-card {
    border-left: 5px solid var(--accent-color);
    background-color: #ffffff;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 30px 0;
}

/* ==============================
   DONATION MODAL
================================ */

.donation-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.30);
}


/* Header */

.donation-header {
    padding: 20px 26px 16px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(
        135deg,
        #fffdf5,
        #ffffff
    );
}

.welcome-text {
    font-size: 14px;
    color: #777;
    margin-bottom: 2px;
}

.donation-title {
    font-size: 23px;
    font-weight: 700;
    color: #222;
}


/* Modal Body */

.donation-modal .modal-body {
    padding: 22px 28px 28px;
}


/* ==============================
   DONATION INTRO
================================ */

.donation-intro {
    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 18px 20px;
    margin-bottom: 20px;

    background: #fffaf0;
    border: 1px solid #f3e4b4;
    border-radius: 14px;
}

.heart-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #fff;
    border-radius: 50%;

    font-size: 21px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.donation-intro h3 {
    margin: 0 0 7px;

    font-size: 19px;
    font-weight: 700;

    color: #242424;
}

.donation-intro p {
    margin: 0;

    font-size: 14px;
    line-height: 1.6;

    color: #666;
}

.donation-intro .thank-you {
    margin-top: 7px;
    color: #444;
}


/* ==============================
   BANK CARD
================================ */

.bank-card {
    position: relative;

    padding: 22px 24px 24px;

    background: #fff;

    border: 1px solid #e8e8e8;
    border-left: 4px solid #e0b529;

    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}


/* Bank Header */

.bank-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bank-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff0f1;
    border-radius: 11px;

    font-size: 25px;
}

.bank-card-header h3 {
    margin: 0;

    font-size: 21px;
    font-weight: 750;

    color: #25282d;
}

.bank-card-header span {
    display: block;

    font-size: 15px;
    font-weight: 600;

    color: #333;

    margin-top: 2px;
}

.bank-card-header small {
    display: block;

    margin-top: 2px;

    color: #777;
    font-size: 12px;
}


/* Divider */

.bank-divider {
    height: 1px;

    background: #e7e7e7;

    margin: 18px 0 20px;
}


/* ==============================
   DETAILS
================================ */

.detail-group {
    margin-bottom: 15px;
}

.detail-group:last-child {
    margin-bottom: 0;
}

.detail-group label {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;
    font-weight: 700;

    color: #62666a;
    letter-spacing: 0.3px;
}

.detail-box {
    min-height: 44px;

    display: flex;
    align-items: center;

    padding: 10px 14px;

    background: #f8f9fa;

    border: 1px solid #dfe3e6;
    border-radius: 7px;

    color: #25282d;

    font-size: 15px;
}

.detail-box strong {
    font-weight: 650;
}


/* Copy Box */

.copy-box {
    justify-content: space-between;
}

.copy-box strong {
    font-size: 17px;
    letter-spacing: 0.2px;
}

.copy-btn {
    border: 0;
    background: transparent;

    color: #333;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    padding: 4px 6px;

    transition: 0.2s ease;
}

.copy-btn:hover {
    color: #c49712;
}


/* ==============================
   FOOTER
================================ */

.donation-footer {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 20px;
    padding: 14px 17px;

    background: #f8f8f8;

    border-radius: 11px;

    text-align: left;
}

.donation-footer > span {
    font-size: 22px;
}

.donation-footer strong {
    font-size: 14px;
    color: #333;
}

.donation-footer p {
    margin: 2px 0 0;

    font-size: 12px;
    color: #777;
}


/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 576px) {

    .donation-modal .modal-body {
        padding: 18px;
    }

    .donation-header {
        padding: 17px 18px;
    }

    .donation-title {
        font-size: 20px;
    }

    .donation-intro {
        padding: 15px;
    }

    .bank-card {
        padding: 18px 15px;
    }

    .bank-card-header h3 {
        font-size: 18px;
    }

    .copy-box strong {
        font-size: 14px;
    }
}