/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #ffffff;
    font-family: "helvetica";
    background-color: #231f20;
}

p {
    line-height: 30px;
}

h1,
h2 {
    margin-top: 5px;
    font-family: verdana;
    line-height: 40px;
}

h1 {
    margin-top: 0;
    font-size: 25px;
}

@media (max-width: 500px) {
  h1 {
    font-size: 20px;   /* larger screens: fixed width */
    text-align: center;
      line-height: 30px;
  }
}

h3 {
    font-family: verdana;
    line-height: 30px;
}

a {
    color: #fdb717;
    text-decoration: none;
    border: 2px #231f20 solid;
    padding: 2px 4px;
}

.redlink {
    color: white;
    background-color: #b92d39;
    border: none;
    padding: 4px 3px 3px 3px
}

.redlink:hover {
    color: #231f20;
    background-color: #fdb717;
    border: none;
}

a:hover {
    color: #ffffff;
    border: 2px white solid;
}

.button {
    border: none;
    padding: none;
}

.button:hover {
    border: none;
    padding: none;
}

.small-line {
    max-width: 200px;
    height: 2px;
    background-color: black;
    margin: 20px auto 0 auto;
}
.big-line {
    max-width: 750px;
    width: 100%;
    height: 2px;
    background-color: gray;
    margin: 20px auto 20px auto;
}

.bold {
    font-weight: bold;
}
.white {
    color: white;
}

.socials-container {
    display: flex;
    gap: 10px;
}
.social {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo and text */
    margin: 0 auto 20px auto;
    width: fit-content;
    padding: 5px;
}

.social-icon {
    height: 25px;
}

.social span {
    color: black;
    font-family: verdana;
}

ul {
    list-style-type: disc;
    padding-left: 40px;
}
/* ---------- NAVIGATION (TOP BAR) ---------- */
nav {
    background: #b92d39;
    padding: 10px 30px;
    text-align: center;
    border-bottom: solid 10px #fdb717;
    border-top: solid 10px #fdb717;
}

.logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* ---------- SECONDARY NAVBAR (UNDER MAIN NAV) ---------- */
.navbar {
    background-color: #231f20;
    width: 100%;
    border-bottom: solid 10px #fdb717;
}

.navul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40%;
    margin: 10px auto;
    font-weight: bold;
    font-size: 13pt;
}

@media (max-width: 500px) {
  .navul {
    width: 80%;   /* larger screens: fixed width */
  }
}


/* ---------- JOIN SECTION ---------- */
.join-us {
    padding: 20px 10px;
    margin: 20px auto 10px auto;
    text-align: center;
}

.flag {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ---------- PROGRAM SECTION ---------- */
.program {
    background: #ffffff;
    padding: 0 10px;
    margin: 20px auto;
    text-align: center;
}

.joinbody {
    background: #ffffff;
    padding: 20px 10px;
    margin: 20px auto;
    text-align: justify;
}

.joinbody p {
    text-align: justify;
    max-width: 700px;
    margin: 20px auto 0 auto;
    font-size: 14pt;
    color: black;
    line-height: 28px;
}

.program p {
    text-align: justify;
    max-width: 700px;
    margin: 20px auto 0 auto;
    font-size: 18px;
    color: black;
}

.program h1 {
    color: black;
}

.home p {
    text-align: justify;
    max-width: 700px;
    margin: 20px auto 0 auto;
    font-size: 18px;
    color: black;
}

@media (max-width: 500px) {
    .home p {
    padding: 0 10px;
    font-size: 10px;
  }
}

.home h1 {
    color: black;
}

.underlineheader {
    border-bottom: solid black 2px;
    width: fit-content;
    margin: 0 auto;
}

.chapters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    max-width: 700px;
    margin: 15px auto;
    font-weight: bold;
    font-size: 13pt;
}

@media (max-width: 700px) {
  .chapters {
    width: 80%;   /* larger screens: fixed width */
  }
}


/* ---------- ARTICLE -------*/

.article {
    width: 100%;
    color: black;
    font-size: 16px;
    margin: 0 auto 20px auto;
    background-color: #ffffff;
    border-top: solid 10px #b92d39;
    border-bottom: solid 10px #b92d39;
}

.article-thumbnail {
    max-width: 100%;
    background-color: #231f20;
    margin: 0 auto;
}

.article-thumbnail-img {
    width: 100%;
    height: 400px;
    display: block;
    margin: auto;
    object-fit: cover;
    padding: 25px;
}

.article-body {
    padding: 0 40px;
    margin: 0 0;
}

.article-body p {
    font-size: 18px;
    margin: 15px auto 25px auto;
    font-family: "verdana";
    line-height: 25px;
    text-align: justify;
    max-width: 800px;
}
.article-body ul {
    font-size: 18px;
    margin: 15px auto 25px auto;
    font-family: "verdana";
    line-height: 25px;
    text-align: justify;
    max-width: 800px;
}

.article-body .quote {
    border-left: 5px solid #b92d39;
    padding-left: 5px;
    margin: 15px auto 25px auto;
    max-width: 800px;
    text-align: justify;
}

.article-body .quote p {
    font-family: "verdana";
    font-size: 16px;
    color: #b92d39;
}

.article-title h1 {
    text-align: center;
    margin: 15px auto 10px auto;
    padding: 0;
    max-width: 700px;
}

.article-date {
    text-align: center;
    font-family: verdana;
    font-size: 13pt;
    margin-top: 15px;
    color: #504c47;
}

.article-title-h1 {
    text-align: center;
    margin-top: 20px;
}

.article-title-type {
    text-align: center;
    color: #ffffff;
    background-color: #b92d39;
    width: fit-content;
    font-family: "verdana";
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    font-size: 22px;
    padding: 3px 5px 1px 5px;
}

.article-title {
    padding: 5px 0 20px 0;
}

.previous-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    border-top: 10px solid #b92d39;
    background-color: #231f20;
    font-weight: bold;
    font-size: 13pt;
}

/* ---------- IMAGES ---------- */
.img {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    margin: 20px auto 0 auto;
    border: solid #b92d39 10px;
}

/* ---- article list ----*/

.article-list-item {
    display: flex;
    padding: 10px 30px;
    gap: 30px;
    background: #fff;
    color: #000;
    align-items: center;
    border-top: solid 1px gray;
}

.article-list-item:hover {
    background-color: #fae6e7;
}

.article-list-item a {
    border: none;
    color: black;
}

.article-list-item img {
    max-height: 125px;
}

.article-list {
    background-color: #ffffff;
}

.article-list-date {
    font-family: courier;
    color: dimgray;
}

.article-list-item h3 {
    font-size: larger;
}

.alh1 {
    text-align: center;
    color: #ffffff;
    background-color: #b92d39;
    width: fit-content;
    font-family: "verdana";
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    font-size: 28px;
    padding: 3px 5px 1px 5px;
}

.program {
    text-align: center;
}

.program h1 {
    text-align: center;
    font-size: 16pt;
    color: #b92d39;
}

.program p {
    text-align: center;
    font-size: 14pt;
    margin-top: 8px;
}

.home {
    background: #ffffff;
    padding: 20px 10px;
    margin: 20px auto;
    text-align: center;
    border-top: solid 2px #b92d39;
    border-bottom: solid 2px #b92d39;
}

.home h1 {
    text-align: center;
    font-size: 16pt;
    color: #b92d39;
}

.home p {
    text-align: justify;
    font-size: 14pt;
    margin-top: 8px;
}

.point {
    padding: 10px 0;
    background-color: #fff;
}

.pointalt {
    padding: 10px 0;
    background-color: #fae6e7;
}

.copyright {
    align-content: center;
    margin: 0 auto 20px auto;
    width: 70%;
    font-size: 14px;
    line-height: 20px;
    color: #888888;
    text-align: center;
}

@media (max-width: 500px) {
    .copyright {
    width: 90%
  }
}
