/* =================================
   GAYA INDUK UNTUK LAMAN UTAMA
   (Tema Sekolah)
   ================================= */

/* 1. Import Fon Sekolah */
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Patrick+Hand&display=swap');

:root {
    --color-biru: #e0f7fa;
    --color-hijau: #e8f5e9;
    --color-jingga: #fff3e0;
    --color-merah: #fce4ec;
    --color-krim: #fdfbea;
    --color-teks-tajuk: #005662;
}

body {
    font-family: 'Patrick Hand', sans-serif;
    background-color: #fdfaf4; /* Latar belakang kertas krim */
    color: #333;
    text-align: center;
    margin: 0;
    padding: 2rem;
    font-size: 1.3rem; /* SAIZ ASAS DIBESARKAN */
    line-height: 1.6;
}

h1 { 
    font-family: 'Gochi Hand', sans-serif;
    color: var(--color-teks-tajuk); 
    font-size: 3.2rem; /* SAIZ DIBESARKAN */
    margin-bottom: 0.5rem; 
    text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
}
h2 { 
    font-family: 'Gochi Hand', sans-serif;
    font-size: 1.7rem; /* SAIZ DIBESARKAN */
    font-weight: 400; 
    color: #555; 
    margin-bottom: 3rem; 
}

.bubble-map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.bubble-center {
    font-family: 'Patrick Hand', sans-serif;
    background-color: #00796b;
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 50px;
    font-size: 1.8rem; /* SAIZ DIBESARKAN */
    font-weight: 400;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.issue-bubbles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
}

/* Garisan buku tulis */
.bubble-issue {
    font-family: 'Patrick Hand', sans-serif;
    text-decoration: none;
    color: #333;
    background-color: white;
    padding: 2rem;
    border-radius: 20px;
    font-size: 1.4rem; /* SAIZ DIBESARKAN */
    font-weight: 400;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 5px solid;
    
    /* Garisan buku tulis */
    background-repeat: repeat;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 100% 1.8rem; /* Jarak garisan */
    line-height: 1.8rem;
}

.bubble-issue:hover {
    transform: translateY(-8px) rotate(2deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.b-biru { border-color: #00bcd4; background-color: var(--color-biru); }
.b-hijau { border-color: #4caf50; background-color: var(--color-hijau); }
.b-jingga { border-color: #ff9800; background-color: var(--color-jingga); }
.b-merah { border-color: #e91e63; background-color: var(--color-merah); }
.b-krim { border-color: #795548; background-color: var(--color-krim); }

.quiz-button {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 2.5rem;
    background-color: var(--color-teks-tajuk); 
    color: white;
    font-family: 'Gochi Hand', sans-serif;
    font-size: 1.8rem; /* SAIZ DIBESARKAN */
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.quiz-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    background-color: #004a54;
}

/* Footer "Meja Kayu" */
footer { 
    font-family: 'Patrick Hand', sans-serif;
    margin-top: 4rem;
    padding: 2rem;
    font-size: 1.1rem; /* SAIZ DIBESARKAN */
    
    background-color: #8B4513; /* Warna asas kayu */
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05)),
                      linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05));
    background-size: 30px 30px;
    
    color: #f0eada; /* Warna teks "kapur" atas kayu */
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    border-top: 5px solid #5D4037; /* Tepi meja (lebih gelap) */
}