/* ========================================
   GENERAL SETTINGS
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #f7f3ec;
    color: #2d2925;
    line-height: 1.7;
}


/* ========================================
   HEADER
======================================== */

header {
    background: #211b18;
    color: #f5ead7;
    text-align: center;
    padding: 55px 20px 45px;
    border-bottom: 5px solid #b08d57;
}

.site-title h1 {
    font-size: 46px;
    letter-spacing: 2px;
    font-weight: normal;
    text-transform: uppercase;
}

.site-title p {
    margin-top: 10px;
    font-size: 18px;
    font-style: italic;
    color: #d8c5a5;
    letter-spacing: 1px;
}


/* ========================================
   NAVIGATION
======================================== */

nav {
    background: #332923;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

nav a {
    color: #f5ead7;
    text-decoration: none;
    padding: 15px 18px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.3s;
}

nav a:hover {
    background: #b08d57;
    color: #211b18;
}


/* ========================================
   MAIN CONTENT
======================================== */

main {
    max-width: 1200px;
    margin: auto;
}


/* ========================================
   HERO SECTION
======================================== */

.hero {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 70px 25px;

    background:
        linear-gradient(
            rgba(33, 27, 24, 0.78),
            rgba(33, 27, 24, 0.78)
        ),
        url("images/literature-bg.jpg");

    background-size: cover;
    background-position: center;

    color: white;
}

.hero h2 {
    font-size: 45px;
    font-weight: normal;
    max-width: 850px;
}

.hero p {
    max-width: 700px;
    margin-top: 20px;
    font-size: 20px;
    color: #eee4d4;
}

.hero-buttons {
    margin-top: 35px;
}

.hero-buttons a {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid #d2b276;
    padding: 12px 25px;
    margin: 5px;
    transition: 0.3s;
}

.hero-buttons a:hover {
    background: #b08d57;
    color: #211b18;
}


/* ========================================
   COMMON SECTION
======================================== */

section {
    padding: 65px 30px;
}

section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: normal;
    color: #49382c;
    margin-bottom: 25px;
}

section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: #b08d57;
    margin: 12px auto 0;
}


/* ========================================
   INTRODUCTION
======================================== */

.introduction {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.introduction p {
    margin-bottom: 15px;
    font-size: 17px;
}


/* ========================================
   DISCOVER LITERATURE
======================================== */

.discover {
    background: #f7f3ec;
    text-align: center;
}

.section-intro {
    max-width: 750px;
    margin: -5px auto 40px;
    font-size: 17px;
    color: #62574e;
}


.discover-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


.discover-card {
    position: relative;

    display: block;

    background: #fffaf2;

    text-align: left;

    padding: 35px 30px;

    min-height: 245px;

    text-decoration: none;

    color: #2d2925;

    border: 1px solid #e1d7c8;

    transition: 0.3s ease;
}


.discover-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);

    border-color: #b08d57;
}


.card-number {
    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 2px;

    color: #b08d57;

    margin-bottom: 25px;
}


.discover-card h3 {
    font-size: 26px;

    font-weight: normal;

    color: #49382c;

    margin-bottom: 12px;
}


.discover-card p {
    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 20px;
}


.discover-card span {
    color: #8a5f2d;

    font-size: 14px;

    font-weight: bold;
}


/* ========================================
   LATEST ARTICLES
======================================== */

.latest {
    text-align: center;
    background: #f7f3ec;
}

.latest p {
    font-size: 17px;
}


/* ========================================
   LATEST NOTICES
======================================== */

.latest-notices {
    background: #eee7dc;
    text-align: center;
}

.latest-notices p {
    font-size: 17px;
}


/* ========================================
   FOOTER
======================================== */

footer {
    background: #211b18;
    color: #d8c5a5;
    text-align: center;
    padding: 35px 20px;
    font-size: 14px;
}

footer p {
    margin: 5px 0;
}


/* ========================================
   MOBILE RESPONSIVE DESIGN
======================================== */

@media (max-width: 900px) {

    .featured-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-title h1 {
        font-size: 38px;
    }

    .hero h2 {
        font-size: 36px;
    }
}


@media (max-width: 600px) {

    nav {
        flex-direction: column;
    }

    nav a {
        text-align: center;
        border-bottom: 1px solid #4a3c34;
    }

    .featured-container {
        grid-template-columns: 1fr;
    }

    .site-title h1 {
        font-size: 30px;
    }

    .hero {
        min-height: 420px;
    }

    .hero h2 {
        font-size: 30px;
    }

    .hero p {
        font-size: 17px;
    }

    section {
        padding: 45px 20px;
    }
}
/* ========================================
   LATEST ARTICLE CARDS
======================================== */

.article-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 35px auto 0;
}

.article-card {
    background: #fffaf2;
    padding: 30px;
    border-left: 4px solid #b08d57;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.article-card .category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8a5f2d;
}

.article-card h3 {
    font-size: 23px;
    font-weight: normal;
    color: #49382c;
    margin: 12px 0;
}

.article-card p {
    font-size: 15px;
    margin-bottom: 18px;
}

.article-card a {
    color: #8a5f2d;
    text-decoration: none;
    font-weight: bold;
}


/* ========================================
   NOTICE LIST
======================================== */

.notice-list {
    max-width: 900px;
    margin: 35px auto 0;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: #fffaf2;
    padding: 22px 25px;
    margin-bottom: 15px;
    border-left: 4px solid #b08d57;
}

.notice-date {
    min-width: 110px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #8a5f2d;
}

.notice-item h3 {
    font-size: 19px;
    font-weight: normal;
    margin-bottom: 5px;
}

.notice-item p {
    font-size: 14px;
}
@media (max-width: 900px) {

    .discover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .discover-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
POEM PAGE - OLD PARCHMENT STYLE
========================================= */

.poem-page {
max-width: 900px;
margin: 50px auto;
padding: 60px 75px;

```
background: #f3e7c9;

color: #3d2b1f;

border: 1px solid #b89b6b;

box-shadow:
    0 4px 15px rgba(60, 40, 20, 0.20);

font-family: Georgia, "Times New Roman", serif;
```

}

/* POEM TITLE */

.poem-page h1 {
text-align: center;

```
font-family: Georgia, "Times New Roman", serif;

font-size: 42px;

margin-bottom: 10px;

color: #3b2415;
```

}

/* AUTHOR */

.poem-page h2 {
text-align: center;

```
font-size: 25px;

font-weight: normal;

color: #5a3b25;

margin-top: 5px;
```

}

/* BOOK / SOURCE INFORMATION */

.poem-source {
text-align: center;

```
font-style: italic;

color: #765b3c;

margin-bottom: 35px;
```

}

/* HORIZONTAL LINE */

.poem-page hr {
border: none;

```
border-top: 1px solid #b89b6b;

margin: 30px 0;
```

}

/* INTRODUCTION */

.poem-introduction {
font-size: 17px;

```
line-height: 1.8;

margin-bottom: 40px;

text-align: justify;
```

}

/* THE POEM HEADING */

.poem-page .poem-text {
margin-top: 25px;
}

/* POEM TEXT */

.poem-text {
font-family: Georgia, "Times New Roman", serif;

```
font-size: 18px;

line-height: 1.9;

color: #332218;

text-align: left;
```

}

/* INDIVIDUAL POEM PARAGRAPHS */

.poem-text p {
margin-bottom: 24px;
}

/* SOURCE NOTE */

.source-note {
margin-top: 45px;

```
padding-top: 20px;

border-top: 1px solid #b89b6b;

font-size: 14px;

font-style: italic;

color: #765b3c;
```

}

/* MOBILE VIEW */

@media (max-width: 700px) {

```
.poem-page {
    margin: 20px;

    padding: 35px 25px;
}

.poem-page h1 {
    font-size: 32px;
}

.poem-page h2 {
    font-size: 21px;
}

.poem-text {
    font-size: 17px;

    line-height: 1.8;
}
```

}
