/*
Theme Name: Outreach Automation
Author: Kousik Manna
Description: A custom WordPress theme for outreach automation.
Version: 1.0.0
*/

/* =================================== */
/* =================================== */

/* Only what Bootstrap can't do: fonts, gradients, glow, grid texture */
body {
    font-family: 'Inter', sans-serif;
}

h1,
h2,
.ff-display {
    font-family: 'Manrope', sans-serif;
}

.panel-dark {
    background: radial-gradient(120% 100% at 0% 0%, #14204A 0%, #0A1130 55%, #060A20 100%);
    position: relative;
    overflow: hidden;
}

.panel-dark .grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 30%, #000 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 70% at 30% 30%, #000 30%, transparent 80%);
}

.glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #2F6FED;
    filter: blur(120px);
    opacity: .35;
    bottom: -160px;
    left: -120px;
}

.text-gradient {
    background: linear-gradient(95deg, #5B8DFF, #2FE4D0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.icon-chip {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
}

.btn-gradient {
    background: linear-gradient(95deg, #2F6FED, #12B8C7);
    color: #fff;
    border: none;
    box-shadow: 0 12px 28px -10px rgba(47, 111, 237, .5);
}

.btn-gradient:hover {
    color: #fff;
    filter: brightness(1.06);
}

textarea.form-control {
    resize: none;
}

.form-control:focus {
    border-color: #2F6FED;
    box-shadow: 0 0 0 .2rem rgba(47, 111, 237, .15);
}

@media (min-width:992px) {
    .split-min-vh {
        min-height: 100vh;
    }
}