/* ===== GENERAL ===== */
body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    background: #f9fbe7;
    color: #2e2e2e;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

a {
    color: #6b4f1d;
    text-decoration: none;
}
a:hover {
    color: #4e360f;
    text-decoration: underline;
}

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(90deg, #fff8dc, #f1f8e9);
    border-bottom: 2px solid #ffc107;
    padding: 0.7rem 1rem;
}

.navbar-brand img {
    height: 70px;
}

.navbar-nav .nav-link {
    color: #2e2e2e !important;
    font-weight: 500;
}
.navbar-nav .nav-link:hover {
    color: #6b4f1d !important;
}

/* ===== FOOTER ===== */
footer {
    background: #f1f8e9;
    border-top: 2px solid #ffc107;
    padding: 1rem 0;
    font-size: 0.95rem;
    text-align: center;
    color: #555;
}
footer a {
    color: #6b4f1d;
    text-decoration: none;
}
footer a:hover {
    color: #4e360f;
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #2e2e2e;
}
.btn-primary:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #000;
}
.btn-outline-light {
    border-color: #ffc107;
    color: #ffc107;
}
.btn-outline-light:hover {
    background-color: #ffc107;
    color: #fff;
}

/* ===== CONTAINERS / BOXES ===== */
.card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ===== HEADINGS ===== */
h1, h2, h3, h4 {
    color: #6b4f1d;
}

/* === Hive Cards === */
.challenge-slider {
    background-color: #fffde7;
    border-top: 2px solid #ffc107;
    border-bottom: 2px solid #ffc107;
}

.challenge-card {
    background-color: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    min-height: 160px;
    color: #2e2e2e;
}
.challenge-card:hover {
    background-color: #fff8dc;
}
