/* Base styles */
body {
    font-family: 'Poppins', sans-serif;
    background: #fffafc;
    color: #444;
}

/* Navigation */
.nav-link.active {
    font-weight: bold;
    color: #b85d74 !important;
}

/* Accent utility (optional use in future content) */
.text-pink {
    color: #b85d74 !important;
}

/* Button styling */
.btn-pink {
    background-color: #f8b6c1;
    border: none;
    color: white;
    font-weight: 500;
}

.btn-pink:hover {
    background-color: #f499aa;
}

/* Registry page header */
.registry-header {
    background: #f8d9e0;
    padding: 3rem 1rem;
    text-align: center;
}

.registry-header h1 {
    font-weight: 500;
    font-size: 2.5rem;
    color: #b85d74;
}

/* Card image for registry items */
.card-img-top {
    height: 250px;
    object-fit: contain;
    padding: 10px;
}

/* Hero section for landing page */
.hero {
    background: url('/images/hero-bg.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0); /* transparent overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.hero h1 {
    font-family: 'Great Vibes', cursive, sans-serif;
    font-size: 3rem;
}

.hero p {
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Section padding utility */
.section-padding {
    padding: 4rem 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

.donation-section {
    background-color: #fce4ea; /* soft pink to match theme */
    padding: 2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.pagination-btn {
    background-color: #f8b6c1 !important;
    color: white !important;
    border: none !important;
    padding: 6px 16px;
    margin: 0 6px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
}

.pagination-btn:hover:not(:disabled) {
    background-color: #f499aa !important;
    cursor: pointer;
}

.pagination-btn:disabled {
    background-color: #f3d8df !important;
    color: #ffffffcc !important;
    cursor: not-allowed;
}

.registry-header .btn-sm {
    margin-top: 0.5rem;
}

.pagination .page-link {
    background-color: #f8b6c1;
    color: white;
    border: none;
    margin: 0 4px;
    transition: background 0.2s ease-in-out;
}

.pagination .page-link:hover {
    background-color: #f499aa;
}

.pagination .disabled .page-link {
    background-color: #f3d8df;
    color: #ffffffcc;
}

.btn-clear {
    background-color: #f8b6c1;
    color: white;
    border: none;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

.btn-clear:hover {
    background-color: #f499aa;
}