/* ========================================= */
/* GLOBAL AUTHORITY TYPOGRAPHY SYSTEM */
/* AmanBhachu.com */
/* ========================================= */

/* GLOBAL BASE */

body {

font-family: 'Source Sans Pro', sans-serif;
margin: 0;
background: #F7F8F7;
color: #1A1A1A;
font-size: 18px;
line-height: 1.75;

}


/* CONTAINER SYSTEM */

.container {

width: 1100px;
max-width: 90%;
margin: 0 auto;

}

.container-narrow {

max-width: 760px;
margin: 0 auto;
padding: 0 20px;

}


/* HEADER */

.header {

background: #FFFFFF;
border-bottom: 1px solid #E6E6E6;
position: sticky;
top: 0;
z-index: 1000;

}

.header-inner {

display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 0;

}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
}


/* NAVIGATION */

.nav a {

margin-left: 28px;
text-decoration: none;
color: #1A1A1A;
font-size: 15px;

}

.nav a:hover {

color: #2F5D50;

}


/* HERO SECTION */

.hero {

padding: 70px 0 40px 0;

}

.hero-text {

max-width: 760px;

}

.hero-text h1 {

font-family: 'Playfair Display', serif;
font-size: 44px;
line-height: 1.2;
margin-bottom: 22px;
font-weight: 500;

}

.hero-text p {

font-size: 19px;
line-height: 1.75;
color: #444;
margin-bottom: 16px;

}


/* BUTTON */

.button {

display: inline-block;
margin-top: 18px;
padding: 12px 26px;
background: #2F5D50;
color: #FFFFFF;
text-decoration: none;
font-size: 16px;

}

.button:hover {

background: #24463C;

}


/* SECTION SYSTEM */

.section {

padding: 55px 0;

}

.section-tight {

padding: 35px 0;

}

.section-compact {

padding: 20px 0;

}


/* HEADING HIERARCHY */

h1 {

font-family: 'Playfair Display', serif;
font-size: 40px;
font-weight: 500;
line-height: 1.25;
margin-bottom: 18px;

}

h2 {

font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 500;
margin-bottom: 14px;

}

h3 {

font-family: 'Playfair Display', serif;
font-size: 22px;
font-weight: 500;
margin-bottom: 12px;

}


/* PARAGRAPH CONTROL */

p {

font-size: 18px;
line-height: 1.75;
margin-bottom: 16px;
color: #222;

}


/* ESSAY TYPOGRAPHY */

.essay-container {

max-width: 760px;
margin: 40px auto;
padding: 0 20px;

}

.essay-title {

font-family: 'Playfair Display', serif;
font-size: 42px;
line-height: 1.25;
margin-bottom: 24px;

}

.essay-container p {

font-size: 19px;
line-height: 1.8;
margin-bottom: 20px;

}


/* LIST CONTROL */

ul {

margin-top: 16px;
margin-bottom: 16px;
padding-left: 20px;

}

li {

font-size: 18px;
margin-bottom: 10px;

}


/* FOOTER */

.footer {

background: #FFFFFF;
margin-top: 60px;
padding: 30px 0;
border-top: 1px solid #E6E6E6;

}

.footer-inner {

max-width: 1100px;
margin: 0 auto;
padding: 0 20px;

}

.footer p {

font-size: 14px;
color: #666;
margin: 6px 0;

}


/* AUTHORITY LINK STYLE */

a {

color: #2F5D50;
text-decoration: none;

}

a:hover {

text-decoration: underline;

}


/* FAVICON FIX (no visual effect but stabilizes head rendering) */

link[rel="icon"] {

display: none;

}


/* MOBILE OPTIMIZATION */

@media (max-width: 768px) {

.hero-text h1 {

font-size: 34px;

}

h1 {

font-size: 32px;

}

.container {

max-width: 92%;

}

.nav a {

margin-left: 16px;

}

}

/* ================================= */
/* RESPONSIVE AUTHORITY SYSTEM */
/* ================================= */

@media (max-width: 1024px) {

.container {
max-width: 92%;
}

.hero-text h1 {
font-size: 36px;
}

h1 {
font-size: 34px;
}

h2 {
font-size: 24px;
}

}

@media (max-width: 768px) {

/* Header */

.header-inner {
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.nav {
margin-top: 8px;
}

.nav a {
margin-left: 0;
margin-right: 18px;
font-size: 14px;
}

/* Hero */

.hero {
padding: 50px 0 30px 0;
}

.hero-text h1 {
font-size: 30px;
line-height: 1.3;
}

.hero-text p {
font-size: 17px;
}

/* Sections */

.section {
padding: 40px 0;
}

.section-tight {
padding: 28px 0;
}

/* Essay */

.essay-title {
font-size: 30px;
}

.essay-container p {
font-size: 17px;
}

/* Buttons */

.button {
padding: 10px 20px;
font-size: 15px;
}

}

@media (max-width: 480px) {

.hero-text h1 {
font-size: 26px;
}

h1 {
font-size: 26px;
}

h2 {
font-size: 20px;
}

p {
font-size: 16px;
}

.nav a {
display: inline-block;
margin-bottom: 8px;
}

}
/* ================================= */
/* AUTHORITY PAGE STRUCTURE SYSTEM */
/* ================================= */

/* Generic Page Section (Internal Pages) */

.page-section {
    padding: 70px 0 50px 0;
}

/* Page Titles (Internal H1 Standardization) */

.page-title {
    max-width: 760px;
    margin: 0 auto 40px auto;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.25;
}

/* Essay Index Cards */

.essay-card {
    max-width: 760px;
    margin: 0 auto 40px auto;
}

.essay-card h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.essay-card p {
    font-size: 18px;
    color: #333;
    line-height: 1.75;
}

/* Controlled Link for Essay Read */

.read-link {
    display: inline-block;
    margin-top: 14px;
    font-weight: 600;
}