/* ================================
   BRAND TOKENS
================================ */
:root {
    --green-dark: #1a4d2e;
    --green-soft: #2f6f4e;
    --yellow-main: #ffbf00;
    --orange-main: #ff9f1c;
    --off-white: #f8f9fa;

    /* Bootstrap overrides */
    --bs-primary: var(--green-dark);
    --bs-warning: var(--yellow-main);
    --bs-border-radius: 14px;
    --bs-body-font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ================================
   GLOBAL
================================ */
body {
    background-color: var(--off-white);
    color: var(--green-dark);
}

section {
    padding: 90px 0;
}

/* ================================
   NAVBAR (Clean + Premium)
================================ */
.navbar {
    background: linear-gradient(
        90deg,
        var(--off-white),
        #ffffff
    ) !important;
    border-bottom: 3px solid var(--orange-main);
    padding: 1rem 0;
}

.nav-link {
    font-weight: 600;
    color: var(--green-dark) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--yellow-main),
        var(--orange-main)
    );
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ================================
   HERO / FEATURE SECTIONS
================================ */
.bg-green-gradient {
    background: linear-gradient(
        135deg,
        var(--green-dark),
        var(--green-soft)
    ) !important;
    color: white;
}

.bg-yellow-gradient {
    background: linear-gradient(
        135deg,
        var(--yellow-main),
        var(--orange-main)
    ) !important;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Image layer */
    background-image: url("/static/imgs/1.jpg");
    background-size: cover;
    background-position: center;

    /* Controls how strong the image is */
    opacity: 0.18;

    /* Makes image blend INTO green */
    mix-blend-mode: overlay;

    z-index: 1;
}

/* Ensures content stays on top */
.hero-section > .container {
    z-index: 2;
}


/* ================================
   CARDS (Modern & Confident)
================================ */
.shakers-card {
    background: linear-gradient(
        180deg,
        #ffffff,
        var(--off-white)
    );
    border: none;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(26, 77, 46, 0.12);
    transition: all 0.35s ease;
}

.shakers-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(26, 77, 46, 0.18);
}

/* ================================
   BUTTONS (Strong CTA Identity)
================================ */
.btn-primary {
    background: linear-gradient(
        135deg,
        var(--green-dark),
        var(--green-soft)
    );
    border: none;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 50px;
}

.btn-primary:hover {
    background: linear-gradient(
        135deg,
        var(--green-soft),
        var(--green-dark)
    );
}

.btn-donate {
    background: linear-gradient(
        135deg,
        var(--orange-main),
        var(--yellow-main)
    );
    color: var(--green-dark);
    border-radius: 50px;
    font-weight: 800;
    padding: 14px 32px;
}

.btn-donate:hover {
    background: linear-gradient(
        135deg,
        var(--yellow-main),
        var(--orange-main)
    );
    color: var(--green-dark);
}

/* ================================
   SECTION TITLES
================================ */
.section-title {
    font-weight: 800;
    color: var(--green-dark);
    position: relative;
    padding-left: 18px;
    margin-bottom: 2rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 6px;
    background: linear-gradient(
        180deg,
        var(--yellow-main),
        var(--orange-main)
    );
    border-radius: 10px;
}

/* ================================
   SOFT BACKGROUND SECTIONS
================================ */
.bg-light-green {
    background: linear-gradient(
        180deg,
        var(--off-white),
        #eef6f2
    ) !important;
}

/* ================================
   FOOTER (Rich & Elegant)
================================ */
.footer-main {
    background: linear-gradient(
        135deg,
        var(--green-dark),
        #143d26
    ) !important;
    padding: 70px 0 35px;
}

.footer-main h3,
.footer-main h5 {
    color: var(--yellow-main);
    font-weight: 800;
}

.footer-main p,
.footer-main li,
.footer-main span {
    color: rgba(255, 255, 255, 0.85);
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--yellow-main);
    padding-left: 6px;
}

.footer-contact i {
    color: var(--yellow-main);
    width: 25px;
}

/* ================================
   SOCIAL ICONS
================================ */
.social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.05)
    );
    color: white !important;
    transition: 0.3s;
}

.social-icon:hover {
    background: linear-gradient(
        135deg,
        var(--orange-main),
        var(--yellow-main)
    );
    transform: translateY(-4px);
}

/* ================================
   UTILITIES
================================ */
.text-yellow { color: var(--yellow-main) !important; }
.text-orange { color: var(--orange-main) !important; }
.text-green { color: var(--green-dark) !important; }
.fw-800 { font-weight: 800; }
.fw-600 { font-weight: 600; }


/* Donation form inputs */
input, select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
    border: 2px solid #eee;
    transition: border-color 0.2s ease;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--shakers-orange);
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: transform .2s ease, opacity .2s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px);
    opacity: 0.9;
}

