/* =========================
   GOOGLE FONTS
========================= */

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =========================
   VARIABLES GLOBALES
========================= */

:root {

    /* COLORS */

    --os-black: #000000;

    --os-white: #FFFFFF;

    --os-green: #9AC31C;

    --os-orange: #D47935;

    --os-gray: #3C3C3B;

    --os-light-gray: #8a8a8a;

    /* TYPOGRAPHY */

    --os-title-font: 'Black Ops One', cursive;

    --os-body-font: 'Inter', sans-serif;

    /* EFFECTS */

    --os-radius: 18px;

    --os-transition: .3s ease;

    --os-shadow:
        0 10px 35px rgba(0,0,0,.35);

    --os-shadow-green:
        0 0 25px rgba(154,195,28,.25);

}

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   HTML
========================= */

html {
    scroll-behavior: smooth;
}

/* =========================
   BODY
========================= */

body {

    background: var(--os-black);

    color: var(--os-white);

    font-family: var(--os-body-font);

    overflow-x: hidden;

    line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */

.os-container {

    width: min(1400px, 92%);

    margin: auto;
}

/* =========================
   TITLES
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--os-title-font);

    color: var(--os-white);

    line-height: 1.1;

    letter-spacing: 1px;
}

/* =========================
   PARAGRAPHS
========================= */

p {

    color: #d8d8d8;

    font-size: 16px;
}

/* =========================
   LINKS
========================= */

a {

    text-decoration: none;

    transition: var(--os-transition);
}

/* =========================
   IMAGES
========================= */

img {

    max-width: 100%;

    display: block;
}

/* =========================
   BUTTONS
========================= */

.os-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 56px;

    padding: 0 34px;

    background: var(--os-green);

    color: var(--os-white);

    border: 1.5px solid var(--os-orange);

    border-radius: 999px;

    font-family: var(--os-title-font);

    font-size: 15px;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition: var(--os-transition);

    box-shadow: var(--os-shadow);
}

/* =========================
   BUTTON HOVER
========================= */

.os-btn:hover {

    transform: translateY(-4px);

    background: #a8d41f;

    color: var(--os-orange);

    box-shadow:
        0 15px 40px rgba(154,195,28,.35);
}

/* =========================
   SECTION SPACING
========================= */

section {

    position: relative;

    padding: 100px 0;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar {

    width: 10px;
}

::-webkit-scrollbar-track {

    background: #111;
}

::-webkit-scrollbar-thumb {

    background: var(--os-green);

    border-radius: 999px;
}

/* =========================
   TEXT SELECTION
========================= */

::selection {

    background: var(--os-green);

    color: var(--os-black);
}