/* ======================================================
   PK'S STREET D-LITE
   BASE
====================================================== */

/* RESET */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--body-bg);
    color:var(--white);
    overflow-x:hidden;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

/* TYPOGRAPHY */

h1,h2,h3,h4,h5,h6{
    font-weight:700;
    line-height:1.2;
}

p{
    color:var(--text);
}

strong{
    color:var(--white);
}

/* LINKS */

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

/* LIST */

ul,
ol{
    list-style:none;
}

/* IMAGE */

img{
    display:block;
    width:100%;
    max-width:100%;
}

/* BUTTON */

button,
input,
textarea,
select{
    font:inherit;
}

button{
    border:none;
    cursor:pointer;
    transition:var(--transition);
}

/* CONTAINER */

.container{
    width:min(92%,var(--container));
    margin-inline:auto;
}

/* SECTION */

section{
    position:relative;
    padding:120px 0;
}

/* HEADINGS */

.section-subtitle{
    display:inline-block;
    color:var(--primary);
    font-size:.9rem;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.section-title{
    font-size:3rem;
    font-weight:800;
    line-height:1.15;
    margin-bottom:20px;
}

.section-text{
    max-width:720px;
    color:var(--text);
    line-height:1.9;
}

/* GLASS */

.glass{
    background:var(--surface);
    border:1px solid var(--border);
    backdrop-filter:var(--glass-blur);
    -webkit-backdrop-filter:var(--glass-blur);
    border-radius:22px;
    box-shadow:var(--shadow);
}

/* BUTTONS */

.btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:var(--radius-full);
    background:var(--gradient-primary);
    color:var(--white);
    font-weight:700;
    transition:var(--transition);
    box-shadow:0 15px 40px rgba(255,122,0,.30);
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 45px rgba(255,122,0,.40);
}

.btn-outline{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:16px 34px;
    border-radius:var(--radius-full);
    border:2px solid var(--primary);
    color:var(--white);
    background:transparent;
    transition:var(--transition);
}

.btn-outline:hover{
    background:var(--primary);
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#111;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:100px;
}

/* BACKGROUND GLOW */

body::before{
    content:"";
    position:fixed;
    top:-250px;
    left:-250px;
    width:650px;
    height:650px;
    background:
        radial-gradient(circle,
        rgba(255,122,0,.18),
        transparent 70%);
    filter:blur(40px);
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    right:-250px;
    bottom:-250px;
    width:650px;
    height:650px;
    background:
        radial-gradient(circle,
        rgba(255,122,0,.12),
        transparent 70%);
    filter:blur(50px);
    z-index:-2;
}