/* Import Basics */
:root {
    --bg-pink: #FFC0CB;
    --btn-pink: #FF69B4;
    --gold: #FFD700;
    --silver: #C0C0C0;
    --text-brown: #5D4037;
    --soft-bg: #FFF5F7;
}

body {
    background-color: var(--soft-bg);
}

/* --- HERO SECTION --- */
.honors-hero {
    background: linear-gradient(135deg, #FFC0CB 0%, #FFB6C1 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.honors-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    text-align: center;
    color: var(--btn-pink);
    font-size: 2rem;
    margin-bottom: 5px;
}

.subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 30px;
}

/* --- DONORS SECTION --- */
.donors-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 600px) {
    .donors-container { grid-template-columns: 1fr 1fr; }
}

.donor-column {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 2px dashed var(--bg-pink);
}

.donor-column h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-brown);
}

.donor-list {
    list-style: none;
    text-align: center;
}

.donor-list li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-brown);
    font-weight: 600;
}

.btn-donate {
    display: block;
    margin: 0 auto;
    background-color: var(--btn-pink);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-donate:hover { background-color: #ff4da6; }

.divider {
    border: 0;
    height: 2px;
    background: #eee;
    margin: 50px 0;
}

/* --- SUCCESS STORIES SECTION --- */
.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.success-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.success-img-container {
    height: 200px;
    position: relative;
}

.success-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Slight fade to make badge pop */
}

/* The "Adopted" Badge */
.badge-adopted {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #4CAF50; /* Green for success */
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.success-info {
    padding: 15px;
    text-align: center;
}

.success-info h4 {
    color: var(--text-brown);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.success-info p {
    font-size: 0.9rem;
    color: #888;
}