/* =========================================
   GLOBAL RESET + BASE
========================================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
}

/* =========================================
   HAMBURGER MENU (LOCKED)
========================================= */
.nav-container {
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 2000;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {

    .nav-container {
        position: relative;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f172a;

        flex-direction: column;
        text-align: center;
        padding: 20px 0;

        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: all 0.25s ease;

        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        margin: 0;
    }
}

/* =========================================
   LAYOUT
========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

/* =========================================
   TYPOGRAPHY POLISH (ELITE)
========================================= */

/* Better hierarchy */
h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.section-title {
    font-size: 1.35rem;
    font-weight: 600;
}

/* Paragraph readability */
p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #333;
}

/* Improve hero text */
.section-sub {
    font-size: 1.15rem;
    color: #e2e8f0;
}

/* Button polish */
.btn {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* =========================================
   NAV LOGO (LOCKED)
========================================= */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    max-height: 44px;
    width: auto;
    display: block;
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    background: #0f172a;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 15px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
}

.nav-links a:hover {
    color: #fff;
}

/* =========================================
   HERO
========================================= */
.hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.8)),
               url('https://img1.wsimg.com/isteam/ip/3c8213ec-9476-44df-9cc0-361be7b01801/Atlanta%20skyline.jpg') center/cover;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
}

.section-sub {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 700px;
    margin: 10px auto 0;
}

/* =========================================
   SECTION SYSTEM (LOCKED)
========================================= */
.section {
    padding: 60px 0;
}

/* =========================================
   GRID SYSTEM
========================================= */
.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   CARDS
========================================= */
.card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* =========================================
   TITLES
========================================= */
.section-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-block;
    padding: 10px 16px;
    background: #1434A4;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn:hover {
    background: #0f2b85;
}

/* =========================================
   CTA
========================================= */
.cta {
    margin-top: 20px;
}

/* =========================================
   FORM SYSTEM (LOCKED)
========================================= */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

/* Honeypot */
.hp-field {
    display: none;
}

/* SUCCESS */
.alert-success {
    background: #e6f4ea;
    color: #1e7e34;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* =========================================
   LISTS
========================================= */
.board-list {
    list-style: none;
    padding: 0;
}

.board-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

/* =========================================
   WINNERS
========================================= */
.winners {
    columns: 2;
    column-gap: 30px;
}

.winners p {
    margin: 5px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .winners {
        columns: 1;
    }
}

/* =========================================
   IMAGES
========================================= */
.feature-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.logo-wrap {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    height: 100px;
    padding: 10px;
}

.logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}
/* =========================================
   FOOTER (LOCKED)
========================================= */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 40px 0 20px;
    margin-top: 60px;
}
.footer p {
    color: #e2e8f0; /* lighter, more readable */
}

.footer-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}
/* =========================================
   UTILITIES
========================================= */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}