/*
Theme Name: ACEM Quiz
Theme URI:
Author: Interactive ACEM MCQ
Description: Minimal blank-slate theme for WatuPRO quiz pages.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: acem-quiz
*/

/* =============================================
   RESET / BASE
   ============================================= */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #f4f5f7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p { margin: 0 0 1rem; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 0.75rem; font-weight: 600; line-height: 1.3; }
ul, ol { margin: 0 0 1rem; padding-left: 1.5rem; }

/* =============================================
   SITE LAYOUT
   ============================================= */

#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =============================================
   HEADER
   ============================================= */

#masthead {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0 2rem;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a4f6e;
    margin: 0;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

.site-description {
    font-size: 0.8125rem;
    color: #6c757d;
    margin: 0;
}

/* Primary navigation */
#site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

#site-navigation ul li a {
    font-size: 0.9375rem;
    color: #333;
    text-decoration: none;
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s, color 0.15s;
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item > a {
    color: #0d6efd;
    border-bottom-color: #0d6efd;
}

/* =============================================
   MAIN CONTENT
   ============================================= */

#content {
    flex: 1;
    padding: 2rem 2rem;
}

.site-content-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Page title */
.entry-header .entry-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a4f6e;
    margin-bottom: 1.25rem;
}

.entry-content {
    /* no extra styling — let WatuPRO control its own layout */
}

/* =============================================
   FOOTER
   ============================================= */

#colophon {
    background: #fff;
    border-top: 1px solid #dee2e6;
    padding: 1rem 2rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #6c757d;
}

/* =============================================
   WORDPRESS CORE — admin bar offset
   ============================================= */

.admin-bar #masthead {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar #masthead {
        top: 46px;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    #masthead {
        padding: 0 1rem;
    }

    #content {
        padding: 1rem;
    }

    .site-header-inner {
        flex-wrap: wrap;
        height: auto;
        padding: 0.75rem 0;
        gap: 0.5rem;
    }

    #site-navigation ul {
        gap: 1rem;
        flex-wrap: wrap;
    }
}
