/* Memory Page CSS */
:root {
    --purple-soft: #002147;
    --purple-dark: #F2A900;
    --white: #ffffff;
    --bg-grey: #f4f4f4;
}

body {
    font-family: 'Inter', sans-serif; /* Standard Professional Font */
    background-color: var(--bg-grey);
}

.memory-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1499728603963-bc0922fc718a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: 76px;
}

.memory-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 20px;
}

.memory-section {
    padding: 80px 0;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.tribute-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 20px;
    border-top: 4px solid var(--purple-soft);
}

.tribute-img {
    width: 120px;
    height: 120px;
    background-color: #ddd;
    border-radius: 50%;
    margin: -60px auto 20px;
    border: 5px solid white;
    object-fit: cover;
    position: relative;
    top: 60px;
    margin-bottom: 70px; /* offset the top calc */
}

/* Fix for layout flow */
.tribute-placeholder {
    height: 100px;
    background-color: var(--bg-grey);
    margin-bottom: 0px;
}

.tribute-name {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.tribute-dates {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tribute-msg {
    padding: 0 20px;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.ways-to-give {
    background: white;
    padding: 80px 0;
}

.give-option {
    text-align: center;
    padding: 20px;
    transition: 0.3s;
}

.give-option:hover {
    transform: translateY(-5px);
}

.give-icon {
    font-size: 3rem;
    color: var(--purple-soft);
    margin-bottom: 20px;
}

.btn-memory {
    background-color: var(--purple-soft);
    color: white;
    padding: 12px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-family: sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 20px;
}

.btn-memory:hover {
    background-color: var(--purple-dark);
    color: white;
}
