@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* =====================================================
   Root Variables
===================================================== */
:root {
    --bg-first: #ff3300;
    --bg-second: #000000;
    --bg-third: #ff33000f;
    --bg-four: #ffe6df;
    --bg-five: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #fff8f6;
    --bg-soft: #fff3ef;
    --text-black: #000000;
    --text-dark: #222222;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #888888;
    --border-light: #eeeeee;
    --border-soft: #eadbd6;
    --primary-font: "Poppins", sans-serif;
    --secondary-font: "Heebo", sans-serif;
    --third-font: "Bebas Neue", sans-serif;
    --font-sm: 15px;
    --font-base: 15px;
    --font-md: 17px;
    --font-lg: 18px;
    --font-xl: 20px;
    --font-2xl: 24px;
    --font-section-title: clamp(36px, 3.5vw, 48px);
    --font-hero-title: clamp(52px, 5vw, 72px);
    --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    --box-shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --transition: 0.25s ease;
}

/* =====================================================
   Reset
===================================================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--primary-font);
    font-size: var(--font-base);
    font-weight: 400;
    line-height: 1.75;
    background: var(--bg-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* =====================================================
   Typography
===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--text-dark);
    font-weight: 600;
}

p {
    margin-top: 0;
    color: var(--text-secondary);
    font-size: var(--font-base);
    line-height: 1.8;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
}

strong {
    font-weight: 600;
}

/* =====================================================
   Images
===================================================== */
img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   Forms
===================================================== */
button,
input,
textarea,
select {
    font-family: var(--primary-font);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* =====================================================
   Selection
===================================================== */
::selection {
    background: var(--bg-first);
    color: #ffffff;
}

/* =====================================================
   Scroll Offset
===================================================== */
section[id] {
    scroll-margin-top: 90px;
}

/* =====================================================
   Background Lines
===================================================== */
.lines-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.bg-line-element {
    width: 1px;
    height: 100vh;
    background: rgba(255, 51, 0, 0.025);
}

/* =====================================================
   Responsive
===================================================== */
@media (max-width: 767.98px) {
    :root {
        --font-section-title: clamp(32px, 9vw, 42px);
        --font-hero-title: clamp(42px, 12vw, 54px);
    }
    body {
        font-size: 15px;
    }
    p {
        font-size: 15px;
        line-height: 1.75;
    }
}