/*
Theme Name: KUA Karang Pawitan
Theme URI: https://kuakarangpawitan.id
Author: ChatGPT
Author URI: https://openai.com
Description: Tema WordPress sederhana, elegan, dan modern untuk KUA Karang Pawitan dengan animasi halus dan latar hijau.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kua-karangpawitan
Tags: one-column, two-columns, custom-background, custom-menu, accessibility-ready, responsive-layout, animation
*/
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #e6f0e6;
    color: #224422;
}
a {
    color: #2a6f2a;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #144214;
}
header {
    background: #2f7d32;
    padding: 20px;
    color: white;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease forwards;
}
nav {
    background: #276127;
    padding: 10px 0;
    text-align: center;
    animation: fadeInDown 1.2s ease forwards;
}
nav a {
    margin: 0 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #cde6cd;
}
nav a:hover {
    color: #a0d6a0;
}
.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 15px;
    background: white;
    box-shadow: 0 2px 8px rgba(34, 68, 34, 0.1);
    border-radius: 8px;
    animation: fadeInUp 1s ease forwards;
}
.section {
    margin-bottom: 40px;
}
.section h2 {
    border-bottom: 3px solid #2f7d32;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-weight: 700;
}
ul.service-hours, ul.bimwin-schedule {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
    color: #335533;
}
ul.service-hours li, ul.bimwin-schedule li {
    padding: 6px 0;
    border-bottom: 1px solid #d4e5d4;
}
.profile {
    font-size: 1.1rem;
    color: #224422;
}
footer {
    background: #1b4d1b;
    color: #b5d6b5;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
    animation: fadeInUp 1.5s ease forwards;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
