/*
Theme Name: Lumopa
Theme URI: https://lumopa.com
Author: Lumopa
Author URI: https://lumopa.com
Description: Minimal standalone landing theme for the Lumopa early access page. Dark/light premium running-community design. Built to host a single front-page landing with a Formidable + MailerLite early-access form.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumopa
*/

/* ------------------------------------------------------------
   This file's header (above) is what WordPress reads to register
   the theme. The actual landing styles live in assets/landing.css
   and are enqueued via functions.php. Keeping styles in a separate
   enqueued file (rather than inline) is cleaner and cache-friendly.
   A few base resets below are harmless defaults.
   ------------------------------------------------------------ */

html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }

/* ==========================================================
   FOOTER V2
========================================================== */

footer {
    background: #0F172A;
    padding: 56px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.foot-logo svg {
    width: 180px;
    height: auto;
}

.foot-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.foot-social a {
    color: #F8FAFC;
    opacity: 0.75;
    transition: all 0.25s ease;
}

.foot-social a:hover {
    opacity: 1;
    color: #D85A30;
    transform: translateY(-2px);
}

.foot-social svg {
    display: block;
    width: 24px;
    height: 24px;
}

.foot-links {
    margin-bottom: 16px;
}

.foot-links a {
    color: rgba(248,250,252,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}

.foot-links a:hover {
    color: #D85A30;
}

.foot-tag {
    color: rgba(248,250,252,0.55);
    font-size: 14px;
    line-height: 1.5;
}

/* Mobile */

@media (max-width: 768px) {

    .foot-top {
        flex-direction: column;
        text-align: center;
    }

    .foot-social {
        justify-content: center;
    }

    .foot-links {
        text-align: center;
    }

    .foot-tag {
        text-align: center;
    }
}
