/* Enhanced reflections.css - Modern, Serene & Attractive Design */

.reflection-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(7, 85, 70, 0.1);
}

.reflection-card {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    border-left: 5px solid #075546;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.reflection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #075546, #04aa6d);
    opacity: 0.8;
}

.reflection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-left-color: #04aa6d;
}

.reflection-header {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.reflection-title {
    flex: 1;
    min-width: 250px;
}

.reflection-title h1 {
    font-size: 28px;
    font-weight: 700;
    color: #075546;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.reflection-title h3 {
    font-size: 20px;
    font-weight: 500;
    color: #2c3e50;
    margin: 0;
    font-style: italic;
    opacity: 0.9;
}

.reflection-photo {
    flex-shrink: 0;
}

.reflection-photo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #075546;
    box-shadow: 0 6px 15px rgba(7, 85, 70, 0.2);
    transition: all 0.4s ease;
}

.reflection-photo img:hover {
    transform: scale(1.08);
    border-color: #04aa6d;
    box-shadow: 0 10px 25px rgba(7, 85, 70, 0.3);
}

.reflection-card .prose {
    font-size: 17px;
    line-height: 1.85;
    color: #2d3436;
    margin-top: 20px;
    text-align: justify;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.reflection-card .prose p {
    margin-bottom: 20px;
    text-indent: 1.5em;
}

.reflection-card .prose p:first-of-type::first-letter {
    initial-letter: 2;
    color: #075546;
    font-weight: bold;
    margin-right: 8px;
    font-size: 3em;
    line-height: 1;
    float: left;
}

.reflection-card hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 35px 0;
}

.signature {
    font-size: 16px;
    font-style: italic;
    color: #075546;
    text-align: right;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #e8f5e9;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .reflection-container {
        margin: 20px auto;
        padding: 20px;
    }
    .reflection-card {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .reflection-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .reflection-photo img {
        width: 120px;
        height: 120px;
    }
    .reflection-title h1 {
        font-size: 24px;
    }
    .reflection-title h3 {
        font-size: 18px;
    }
    .reflection-card .prose {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .reflection-container {
        padding: 15px;
        margin: 10px auto;
    }
    .reflection-card {
        padding: 20px;
    }
    .reflection-photo img {
        width: 100px;
        height: 100px;
    }
}