
/*=========================================================
    KKF TYPOGRAPHY SYSTEM v2.1
    Eye Soothing Font Scale for Kanpur Kitchen
=========================================================*/

/*=========================================================
    Base
=========================================================*/

html {
    font-size: 16px;
}

body {
    font-family: var(--kk-font);
    font-size: 16px;
    color: var(--kk-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/*=========================================================
    Headings
=========================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--kk-text);
    font-family: var(--kk-font-heading);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(38px, 4.5vw, 56px);
}

h2 {
    font-size: clamp(30px, 3.2vw, 40px);
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 19px;
}

h5 {
    font-size: 17px;
}

h6 {
    font-size: 15px;
}

/*=========================================================
    Paragraph
=========================================================*/

p {
    margin: 0;
    color: var(--kk-text-light);
    font-size: 16px;
    line-height: 1.75;
}

.kk-lead,
.lead {
    font-size: 18px;
    line-height: 1.75;
}

small,
.kk-small {
    font-size: 14px;
    line-height: 1.5;
}

/*=========================================================
    Links
=========================================================*/

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

a:hover {
    color: var(--kk-primary);
}

/*=========================================================
    Lists
=========================================================*/

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/*=========================================================
    Section Specific Typography
=========================================================*/

.kk-hero h1,
.kk-home-hero h1,
.kk-page-hero h1,
.kk-contact-hero h1,
.kk-menu-hero h1 {
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1.12;
}

.kk-hero p,
.kk-home-hero p,
.kk-page-hero p,
.kk-contact-hero p,
.kk-menu-hero p {
    font-size: 18px;
    line-height: 1.75;
}

.kk-section-header h2,
.kk-section-title {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.22;
}

.kk-section-header p,
.kk-section-description {
    font-size: 17px;
    line-height: 1.75;
}

.kk-category-header h2,
.kk-category-title h2 {
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.22;
}

.kk-category-header p,
.kk-category-title p {
    font-size: 16px;
    line-height: 1.7;
}

/*=========================================================
    Menu Card Typography
=========================================================*/

.kk-menu-body h3,
.kk-menu-card h3 {
    font-size: 21px;
    line-height: 1.3;
}

.kk-menu-body p,
.kk-menu-card p {
    font-size: 14.5px;
    line-height: 1.6;
}

.kk-price,
.kk-food-price,
.kk-menu-card-footer strong,
.kk-card-price strong {
    font-size: 27px;
    line-height: 1.1;
}

.kk-price span,
.kk-food-price small,
.kk-menu-card-footer small,
.kk-card-price small {
    font-size: 14px;
}

.kk-food-meta,
.kk-meta,
.kk-food-meta span,
.kk-menu-card-footer span {
    font-size: 13px;
    line-height: 1.35;
}

/*=========================================================
    Badges / Tags / Pills
=========================================================*/

.kk-badge,
.kk-menu-tag,
.kk-card-badge,
.kk-food-type,
.kk-featured-pill,
.kk-category-badge {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

/*=========================================================
    Buttons / Forms
=========================================================*/

.kk-btn,
.kk-whatsapp-btn,
button,
input,
select,
textarea {
    font-size: 14px;
}

/*=========================================================
    Header
=========================================================*/

.kk-brand strong,
.kk-brand b {
    font-size: 18px;
    line-height: 1.15;
}

.kk-brand small {
    font-size: 11px;
}

/*=========================================================
    Footer
=========================================================*/

.kk-footer h3 {
    font-size: 24px;
}

.kk-footer h4 {
    font-size: 17px;
}

.kk-footer p,
.kk-footer a {
    font-size: 14.5px;
    line-height: 1.65;
}

/*=========================================================
    Utilities
=========================================================*/

.kk-text-center {
    text-align: center;
}

.kk-text-left {
    text-align: left;
}

.kk-text-right {
    text-align: right;
}

.kk-text-primary {
    color: var(--kk-primary);
}

.kk-text-secondary {
    color: var(--kk-secondary);
}

.kk-text-light {
    color: var(--kk-text-light);
}

.kk-text-white {
    color: var(--kk-text-white);
}

.kk-fw-400 {
    font-weight: 400;
}

.kk-fw-500 {
    font-weight: 500;
}

.kk-fw-600 {
    font-weight: 600;
}

.kk-fw-700 {
    font-weight: 700;
}

.kk-uppercase {
    text-transform: uppercase;
}

.kk-capitalize {
    text-transform: capitalize;
}

/*=========================================================
    Tablet Typography
=========================================================*/

@media (max-width: 991px) {
    body {
        font-size: 15.5px;
    }

    h1 {
        font-size: clamp(34px, 5vw, 46px);
    }

    h2 {
        font-size: clamp(26px, 4vw, 34px);
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 15.5px;
    }

    .kk-hero h1,
    .kk-home-hero h1,
    .kk-page-hero h1,
    .kk-contact-hero h1,
    .kk-menu-hero h1 {
        font-size: clamp(34px, 5vw, 46px);
    }

    .kk-hero p,
    .kk-home-hero p,
    .kk-page-hero p,
    .kk-contact-hero p,
    .kk-menu-hero p {
        font-size: 16.5px;
    }

    .kk-section-header h2,
    .kk-section-title {
        font-size: clamp(26px, 4vw, 34px);
    }

    .kk-menu-body h3,
    .kk-menu-card h3 {
        font-size: 20px;
    }

    .kk-price,
    .kk-food-price,
    .kk-menu-card-footer strong,
    .kk-card-price strong {
        font-size: 25px;
    }
}

/*=========================================================
    Mobile Typography
=========================================================*/

@media (max-width: 767px) {
    body {
        font-size: 15px;
        line-height: 1.65;
    }

    h1 {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.15;
    }

    h2 {
        font-size: clamp(24px, 6vw, 30px);
        line-height: 1.22;
    }

    h3 {
        font-size: 19px;
    }

    h4 {
        font-size: 17px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }

    p {
        font-size: 15px;
        line-height: 1.65;
    }

    .kk-lead,
    .lead {
        font-size: 15.5px;
    }

    .kk-hero h1,
    .kk-home-hero h1,
    .kk-page-hero h1,
    .kk-contact-hero h1,
    .kk-menu-hero h1 {
        font-size: clamp(30px, 8vw, 38px);
        line-height: 1.15;
    }

    .kk-hero p,
    .kk-home-hero p,
    .kk-page-hero p,
    .kk-contact-hero p,
    .kk-menu-hero p {
        font-size: 15.5px;
        line-height: 1.65;
    }

    .kk-section-header h2,
    .kk-section-title {
        font-size: clamp(24px, 6vw, 30px);
    }

    .kk-section-header p,
    .kk-section-description {
        font-size: 15px;
    }

    .kk-category-header h2,
    .kk-category-title h2 {
        font-size: 26px;
    }

    .kk-category-header p,
    .kk-category-title p {
        font-size: 15px;
    }

    .kk-menu-body h3,
    .kk-menu-card h3 {
        font-size: 20px;
    }

    .kk-menu-body p,
    .kk-menu-card p {
        font-size: 14px;
    }

    .kk-price,
    .kk-food-price,
    .kk-menu-card-footer strong,
    .kk-card-price strong {
        font-size: 25px;
    }

    .kk-btn,
    .kk-whatsapp-btn,
    button,
    input,
    select,
    textarea {
        font-size: 14px;
    }
}

/*=========================================================
    Small Mobile Typography
=========================================================*/

@media (max-width: 480px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 14.5px;
    }

    .kk-hero h1,
    .kk-home-hero h1,
    .kk-page-hero h1,
    .kk-contact-hero h1,
    .kk-menu-hero h1 {
        font-size: 30px;
    }

    .kk-section-header h2,
    .kk-section-title {
        font-size: 24px;
    }

    .kk-menu-body h3,
    .kk-menu-card h3 {
        font-size: 19px;
    }

    .kk-price,
    .kk-food-price,
    .kk-menu-card-footer strong,
    .kk-card-price strong {
        font-size: 24px;
    }

    .kk-badge,
    .kk-menu-tag,
    .kk-card-badge,
    .kk-food-type,
    .kk-featured-pill,
    .kk-category-badge {
        font-size: 11.5px;
    }
}
