:root {

    --primary-orange: #FF5722;
    --primary-amber: #FFC107;
    --dark-grey: #212121;
    --white: #FFFFFF;
    --black: #000000;


    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lato', sans-serif;


    --button-shadow: 4px 0 9.1px 0 rgba(255, 87, 34, 0.21);
}


html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}


.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}


.header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-grey);
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-orange);
}


.hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    width: 100%;
}

.hero-heading {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 30px;
    line-height: 1.2;
    max-width: 650px;
    text-align: left;
}

.hero-subtext {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 31px;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 600px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-button {
    background-color: var(--primary-amber);
    color: var(--black);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 16px;
    border: 1px solid var(--black);
    border-radius: 8px;
    box-shadow: var(--button-shadow);
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 6px 2px 12px 0 rgba(255, 87, 34, 0.3);
}

.cta-button-outline {
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 16px;
    border: 1px solid var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.cta-button-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


.reality-section {
    padding: var(--space-section-v) var(--space-section-h);
    background-color: var(--white);
}

.section-heading {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
}

.reality-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
}

.reality-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reality-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-grey);
}

.accent-text {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-amber);
    margin: 15px 0 auto;
}

.reality-image {
    display: flex;
    justify-content: center;
    scale: calc(0.9);
}

.reality-image img {
    width: 100%;
    max-width: 370px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.benefits-section {
    padding: var(--space-section-v) var(--space-section-h);
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-gap-lg);
    margin-top: var(--space-gap-lg);
}

.benefit-card {
    background-color: var(--dark-grey);
    border: 1px solid var(--primary-orange);
    border-radius: 15px;
    padding: var(--space-card-v) var(--space-card-h);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
}

.benefit-heading {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-amber);
    margin-bottom: 6px;
}

.benefit-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.6;
}


.donation-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    scroll-margin-top: 80px;

}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.donation-card {
    background-color: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.donation-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.2);
}

.donation-card.featured {
    border-color: var(--primary-orange);
    background: linear-gradient(135deg, #fff 0%, #fff5f2 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-orange);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
}

.donation-amount {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.donation-impact {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-grey);
    margin-bottom: 25px;
    min-height: 48px;
}

.donate-btn {
    background-color: var(--primary-amber);
    color: var(--black);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 30px;
    border: 1px solid var(--black);
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}


.impact-section {
    background-color: var(--primary-orange);
    padding: 30px 0;
    text-align: center;
}

.impact-heading {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.impact-description {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px;
}

.cta-button-white {
    background-color: var(--white);
    color: var(--primary-orange);
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 16px;
    border: 1px solid var(--white);
    border-radius: 8px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.cta-button-white:hover {
    background-color: var(--primary-amber);
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-2px);
}


@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    .hero-content {
        padding: 0 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-heading {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 14px;
        line-height: 26px;
    }

    .section-heading {
        font-size: 28px;
    }

    .reality-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .donation-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .cta-button,
    .cta-button-outline {
        min-width: 0 !important;
        text-align: center;
        white-space: nowrap;
        padding: 10px 8px;
        font-size: 13px;
    }

    .hero-buttons a {
        flex: 1.3 !important;
        min-width: 0 !important;
        display: flex;
    }

    .hero-buttons a .cta-button {
        width: 100%;
    }

    .cta-button-outline {
        flex: 1 !important;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
        text-align: center;
    }

    .hero-subtext {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }

    .section-heading {
        font-size: 24px;
    }

    .impact-heading {
        font-size: 22px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .cta-button,
    .cta-button-outline {
        min-width: 0 !important;
        font-size: 17px;
        padding: 10px 12px;
        white-space: nowrap;
    }

    .hero-buttons a {
        flex: 1.3 !important;
        min-width: 0 !important;
        display: flex;
    }

    .hero-buttons a .cta-button {
        width: 100%;
    }

    .cta-button-outline {
        flex: 1 !important;
    }

    .accent-text {
        text-align: center;
    }
}