/* ------------------------------------------------------------------ */
/* File: styles.css */
/* Save this next to index.html and customize color/brand as needed */


:root {
    --brand-500: #3b82f6;
    /* biru */
    --accent-500: #10b981;
    /* hijau */
    --warm-100: #f8fafc;
    --muted: #6b7280;
    --radius: 0.75rem;
}


* {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

body {
    background: var(--warm-100);
    color: #111827
}

body {
    background-image: url("assets/latar.png"); /* ganti sesuai nama file Anda */
    background-repeat: repeat-y;   /* ulang ke arah vertikal (atas ke bawah) */
    background-position: center top; /* posisi di tengah atas */
    background-size: auto; /* biarkan ukuran asli horizontalnya */
    background-color: var(--warm-100); /* fallback warna */
}

.navbar-brand .logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-500), var(--accent-500));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600
}

.muted {
    color: var(--muted)
}


.feature-card {
    background: white;
    border-radius: var(--radius)
}

.teacher-card {
    background: white;
    border-radius: var(--radius)
}

.teacher-photo {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 50%;
}


.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem
}


.card {
    border: none
}


.btn-primary {
    background: var(--brand-500);
    border-color: var(--brand-500)
}

.btn-outline-primary {
    border-color: var(--brand-500);
    color: var(--brand-500)
}


/* responsive tweaks */
@media (max-width:767px) {
    .school-name {
        font-size: 1rem
    }

    .navbar-brand small {
        display: none
    }
}


/* small utilities */
.shadow-sm {
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06)
}

/* Styling untuk gambar logo baru */
.logo-img {
    width: 40px; /* Atur lebar logo */
    height: 54px; /* Atur tinggi logo */
    /* Tambahkan gaya lain yang mungkin dibutuhkan, seperti object-fit */
}

/* Jika Anda ingin area logo (div.logo) memiliki penyesuaian: */
.logo {
    display: flex;
    align-items: center; /* Memastikan logo berada di tengah secara vertikal */
}

.section-divider {
    border-top: 1px solid #e5e7eb; /* abu tipis */
    margin-top: 2rem;
    padding-top: 2rem;
}



/* end of styles.css */