/* ==========================================================
   NemuTrip Base Styles
   Version : 2.0 Production (LOCKED)
   ========================================================== */

/* ==========================================================
   RESET
   ========================================================== */

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

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

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

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

body{
    font-family:var(--font-body);
    background:var(--white);
    color:var(--dark);
    font-size:16px;
    line-height:1.7;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

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

img{
    display:block;
    max-width:100%;
    height:auto;
}

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

a{
    color:inherit;
    text-decoration:none;
    transition:var(--transition);
}

/* ==========================================================
   LIST
   ========================================================== */

ul,
ol{
    list-style:none;
}

/* ==========================================================
   TYPOGRAPHY
   ========================================================== */

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:var(--font-heading);
    font-weight:700;
    line-height:1.3;
    margin-bottom:15px;
    overflow-wrap:break-word;
}

p{
    margin-bottom:1rem;
}

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

button,
input,
textarea,
select{
    font:inherit;
}

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

:focus-visible{
    outline:2px solid var(--primary);
    outline-offset:2px;
}

/* ==========================================================
   SECTION
   ========================================================== */

section{
    padding:var(--section-padding) 0;
}