/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Kontainer */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: #4CAF50;
    color: white;
    padding: 10px 0;
}

header h1 {
    text-align: center;
}

/* Navigasi */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

/* Bagian Ibadah */
.worship-section {
    margin: 20px 0;
}

.worship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.worship-item {
    background: #f4f4f4;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.worship-item img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

/* Media Queries */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}
