/* FONTS */

@font-face {
  font-family: 'Courier Prime';
  src: url('../fonts/Courier Prime.ttf') format('truetype');
}

@font-face {
  font-family: 'dilemma-sans-bold';
  src: url('../fonts/dilemma-sans-bold.otf') format('opentype');
}

@font-face {
  font-family: 'dilemma';
  src: url('../fonts/Dilemma-SansExtraLight.otf') format('opentype');
}

@font-face {
  font-family: 'dilemmam';
  src: url('../fonts/Dilemma-SansMedium.otf') format('opentype');
}

/* GLOBAL */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'dilemma-sans-bold';
}

body{
width:100%;
}

/* TOP BAR */

.header-bar{
width:100%;
background:#d4a32a;
text-align:center;
padding:10px 0;
font-weight:700;
font-size:14px;
letter-spacing:1px;
}

.header-bar a{
color:#000;
text-decoration:none;
font-weight:800;
margin-left:5px;
}

/* NAVBAR */

.main-navbar{
width:100%;
background:#1f3524;
padding:18px 0;
display:flex;
justify-content:center;
align-items:center;
}

.site-logo img{
height:40px;
width:auto;
display:block;
}

/* BLOG SECTION */

.article-section{
background:#e6e1d2;
padding:60px 0;
text-align:center;
}

.article-title{
font-size:50px;
font-weight:700;
text-transform:uppercase;
line-height:1.1em;
letter-spacing:1.3px;
color:#231f20;
padding-bottom:20px;
}

.article-subtitle{
font-family:"Courier Prime", Sans-serif;
font-size:18px;
line-height:1.3em;
color:#212c1c;
padding-bottom:40px;
}

/* BLOG LAYOUT */

.article-container{
margin:auto;
display:flex;
width:90%;
}

.article-image{
width:50%;
}

.article-image img{
width:100%;
height:100%;
object-fit:cover;
}

.article-content{
width:50%;
background:#1e3324;
color:#fff;
display:flex;
flex-direction:column;
justify-content:center;
padding:40px;
text-align:center;
}

.article-content h3{
margin:0 0 40px 0;
color:#f4f1de;
font-size:24px;
font-weight:700;
text-transform:uppercase;
letter-spacing:1px;
word-spacing:3px;
}

.article-content p{
font-family:"Courier Prime", Sans-serif;
color:#f4f1de;
line-height:1.5em;
font-size:16px;
padding-bottom:20px;
}

/* BLOG CARDS */

.blog-card{
width:33.33%;
}

.blog-card img{
width:100%;
display:block;
}

/*3 blog*/

.posts-section{
padding-bottom:40px;
background:#e7e3d5;
}

.posts-wrapper{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.post-card{
width:350px;
background:#1f3a1f;
color:#ffffff;
text-align:center;
overflow:hidden;
}

.post-card img{
width:100%;
height:230px;
object-fit:cover;
}

.post-content{
padding:30px 25px;
}

.post-content h3{
font-size:18px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:15px;
}

.post-content p{
font-family:'Courier Prime';
color:#f4f1de;
font-size:14px;
margin-bottom:10px;
text-transform:capitalize;
}

.post-link{
display:inline-block;
color:#7ed957;
text-decoration:none;
font-weight:600;
}

.post-link:hover{
text-decoration:underline;
}

@media(max-width:900px){
.posts-wrapper{
flex-direction:column;
align-items:center;
}
}

/* FOOTER */

.footer{
background:linear-gradient(rgba(10,25,10,.9), rgba(10,25,10,.95)),
url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6');
background-size:cover;
background-position:center;
color:#fff;
padding:6vh 5vw;
}

.footer-container{
display:flex;
flex-wrap:wrap;
justify-content:space-between;
gap:4vh 3vw;
}

.footer-col{
flex:1 1 18%;
min-width:15em;
}

.footer-col h4{
font-size:1.1rem;
margin-bottom:2vh;
color:#8cc63f;
letter-spacing:.05em;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:1.2vh;
}

.footer-col ul li a{
text-decoration:none;
color:#ccc;
font-size:.9rem;
font-family:'Courier Prime';
}

.footer-col ul li a:hover{
color:#8cc63f;
}

.logo-circle{
width:12vw;
height:12vw;
min-width:8em;
min-height:8em;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:3vh;
}

/* LEGAL SECTION */

.footer-legal{
background:linear-gradient(rgba(10,25,10,.95), rgba(10,25,10,.98)),
url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6');
background-size:cover;
background-position:center;
color:#d8d8d8;
}

.footer-bar{
background:#8cc63f;
padding:2vh 4vw;
font-family:'Courier Prime';
}

.footer-bar-inner{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
font-size:1rem;
color:#1b2d12;
}

.footer-links{
display:flex;
gap:3vw;
}

.footer-links a{
text-decoration:none;
color:#1b2d12;
font-family:'Courier Prime';
}

.legal-content{
padding:3vh 2vw 1vw 2vw;
text-align:center;
}

.legal-content p{
margin-bottom:3vh;
font-size:.9rem;
line-height:1.8em;
width:95%;
margin:auto;
font-family:'Courier Prime';
}

/* PAYMENT STRIP */

.payment-strip{
width:100%;
padding:1.2rem 5vw;
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
}

.payment-strip img{
height:2rem;
object-fit:contain;
}

/* RESPONSIVE */

@media(max-width:900px){

.article-container{
flex-direction:column;
width:90%;
}

.article-image,
.article-content{
width:100%;
}

.footer-container{
flex-direction:column;
}

.footer-col{
width:100%;
}

.logo-circle{
width:30vw;
height:30vw;
}

.footer-links{
justify-content:center;
}

.legal-content{
padding:5vh 5vw 0;
}

}

@media (max-width:768px){

.article-title{
font-size:32px;
line-height:1.2;
letter-spacing:0.5px;
padding-bottom:15px;
}

}
