/* ============================================
       LANDING PAGE SPECIFIC STYLES
       ============================================ */

/* Memorial Text */
.memorial-text {
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    padding: 40px 20px;
    margin-bottom: 20px;
}

/* Content Section */
.content {
    background: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #8b5e34;
}

.content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content p:last-child {
    margin-bottom: 0;
}

/* Enter Blog Button */
.enter-blog {
    text-align: center;
    padding: 40px 20px 60px;
}

.enter-blog a {
    display: inline-block;
    padding: 15px 40px;
    background-color: #8b5e34;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid #8b5e34;
}

.enter-blog a:hover {
    background-color: #6b4423;
    border-color: #6b4423;
}

/* ============================================
       MOBILE RESPONSIVE STYLES
       ============================================ */

@media (max-width: 768px) {
    /* Landing Page Specific */
    .memorial-text {
        font-size: 1rem;
        padding: 30px 15px;
    }

    .content {
        padding: 30px 20px;
    }

    .content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .content p {
        font-size: 1rem;
    }

    .enter-blog {
        padding: 30px 20px 40px;
    }

    .enter-blog a {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content h2 {
        font-size: 1.35rem;
    }

    .memorial-text {
        font-size: 0.95rem;
    }

    .enter-blog a {
        width: 100%;
        text-align: center;
    }
}