/*
Theme Name: QuadProp FPV
Theme URI: https://quadpropfpv.com
Author: QuadProp FPV
Description: Custom WooCommerce theme for QuadProp FPV.
Version: 1.0
Text Domain: quadpropfpv
*/


:root {
    --bg: #080a0b;
    --bg-soft: #101315;
    --card: rgba(18, 22, 23, 0.88);
    --lime: #b6ff00;
    --white: #ffffff;
    --grey: #a8afb2;
    --border: rgba(255,255,255,0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* HEADER */

.site-header {
    width: 100%;
    height: 82px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(8, 10, 11, 0.82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.brand {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand span {
    color: var(--lime);
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #d7dbdc;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    transition: 0.2s;
}

.main-nav a:hover {
    color: var(--lime);
}


/* HERO */

.hero {
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 130px 25px 80px;

    background:
        radial-gradient(
            circle at center,
            rgba(182,255,0,0.08) 0%,
            rgba(0,0,0,0) 38%
        ),
        linear-gradient(
            180deg,
            #111516 0%,
            #080a0b 100%
        );
}

.hero-content {
    max-width: 900px;
}

.hero-logo {
    font-size: clamp(38px, 7vw, 82px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 25px;
}

.hero-logo span {
    color: var(--lime);
}

.hero h1 {
    margin: 0 0 20px;

    font-size: clamp(22px, 3vw, 38px);
    letter-spacing: 8px;
    font-weight: 700;
}

.hero p {
    max-width: 620px;
    margin: 0 auto 38px;

    color: var(--grey);
    font-size: 18px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 15px 28px;

    border-radius: 12px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;

    transition: transform 0.2s, background 0.2s;
}

.button:hover {
    transform: translateY(-3px);
}

.button.primary {
    background: var(--lime);
    color: #050505;
}

.button.secondary {
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.04);
}


/* CONTENT BLOCKS */

.content-section {
    width: calc(100% - 40px);
    max-width: 1200px;

    margin: 35px auto;
    padding: 90px 8%;

    background: var(--card);

    border: 1px solid var(--border);
    border-radius: 28px;
}

.eyebrow {
    margin: 0 0 12px;

    color: var(--lime);

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.content-section h2 {
    margin: 0 0 18px;

    font-size: clamp(34px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.section-text {
    max-width: 650px;

    color: var(--grey);
    font-size: 18px;
}


/* FOOTER */

.site-footer {
    max-width: 1200px;
    margin: 70px auto 0;
    padding: 35px 20px;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid var(--border);

    color: #737b7e;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* MOBILE */

@media (max-width: 700px) {

    .site-header {
        height: 70px;
        padding: 0 20px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }

    .brand {
        font-size: 15px;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-logo {
        letter-spacing: -1px;
    }

    .hero h1 {
        letter-spacing: 4px;
    }

    .content-section {
        width: calc(100% - 24px);
        padding: 60px 28px;
        border-radius: 22px;
    }

    .site-footer {
        margin: 50px 12px 0;
        flex-direction: column;
        gap: 8px;
    }
}