body {
    margin: 0;
    font-family: 'Poppins', sans-serif;

    background-color: #f2ede8;
    color: #333;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(0, 0, 0, 0.12),
        transparent 60%
    );
    pointer-events: none;
    z-index: -1;
}

.header {
    background-image: url("https://png.pngtree.com/background/20250102/original/pngtree-advertising-restaurant-menu-with-fast-food-images-through-online-banners-social-picture-image_15837895.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    text-align: center;
    padding: 40px 20px;
}

.header h1 {
    margin-bottom: 10px;
}

.highlight {
    color: #1abc9c;
    font-weight: 700;
}


.container {
    max-width: 900px;
    margin: auto;
    padding: 30px 20px;
}


.post {
    background: linear-gradient(
        to bottom,
        #f9f3ec,
        #f1e4d6
    );

    padding: 32px;
    border-radius: 20px;

    margin-top: -30px;
    margin-bottom: 50px;

    border-left: 6px solid #1abc9c;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post:hover {
    transform: translateY(-4px);
    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.18);
}

.post h2 {
    color: #3e2c23;
    margin-top: 0;
}


.subtitle {
    font-style: italic;
    color: #6b4a3a;
    margin-bottom: 20px;
}


.post p {
    color: #3a3a3a;
}


.date {
    font-size: 0.9rem;
    color: #7d6a5c;
}


.post strong {
    color: #1abc9c;
}

.post em {
    color: #6b4a3a;
}

.comments {
    margin-top: 40px;
}


.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

@media (max-width: 600px) {
    .container {
        padding: 20px 12px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .post {
        padding: 24px;
        margin-top: -20px;
    }
}
