/* 
 * ExamPro Main Stylesheet - Final Color Polish + Compact Mode
 */

:root {
    --primary-color: #138601;
    --header-gradient: linear-gradient(180deg, #0d5c01 0%, #138601 100%);
    --accent-gold: #FFD700;
    --white: #FFFFFF;
    --light-bg: #f8f9fa;
    --bottom-nav-bg: #0a3d01;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Common Classes */
.btn-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: none;
}

.btn-lg {
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

/* Header & Navbar */
.main-header {
    background: var(--header-gradient);
    color: var(--white);
    padding: 15px 0 25px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.main-header.compact {
    padding-bottom: 15px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.top-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* Mobile overrides for top-nav-grid are in responsive.css */

/* Base group styles (shared across breakpoints) */
.nav-links-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-pin-group form {
    display: flex;
}

.nav-btn-sm {
    padding: 6px 8px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(0,0,0,0.3);
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.nav-btn-sm:hover {
    filter: brightness(1.15);
}

.nav-btn-sm.blue { background: #004085; }
.nav-btn-sm.purple { background: #4b0082; }
.nav-btn-sm.maroon { background: #0b4b01; }
.nav-btn-sm.navy { background: #001f3f; }

.search-input-sm {
    width: 100%;
    padding: 6px;
    border: none;
    font-size: 0.8rem;
    outline: none;
    background: #fff;
    color: #333;
    border-radius: 4px 0 0 4px;
}

.submit-btn {
    border-radius: 0 4px 4px 0;
    border: none;
    padding: 6px 8px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.header-info-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.phone-link {
    font-weight: 700;
    font-size: 0.95rem;
}

.notice-scroller {
    text-align: center;
    margin: 15px 0;
    font-size: 0.85rem;
    background: rgba(0,0,0,0.1);
    padding: 8px 0;
}

.notice-scroller .notice-title {
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
    color: var(--accent-gold);
}

.auth-btns-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.auth-btn-pill {
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-login { background: #ff4500; color: #fff; }
.btn-subscribe { background: #ff8c00; color: #fff; }
.btn-join { background: #25d366; color: #fff; }

/* Home Content */
.home-main {
    padding: 20px 10px 100px;
}

.main-headline {
    text-align: center;
    color: red;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-headline {
    text-align: center;
    color: red;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
}

.card-notice {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card-header {
    background: #f8f9fa;
    padding: 12px 15px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #333;
}

.card-body {
    padding: 20px 15px;
}

.notice-item {
    color: red;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.price-tag {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.password-link {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
}

/* Bottom Navigation */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bottom-nav-bg);
    padding: 12px 5px;
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 2000;
}

.bottom-btn {
    padding: 8px 3px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    flex: 1;
}

.btn-chat { background: #3d007a; }
.btn-airtime { background: #000080; }
.btn-pasts { background: #0b4b01; }

.btn-verify {
    background: #3d007a;
    border: none;
    cursor: pointer;
    padding: 8px 5px;
    flex: none;
    min-width: 50px;
}

.bottom-verify-form {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 5px;
}

.bottom-input {
    width: 70px;
    padding: 8px;
    border-radius: 4px;
    border: none;
    font-size: 0.75rem;
    flex: 1;
    min-width: 60px;
}

/* Footer & Warnings */
.main-footer {
    padding: 40px 0 100px;
    text-align: center;
    border-top: 1px solid #eee;
    background: #fff;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #666;
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.8rem;
}

.scam-warning {
    font-size: 0.9rem;
    font-weight: 700;
}

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1500;
}

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

/* All responsive/media query rules are in responsive.css */
