/* =========================
PREMIUM TYPOGRAPHY SYSTEM
GLOBAL HEADING STYLE
========================= */

/* IMPORT FONTS */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* =========================
BODY
========================= */

body {
    font-family: 'Poppins', sans-serif;
    color: #E5E7EB;
    background: #050816;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================
ALL HEADINGS COMMON
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    position: relative;
}

/* =========================
H1
MAIN HERO TITLE
========================= */

h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 4px 25px rgba(37, 99, 235, 0.22);
}

/* =========================
H2
SECTION TITLE
========================= */

h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #F8FAFC;
}

/* OPTIONAL GLOW LINE */

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient( 90deg, #2563EB, #60A5FA);
    box-shadow: 0 0 12px rgba(96, 165, 250, 0.35);
}

/* =========================
H3
CARD / SUB SECTION
========================= */

h3 {
    font-size: 32px;
    font-weight: 700;
    color: #F1F5F9;
}

/* =========================
H4
SMALL HEADING
========================= */

h4 {
    font-size: 24px;
    font-weight: 600;
    color: #CBD5E1;
}

/* =========================
H5
========================= */

h5 {
    font-size: 20px;
    font-weight: 600;
    color: #CBD5E1;
}

/* =========================
H6
========================= */

h6 {
    font-size: 16px;
    font-weight: 600;
    color: #94A3B8;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================
PARAGRAPH
========================= */

p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;
    color: #CBD5E1;
    margin-bottom: 20px;
}

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

a {
    color: #E5E7EB;
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: #60A5FA;
}

/* =========================
STRONG TEXT
========================= */

strong {
    color: #ffffff;
    font-weight: 600;
}

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

ul,
ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
    color: #CBD5E1;
}

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

::selection {
    background: #2563EB;
    color: #ffffff;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px) {
    h1 {
        font-size: 54px;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 28px;
    }
}

/* =========================
MOBILE
========================= */

@media(max-width:768px) {
    h1 {
        font-size: 42px;
        line-height: 1.15;
    }
    h2 {
        font-size: 34px;
    }
    h3 {
        font-size: 26px;
    }
    h4 {
        font-size: 22px;
    }
    p {
        font-size: 16px;
        line-height: 1.8;
    }
}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:480px) {
    h1 {
        font-size: 34px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 20px;
    }
    p {
        font-size: 15px;
    }
}