/* Memorial Page Styles */
.memorial-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100vw;
}

.memorial-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center; 
}

.memorial-image {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
}

.memorial-buttons {
    background-color: #CECECE;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 30px;
    width: 90%;
}

.btn-memorial {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
    border-radius: 8px;
    min-width: 150px;
}

.btn-thai {
    background-color: #888888;
    color: white;
}

.btn-thai:hover {
    background-color: #666666;
}

.btn-english {
    background-color: #888888;
    color: white;
}

.btn-english:hover {
    background-color: #666666;
}

/* Responsive */
@media (max-width: 768px) {
    .memorial-content {
        justify-content: flex-start;
        padding-top: 20px; 
        height: auto;
    }
    .memorial-buttons { 
        gap: 15px;
        padding: 15px;
    } 
    .btn-memorial {
        padding: 8px 15px;
        font-size: 12px;
        min-width: 80px;
    }
}