html, body {
    height: 100%;
    background-color: #f8f2ed;
    color: #655547;
    font-family: "Playwrite DE Grund", cursive;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}

body {
    min-height: 100vh;
}

/* White navbar and footer */
.main-header, .navbar, nav.navbar {
    background-color: #fff !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

footer, .main-footer {
    position: static !important;
    background-color: #fff !important;
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.08);
}

/* Card styling */
.card {
    background-color: #fff;
    border-radius: .75rem;
}

@media (max-width: 767.98px) {
    .card {
        border-radius: 0;
        margin-left: -12px;
        margin-right: -12px;
    }
}

/* Brand buttons */
.btn-outline-primary {
    color: #E91E63;
    border-color: #E91E63;
}

.btn-primary, .btn-primary.disabled, .btn-primary:disabled, .btn-primary:hover {
    color: #fff;
    background-color: #E91E63;
    border-color: #E91E63;
}

.form-check-input:checked {
    background-color: #E91E63;
    border-color: #E91E63;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show>.btn-outline-primary.dropdown-toggle,
.btn-outline-primary:hover {
    color: #fff;
    background-color: #E91E63;
    border-color: #E91E63;
}

.btn-outline-primary:focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

/* Hero Section */
.donate-hero {
    background: linear-gradient(135deg, #f8f2ed 0%, #fdf6f0 100%);
}

.donate-hero h1 {
    color: #4a3728;
}

.donate-hero .lead {
    font-size: 1.15rem;
}

/* Pillar Cards */
.pillar-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 100%;
    transition: transform 0.2s ease;
}

.pillar-card:hover {
    transform: translateY(-3px);
}

/* Gift Tier Cards */
.gift-tier-card {
    background: #f8f2ed;
    border-radius: 0.75rem;
    border: 1px solid rgba(233, 30, 99, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gift-tier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gift-tier-card.selectable-gift {
    cursor: pointer;
}

.gift-tier-card.selectable-gift:focus {
    outline: 2px solid #E91E63;
    outline-offset: 2px;
}

.gift-tier-card.featured {
    background: linear-gradient(135deg, #fdf6f0 0%, #fff5f8 100%);
    border: 2px solid #E91E63;
}

.gift-amount {
    font-size: 2rem;
    font-weight: bold;
    color: #E91E63;
}

/* Support List */
.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
}

.support-list li i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Personal Message */
.personal-message {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #E91E63;
}

/* Testimonial Cards */
.testimonial-card {
    background: #f8f2ed;
    border-radius: 0.75rem;
    border-top: 3px solid #E91E63;
}

/* FAQ Items */
.faq-item {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

/* Blockquote styling */
.blockquote {
    font-size: 1.2rem;
    color: #4a3728;
}

.blockquote-footer {
    color: #4a8c5c;
    font-weight: bold;
}

/* Section heading spacing */
section h2 {
    color: #4a3728;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}
