/* ======================================================
   ReconMaps Founder Beta Website
   ====================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #121212;
    color: #F2F2F2;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
}

/* ===============================
   Main Layout
   =============================== */

header,
section,
footer {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 80px 40px;
}

/* ===============================
   Hero
   =============================== */

header {
    min-height: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

header h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 20px;
}

header h2 {
    font-size: 36px;
    color: #4CAF50;
    margin-bottom: 25px;
}

header p {
    font-size: 22px;
    color: #CCCCCC;
}

/* ===============================
   Section Titles
   =============================== */

section h2,
footer h2 {
    font-size: 40px;
    color: white;
    margin-bottom: 30px;

    border-left: 6px solid #4CAF50;
    padding-left: 18px;
}

/* ===============================
   Feature Cards
   =============================== */

article {

    background: #1E1E1E;

    border-radius: 12px;

    padding: 30px;

    margin-top: 30px;

    box-shadow: 0 0 20px rgba(0,0,0,.35);

    transition: .25s;
}

article:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 30px rgba(0,0,0,.45);
}

article h3 {

    color: #4CAF50;

    margin-bottom: 15px;

    font-size: 28px;
}

article p {
    color: #DDDDDD;
    margin-bottom: 20px;
}

/* ===============================
   Block Quote
   =============================== */

blockquote {

    border-left: 5px solid #4CAF50;

    margin: 35px 0;

    padding: 20px 30px;

    background: #1A1A1A;

    font-size: 22px;

    font-style: italic;
}

/* ===============================
   Horizontal Rule
   =============================== */

hr {

    border: none;

    height: 1px;

    background: #303030;

    max-width: 1100px;

    margin: auto;
}

/* ===============================
   Footer
   =============================== */

footer {

    text-align: center;

    padding-bottom: 120px;
}

footer p {

    margin-top: 20px;

    color: #BBBBBB;
}

/* ===============================
   Links
   =============================== */

a {

    color: #4CAF50;

    text-decoration: none;
}

a:hover {

    text-decoration: underline;
}

/* ===============================
   Feature Showcase
   =============================== */

.feature-layout {

    display: grid;

    grid-template-columns: 1fr 280px;

    gap: 40px;

    align-items: stretch;

    margin-top: 30px;
}

.feature-text {

    display: flex;

    flex-direction: column;

    height: 100%;
}

.feature-image-container {

    width: 280px;

    flex-shrink: 0;

    display: flex;

    justify-content: center;
}

.feature-details {

    margin-top: auto;
}

.feature-image {

    width: 100%;

    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.caption {

    color: #BBBBBB;
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
    margin-top: 15px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {

    header h1 {
        font-size: 52px;
    }

    header h2 {
        font-size: 28px;
    }

    section,
    footer,
    header {
        padding: 60px 25px;
    }

    section h2 {
        font-size: 32px;
    }

    article h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    .feature-layout {
        grid-template-columns: 1fr;
    }

    .feature-image-container {
        width: 100% !important;
        max-width: 100%;
        margin-top: 20px;
    }

    .feature-image {
        width: 100%;
        height: auto;
    }
}

.convoy-list {
    padding-left: 40px;
}

.convoy-list li {
    padding-left: 8px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.update-image {
    margin-left: auto;
}