/* STYLE.CSS - Surau As-Sobirin Residensi Junjong */

/* Global Reset & Font */
body { 
    font-family: 'Inter', sans-serif; 
    margin: 0;
    padding: 0;
    color: #1f2937;
}

/* Latar Belakang (Islamic Pattern halus) */
.bg-islamic {
    background-color: #f8fafc;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath fill='%2315803d' fill-opacity='0.05' d='M0 0h80v80H0z'/%3E%3Cpath fill='%2315803d' fill-opacity='0.08' d='M40 0l40 40-40 40L0 40z'/%3E%3C/svg%3E");
}

/* Kad Utama */
.card-surau {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #f1f5f9;
}

/* Header Section */
.bg-header {
    background: linear-gradient(135deg, #08781d 0%, #069c99 100%);
    padding: 2.5rem 1rem;
    text-align: center;
}

/* LOGO - Menggunakan URL penuh yang anda berikan */
.logo-container {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem auto;
    background-image: url('https://surau.residensijunjong.org/logo_surau.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Butang Utama */
.btn-primary {
    background-color: #16a34a; /* Green-600 */
    color: white !important;
    padding: 1.1rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.3);
    border: none;
    width: 100%;
}

.btn-primary:hover {
    background-color: #15803d; /* Green-700 */
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(22, 163, 74, 0.4);
}

/* Responsif */
@media (max-width: 640px) {
    .logo-container { width: 150px; height: 150px; }
    .card-surau { border-radius: 1.25rem; }
}