/* =========================================
   1. RESET & GLOBAL STYLES (โครงสร้างหลัก)
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: auto; */
}

body {
    font-family: 'Pathway Extreme', sans-serif;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================================
   ACADEMIC BANNER SECTION (.aca)
   ========================================= */
.aca {
    height: max-content;                
    background-image: url("a.jpg"); 
    background-size: cover;        
    background-position: center;   
    background-repeat: no-repeat;

    display: flex;
    justify-content: flex-start;       
    align-items: center;           
    flex-direction: column;
    position: relative;
    padding: 100px;
}

/* เลเยอร์สีดำจางๆ ทับรูป (Overlay) */
.aca::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);   
}

/* ข้อความบนแบนเนอร์ */
.aca h1 {
    margin-top: 100px;
    position: relative;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    z-index: 1;
    /* เพิ่มเงาเล็กน้อยให้อ่านง่ายขึ้น */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    /* เส้นขอบตัวหนังสือ (บางเบราว์เซอร์อาจไม่รองรับสมบูรณ์ แต่ใส่ไว้ได้ครับ) */
    -webkit-text-stroke: 1px #213443;  
}

.option {
    justify-content: center;
    margin-top: 100px;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
}
.option a {
    text-align: center;
    height: max-content;
    background-color: #213443;
    border-radius: 8px;
    margin: 30px 30px;
    text-decoration: none;
    padding: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* =========================================
   RESPONSIVE สำหรับส่วน .aca
   ========================================= */
@media (max-width: 768px) {

    .aca h1 {
        font-size: 32px; /* ลดขนาดตัวหนังสือในมือถือ */
    }
    .option a {
        font-size: 16px; /* ลดขนาดตัวหนังสือในมือถือ */
    }
}