/*======================================================
    Ashabi-Edu Amusement Park & Resorts
    Reset & Base Styles
    Developed by DAA AI Ltd.
======================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body-font);
    background:var(--off-white);
    color:var(--text-dark);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button,
input,
select,
textarea{
    font-family:inherit;
    border:none;
    outline:none;
}

button{
    cursor:pointer;
}

section{
    padding:100px 0;
}

.container{
    width:90%;
    max-width:var(--container-width);
    margin:auto;
}

h1,
h2,
h3,
h4,
h5{
    font-family:var(--heading-font);
    font-weight:700;
    line-height:1.2;
}

p{
    font-size:var(--paragraph);
    color:var(--text-light);
}

::selection{
    background:var(--primary-color);
    color:var(--white);
}