@font-face {
    font-family: "Monteilga";
    src: url("../fonts/Monteilga.otf") format("opentype");
    font-weight: 300 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Nyght Serif";
    src: url("../fonts/NyghtSerif-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Oooh Baby";
    src: url("../fonts/OoohBaby-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #BE8F3E;
    --black: #000000;
    --bg: #F8F8F8;
    --white: #FFFFFF;
    --line: rgba(0, 0, 0, 0.12);
    --heading-font: "Monteilga", Georgia, serif;
    --sub-heading-size: 18px;
    --sub-heading-line-height: 28px;
    --body-font: "Noto Sans Gujarati UI", "Noto Sans Gujarati", Arial, sans-serif;
    --button-font: "Inter", Arial, sans-serif;
}

@media (max-width: 767px) {
    :root {
        --body-size: 14px;
        --body-line-height: 24px;
        --main-heading-size: 18px;
        --main-heading-line-height: 28px;
        --main-heading-margin-bottom: 10px;
        --section-space: 15px;
        --content-gap: 15px;
        --text-gap: 12px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    :root {
        --body-size: 14px;
        --body-line-height: 24px;
        --main-heading-size: 26px;
        --main-heading-line-height: 36px;
        --main-heading-margin-bottom: 15px;
        --section-space: 30px;
        --content-gap: 32px;
        --text-gap: 14px;
    }
}

@media (min-width: 1200px) {
    :root {
        --body-size: 16px;
        --body-line-height: 26px;
        --main-heading-size: 36px;
        --main-heading-line-height: 46px;
        --main-heading-margin-bottom: 20px;
        --section-space: 60px;
        --content-gap: 30px;
        --text-gap: 20px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
    overscroll-behavior-y: none;
    overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--black);
    font-family: var(--body-font);
    font-size: var(--body-size);
    line-height: var(--body-line-height);
    overflow-x: hidden;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pinch-zoom;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 72px;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: var(--heading-font);
    color: #000;
    font-size: var(--main-heading-size);
    font-weight: 400;
    line-height: var(--main-heading-line-height);
    letter-spacing: 0;
    margin-bottom: var(--main-heading-margin-bottom);
}

h3 {
    font-family: var(--body-font);
    color: #000;
    font-size: var(--body-size);
    font-weight: 400;
    line-height: var(--body-line-height);
    letter-spacing: 0;
}

p {
    margin-bottom: var(--text-gap);
}

.container {
    width: 90%;
    margin: 0 auto;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 999;
    width: auto;
    height: auto;
    padding: 12px 16px;
    clip: auto;
    background: var(--black);
    color: var(--white);
}

.page-section {
    min-height: 72vh;
    display: grid;
    align-items: center;
    padding: calc(var(--section-space) + 110px) 0 var(--section-space);
}

.narrow {
    max-width: 820px;
}
