/* General Styling */
body {
    background: url('../img/black.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ensures everything fits in one screen */
}

/* Container to Fit Everything in One Screen */
.container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 90vh;
}

/* Title & Subtitle */
.page-title {
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    margin-top: -18px; /* Adjust to match last page */
    text-align: center; /* Ensures alignment */
}

.subtitle {
    font-size: 0.95rem;
    margin-top: -35px;
    margin-bottom:25px;
    opacity: 0.8;
}

.victim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 names per row */
    gap: 10px;
    text-align: center;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: -20px;
}

/* Last Row Centered & Shifted Slightly Left */
.last-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Maintain 3-column format */
    gap: 10px;
    width: 100%;
    margin-top: -10px; /* Adjusts the spacing */
}

/* Ensure the first name appears in column 1 */
.last-row p:nth-child(1) {
    grid-column: 1 / 2; /* Forces the name to column 1 */
    text-align: center;
}

/* Ensure the second name appears in column 3 */
.last-row p:nth-child(2) {
    grid-column: 3 / 4; /* Forces the name to column 3 */
    text-align: center;
}


.quote-box {
    font-style: italic; /* Makes the quote italic */
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: -10px;
}

/* Quote Author */
.quote-author {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Call to Action Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* Spacing between button rows */
    margin-top: 10px;
    margin-bottom: 55px;
}

/* Top Row Buttons */
.top-buttons {
    display: flex;
    gap: 15px; /* Space between the two buttons */
}

/* Button Styling */
.btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    border: 1px solid white;
    transition: background 0.3s, color 0.3s;
    color: #fff;
    text-align: center;
    display: inline-block;
    min-width: 180px; /* Ensures button sizes match */
}

/* Hover Effect */
.btn:hover {
    background: rgba(255, 255, 255, 0.5);
    color: #ffff;
}

/* Special Styling for Reform Button */
.reform-btn {
    margin-top: 10px; /* Adds space between it and top buttons */
    font-weight: bold;
}
