/*==================================================
RICL WORLD
Base Stylesheet
Version 1.0
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
ROOT VARIABLES
==========================*/

:root{

--primary:#ff7a00;
--primary-light:#ff9d2e;

--bg:#050505;

--surface:rgba(255,255,255,.08);

--border:rgba(255,255,255,.12);

--text:#ffffff;

--muted:#bdbdbd;

--radius:22px;

--shadow:
0 20px 60px rgba(0,0,0,.35);

}

/*==========================
RESET
==========================*/

*{

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:var(--bg);

color:var(--text);

overflow-x:hidden;

line-height:1.6;

}

/*==========================
BACKGROUND GLOW
==========================*/

body::before,
body::after{

content:"";

position:fixed;

border-radius:50%;

filter:blur(120px);

pointer-events:none;

z-index:-1;

}

body::before{

width:600px;

height:600px;

top:-250px;

left:-250px;

background:#ff7a00;

opacity:.15;

}

body::after{

width:700px;

height:700px;

bottom:-300px;

right:-300px;

background:#ff9d2e;

opacity:.10;

}

/*==========================
GLOBAL CONTAINER
==========================*/

.container{

width:min(1200px,92%);

margin:auto;

}

/*==========================
TYPOGRAPHY
==========================*/

h1,h2,h3,h4,h5,h6{

font-weight:700;

line-height:1.2;

}

p{

color:var(--muted);

line-height:1.8;

}

a{

text-decoration:none;

color:inherit;

}

img{

max-width:100%;

display:block;

}

.text-primary{

color:var(--primary);

}

/*==========================
BUTTONS
==========================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:14px 30px;

border-radius:14px;

font-weight:600;

transition:.3s ease;

cursor:pointer;

}

.btn-primary{

background:

linear-gradient(
135deg,
var(--primary),
var(--primary-light)
);

color:#fff;

box-shadow:

0 0 25px rgba(255,122,0,.35);

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-outline{

border:1px solid rgba(255,255,255,.18);

}

.btn-outline:hover{

background:rgba(255,255,255,.06);

}

/*==========================
GLASS PANEL
==========================*/

.glass{

background:var(--surface);

backdrop-filter:blur(24px);

border:1px solid var(--border);

border-radius:var(--radius);

box-shadow:var(--shadow);

}

/*==========================
UTILITIES
==========================*/

.section{

padding:120px 0;

position:relative;

}

.text-center{

text-align:center;

}

.hidden{

display:none;

}

/*==========================
GLOBAL ANIMATIONS
==========================*/

@keyframes floating{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0);
}

}