﻿/* ========================================================================
   VoodooIT – Global Theme Variables
   ====================================================================== */
:root {
    /* Core palette */
    --vti-primary: #661c93; /* Neon Purple */
    --vti-secondary: #00E0FF; /* Electric Cyan */
    --vti-accent: #FF0077; /* Hot Pink */
    /* Gradient & surfaces */
    --vti-gradient: linear-gradient(135deg, var(--vti-primary) 0%, var(--vti-accent) 50%, var(--vti-secondary) 100%);
    --vti-bg-dark: #0f0f0f;
    --vti-bg-light: #ffffff;
    --vti-text-dark: #191919;
    --vti-text-light: #ffffff;
    /* Typography scale (keep or adjust to taste) */
    --font-sm: 0.925rem;
    --font-md: 1.05rem;
    --font-lg: 1.35rem;
}

/* ========================================================================
   Reset / Base
   ====================================================================== */
html {
    -webkit-font-smoothing: antialiased;
    font-weight: 500;
    background: var(--vti-bg-dark); /* gives subtle glow when body is transparent */
}

html, body {
    margin: 0;
    padding: 0;
    color: var(--vti-text-dark);
    font-size: var(--font-md);
}

p.lead {
    font-size: var(--font-lg);
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Fixed background canvas (e.g., particle.js or SVG circuitry) */
.background {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ========================================================================
   Loader
   ====================================================================== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-content: center;
    background: var(--vti-bg-light);
}

/* ========================================================================
   Buttons
   ====================================================================== */
.btn,
button,
input[type="submit"] {
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: all .25s ease;
}

.btn-primary {
    background: var(--vti-gradient);
    color: var(--vti-text-light);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(154,0,255,.55);
}

    .btn-primary:hover,
    .btn-primary:focus {
        filter: brightness(1.1);
        box-shadow: 0 0 12px rgba(0,224,255,.6);
    }

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--vti-secondary);
    color: var(--vti-secondary);
    padding: 0.75rem 2rem;
}

    .btn-outline-secondary:hover,
    .btn-outline-secondary:focus {
        background: var(--vti-secondary);
        color: var(--vti-text-dark);
    }

/* Space between adjacent buttons */
.btn + .btn {
    margin-left: 1rem;
}

a:focus, button:focus, .btn:focus {
    outline: 2px dashed var(--vti-secondary);
    outline-offset: 2px;
}


/* ========================================================================
   Type & Headings
   ====================================================================== */
h1, h2, h3, h4, h5, h6 {
    color: var(--vti-primary);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 .75em;
}

h4 {
    border-left: 4px solid var(--vti-accent);
    padding-left: .5rem;
}

/* ========================================================================
   Navigation (single block replaces header-style1 … header-style8 etc.)
   ====================================================================== */
.navbar {
    background: transparent;
    transition: background .3s ease;
}

    .navbar.scrolled {
        background: rgba(15,15,15,.85); /* dark glass when scrolled */
        backdrop-filter: blur(6px);
    }

/* ========= Navbar Height & Font Boost (VoodooIT) ========= */

/* Double the vertical padding ⇒ roughly doubles total height */
.navbar-nav > li > a {
    padding-top: 2rem; /* was 1rem  */
    padding-bottom: 2rem; /* was 1rem  */
    /* 25 % bigger font */
    font-size: 1.25rem; /* was ~1rem */
    /* Optional: widen horizontal spacing a touch so it still feels balanced */
    padding-left: 1.5rem; /* was 1.25rem */
    padding-right: 1.5rem; /* was 1.25rem */
}

/* If you use a brand logo image that now looks vertically cramped, 
   give it a little breathing room too */
.navbar-brand img {
    max-height: 72px; /* tweak as needed */
}

/* Mobile breakpoint tweak: scale back so the burger doesn’t push content */
@media (max-width: 991.98px) {
    .navbar-nav > li > a {
        font-size: 1.1rem;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }
}


/* ========================================================================
   Cards / Panels
   ====================================================================== */
.card {
    background: rgba(255,255,255,.9);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 0 12px rgba(0,224,255,.15);
    transition: transform .25s;
}

    .card:hover {
        transform: translateY(-4px);
    }

/* ========================================================================
   Footer
   ====================================================================== */
footer {
    background: var(--vti-bg-dark);
    color: #939393;
    padding: 3rem 0;
}

.footer-social-icons2 ul {
    display: flex;
    gap: .75rem;
    justify-content: center;
    margin: 0;
}

.footer-social-icons2 li {
    list-style: none;
    border: 1px solid #6f6f6f;
    border-radius: 50%;
    transition: all .3s;
}

    .footer-social-icons2 li a {
        display: block;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        color: #939393;
        font-size: 1rem;
    }

    .footer-social-icons2 li:hover {
        background: var(--vti-gradient);
        border-color: transparent;
    }

        .footer-social-icons2 li:hover a {
            color: #fff;
        }

.footer-bar {
    background: #111;
    text-align: center;
    padding: 1rem 0;
    font-size: var(--font-sm);
}

    .footer-bar span {
        color: var(--vti-accent);
    }

/* ========================================================================
   Utility Classes
   ====================================================================== */
.text-gradient {
    background: var(--vti-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: var(--vti-gradient);
    color: var(--vti-text-light);
}

.bg-primary {
    background: var(--vti-primary);
    color: var(--vti-text-light);
}

.bg-secondary {
    background: var(--vti-secondary);
    color: var(--vti-text-dark);
}

.shadow-glow {
    box-shadow: 0 0 12px rgba(255,0,119,.4);
}

/* ====== 50% transparency variant for gradient sections ====== */
.bg-gradient.soft {
    position: relative;
    background: var(--vti-gradient); /* keep your brand gradient */
    color: #111 !important; /* readable text */
}

    .bg-gradient.soft::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.50); /* <-- 50% white veil */
        pointer-events: none;
    }

    .bg-gradient.soft > * {
        position: relative;
        z-index: 1;
    }

    /* kill rainbow text on rainbow bg */
    .bg-gradient.soft .text-gradient {
        background: none !important;
        -webkit-text-fill-color: currentColor !important;
    }

/* ====== 50% transparency variant for primary buttons ====== */
.btn-primary.soft {
    /* overlay a 50% white layer on top of your brand gradient */
    background-image: linear-gradient(rgba(255,255,255,.50), rgba(255,255,255,.50)), var(--vti-gradient);
    color: #111; /* dark text for contrast */
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

    .btn-primary.soft:hover,
    .btn-primary.soft:focus {
        filter: brightness(1.02);
        box-shadow: 0 2px 8px rgba(0,0,0,.16);
    }

/* Compact hero for Quickstarts so content starts immediately */
.hero.hero--compact {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 1.25rem;
}

/* When jumping to #packs, account for tall navbar */
#packs {
    scroll-margin-top: 120px;
}
/* adjust if your navbar height changes */