/* =========================================================
   English Debate Team 2026/27 ECA Info Day Game
   style.css  —  plain and clear
   ========================================================= */

/* ---------- Base ---------- */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #111;
    background-color: #eaf4fb;
}

h1 {
    font-size: 1.6rem;
    margin: 0 0 16px;
}

h2 {
    font-size: 1.2rem;
    margin: 0 0 12px;
}

p {
    margin: 0 0 8px;
}

hr {
    border: none;
    border-top: 1px solid #7aa7c7;
    margin: 16px 0;
}

a {
    text-decoration: none;
    color: black;
}

/* ---------- Page container ---------- */

.container {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 24px;
    background-color: lightblue;
}

/* ---------- Score board ---------- */

.scores {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 40px;
    align-items: baseline;
}

.hp {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

/* feedback always sits on its own line */
.feedback {
    flex-basis: 100%;
    margin: 8px 0 0;
    font-size: 1.1rem;
    font-weight: normal;
}

/* ---------- Problem area ---------- */

.problem {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* question takes the whole top row */
.question {
    width: 100%;
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #7aa7c7;
    border-radius: 6px;
}

#statement {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
}

/* ---------- Buttons (shared look) ---------- */

button {
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 20px;
    color: #111;
    background-color: #ffffff;
    border: 1px solid #4a7fa5;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    background-color: #e6f3fb;
}

button:active {
    background-color: #cfe8f8;
}

button:disabled {
    opacity: 0.6;
    cursor: default;
}

/* ---------- Answer options ---------- */

/* the three options share the row evenly */
.option {
    flex: 1;
    min-width: 140px;
    padding: 14px 16px;
}

/* ---------- Next button ---------- */

.next-button {
    display: inline-block;
    margin-top: 20px;
}

/* .hide must come AFTER .next-button so it wins */
.hide {
    display: none;
}

/* ---------- Finish page (finish.html has no .container) ---------- */

body > h1,
body > h2 {
    text-align: center;
}

body > h1:first-of-type {
    margin-top: 18vh;
}