/* Global Page Styles - Matching Hiroszima.pl dark/minimal vibe */
body {
    background-color: #000;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1400px;
    /* Allow more width */
    margin: 0 auto;
}

/* Nekrolog Card - Classical Style */
.nekrolog-card {
    background-color: #fff;
    color: #000;
    padding: 25px;
    width: 100%;
    max-width: 900px;
    /* Increased size significantly */
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

/* Double Border Effect */
.border-outer {
    border: 15px solid #000;
    padding: 8px;
    height: 100%;
}

.border-inner {
    border: 3px solid #000;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Typography & Layout - Scaled Up */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.initial {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 4rem;
    /* Larger */
    font-style: italic;
}

.cross-icon svg {
    display: block;
    /* width/height controlled by SVG attributes, updated in HTML */
}

.date-line {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    /* Larger */
    margin-bottom: 20px;
}

.deceased-name {
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
    font-style: italic;
    font-size: 5rem;
    /* Much Larger */
    margin: 20px 0;
    line-height: 1.1;
}

.description {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    /* Larger */
    line-height: 1.6;
    max-width: 85%;
    margin: 0 auto;
}

.mourning-info {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2rem;
    /* Larger */
    margin-top: 30px;
    font-weight: bold;
}



/* Responsive adjustments */
@media (max-width: 900px) {
    .content-wrapper {
        flex-direction: column-reverse;
        /* Candle on top or bottom? usually next to or below on mobile, lets do column */
        gap: 40px;
    }

    .deceased-name {
        font-size: 3rem;
    }

    .border-inner {
        padding: 20px 10px;
    }

    .description {
        font-size: 1.4rem;
    }
}