@font-face {
  font-family: 'Nightfall';
  src: url('/fonts/Nightfall.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Darker Grotesque';
  src: url('/fonts/DarkerGrotesque.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/ivymode-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/ivymode-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IvyJournal';
    src: url('../fonts/ivyjournal-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IvyJournal';
    src: url('../fonts/ivyjournal-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'IvyJournal';
    src: url('../fonts/ivyjournal-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/*
body {
    font-family: 'IvyJournal', serif;
	margin:0;
}

h1, h2, h3, .nav a {
    font-family: 'IvyMode', sans-serif;
}
*/

body {
  font-family: 'IvyJournal', serif;
  margin: 0;
  font-size: 18px;           /* Leading: 21pt ≈ 28px */
  letter-spacing: 0;         /* Tracking: 0 */
  font-weight: 200;          /* Thin weight */
}
html b,html strong {
    font-weight: 700;
}
/* Headings & Nav */
h1, h2, h3, .nav a {
  font-family: 'Nightfall', serif;  /* Use Nightfall for main headings */
}

/* h1: Nightfall */
h1 {
  font-size: 80px;          /* 60pt ≈ 80px */
  font-weight: normal;      /* Normal weight */
  line-height: 1.3 !important;
}

/* h2: Darker Grotesque Semibold */
h2 {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 46px;          /* 35pt ≈ 46px */
  font-weight: 600;         /* Semibold */
}

/* h3: Darker Grotesque Regular */
h3 {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 35px;          /* 26pt ≈ 35px */
  font-weight: 400;         /* Regular */
}

/* Nav links: same as h3 style for consistency */
.nav a {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 35px;
  font-weight: 400;
}

/****** Header CSS ********/
nav>a,nav>div>a {
    padding: 10px 0;
}
.site-header {
    background-color: #f8f5e5;
    padding: 1.5rem 2rem;
    font-family: 'IvyMode', serif;
    border-bottom: 1px solid #e2e0d8;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav ul li a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
    font-family: 'IvyJournal', serif;
    position: relative;
    padding: 0.25rem 0;
}

.main-nav ul li a:hover {
    border-bottom: 1px solid black;
}

.main-nav ul li a.appointment-btn {
    padding: .5rem 1.5rem .75rem;
    background-color: black;
    color: #fff;
    border-radius: 9999px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.appointment-btn:hover {
    background-color: #444;
}

/************************/

/********** Footer CSS *****/
footer {
    background-color: #f8f5e5;
    padding: 3rem 1rem;
    text-align: center;
    font-family: 'IvyJournal', serif;
}

footer nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
}

footer nav ul li a {
    text-decoration: none;
    color: black;
    font-family: 'IvyMode', serif;
}

footer .social-icons {
    font-size: 1.5rem;
	margin-top: 5rem;
    margin-bottom: 0.5rem;
}

footer .social-icons a {
    margin: 0 0.5rem;
    color: black;
}

footer .copyright {
    font-size: 0.9rem;
    color: #222;
    margin-top: 2rem;
}

footer .copyright a {
    color: black;
    text-decoration: none;
}
/*******************/

/************ Journal page css **********/
.journal-section {
    padding: 4rem 2rem;
    background-color: #fefcf4;
    font-family: 'IvyJournal', serif;
}

.journal-title {
    font-family: 'IvyMode', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.journal-card {
    background-color: white;
    border: 1px solid #eee;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-5px);
}

.journal-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.journal-card h2 {
    font-size: 1.25rem;
    font-family: 'IvyMode', serif;
    margin-top: 0.8rem;
}

.excerpt {
    color: #333;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}
/*********************/
body h2 {
    font-size: 2.25rem;
}
body h3 {
    font-size: 1.875rem;
    line-height: 1;
}
@media only screen and (max-width:767px){
   body .hero-title{
        font-size: 2rem;
    }
    
   body .hero-meta {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    body .hero-content {
        padding: 1rem;
    }
    body section.hero-section {
    height: 80vh;
}
body h2 {
    font-size: 1.875rem;
}
body h3 {
    font-size: 1.5rem;
}
}