/* ============================================================
   EAGLE FURNITURE NGARA
   GLOBAL TYPOGRAPHY
============================================================ */

html {
    font-size: 16px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #2b241f;
    background: #ffffff;
}


/* HEADINGS */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: #241d18;
    line-height: 1.25;
    margin-top: 0;
}


/* MAIN PAGE TITLE */

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}


/* SECTION TITLE */

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}


/* SUBSECTION */

h3 {
    font-size: 1.35rem;
}


/* SMALLER HEADINGS */

h4 {
    font-size: 1.15rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.95rem;
}


/* PARAGRAPHS */

p {
    font-size: 0.95rem;
    line-height: 1.7;
}


/* LINKS */

a {
    text-decoration: none;
}


/* BUTTONS */

button,
.btn {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}


/* FORM ELEMENTS */

input,
select,
textarea {
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
}


/* SMALL TEXT */

small {
    font-size: 0.8rem;
}


/* MOBILE */

@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.9rem;
    }

}