/*
Theme Name: Simple Modern Card
Theme URI: https://www.jasawebdesa.biz.id
Author: JasaWebDesa
Author URI: https://www.jasawebdesa.biz.id
Description: Tema minimalis dengan desain kartu modern (rounded & shadow).
Version: 1.0
*/

/* Reset Dasar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: #f4f7f6; /* Warna latar belakang lembut */
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Agar selalu full screen vertikal */
    padding: 20px;
}

/* Container Modern */
.modern-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 800px; /* Lebar maksimal kartu */
    padding: 40px;
    border-radius: 15px; /* Radius 15px sesuai request */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* Shadow halus modern */
    margin-bottom: 30px;
    position: relative;
}

/* Typography di dalam Container */
.modern-container h1, 
.modern-container h2, 
.modern-container h3 {
    color: #111;
    margin-bottom: 20px;
    font-weight: 700;
}

.modern-container p {
    margin-bottom: 15px;
}

.modern-container a {
    color: #0d6efd;
    text-decoration: none;
}

.modern-container a:hover {
    text-decoration: underline;
}

/* Styling Footer */
.site-footer {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: auto; /* Mendorong footer ke bawah jika konten sedikit */
    padding-bottom: 20px;
}

.site-footer a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #0d6efd;
}

/* Responsif untuk HP */
@media (max-width: 600px) {
    .modern-container {
        padding: 25px;
        border-radius: 12px;
    }
}