/*==================================================
  RESET.CSS
  Zen Spa Home
==================================================*/

/*==============================================
  BOX MODEL
==============================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/*==============================================
  HTML
==============================================*/

html{

    scroll-behavior:auto;

    -webkit-text-size-adjust:100%;

    text-size-adjust:100%;

}

/*==============================================
  BODY
==============================================*/

body{

    min-height:100vh;

    font-family:var(--font-family-base);

    font-size:var(--font-size-base);

    font-weight:var(--font-weight-regular);

    line-height:var(--line-height-body);

    color:var(--color-text);

    background:var(--color-background);

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    overflow-x:hidden;

}

/*==============================================
  MEDIA
==============================================*/

img,
picture,
video,
canvas,
svg{

    display:block;

    max-width:100%;

    height:auto;

}

/*==============================================
  VIDEO
==============================================*/

video{

    width:100%;

    object-fit:cover;

}

/*==============================================
  FORM ELEMENTS
==============================================*/

input,
button,
textarea,
select{

    font:inherit;

    color:inherit;

    background:none;

    border:none;

    outline:none;

}

/*==============================================
  BUTTON
==============================================*/

button{

    cursor:pointer;

    border:none;

    background:none;

}

/*==============================================
  LINKS
==============================================*/

a{

    color:inherit;

    text-decoration:none;

}

/*==============================================
  LISTS
==============================================*/

ul,
ol{

    list-style:none;

}

/*==============================================
  TABLE
==============================================*/

table{

    border-collapse:collapse;

    border-spacing:0;

}

/*==============================================
  HEADINGS
==============================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    font:inherit;

    font-weight:inherit;

}

/*==============================================
  PARAGRAPHS
==============================================*/

p{

    margin:0;

}

/*==============================================
  SVG
==============================================*/

svg{

    overflow:hidden;

}

/*==============================================
  SELECTION
==============================================*/

::selection{

    background:var(--color-primary);

    color:#ffffff;

}

/*==============================================
  SCROLLBAR
==============================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--color-background);

}

::-webkit-scrollbar-thumb{

    background:var(--color-primary);

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--color-primary-dark);

}

/*==============================================
  FOCUS
==============================================*/

:focus-visible{

    outline:2px solid var(--color-primary);

    outline-offset:4px;

}

/*==============================================
  DISABLED
==============================================*/

[disabled]{

    cursor:not-allowed;

    opacity:.6;

}