/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigation Menu Styles */

.nav-menu {
    background-color: #333;
    color: #fff;
    padding: 40px;
    text-align: center;
}

.nav-menu ul {
    position:absolute;
    right:5vw;
    top:0;
    line-height:80px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
    margin-right: 4vw;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
}

.nav-menu a:hover {
    text-decoration: underline;
}

/* Hero Section Styles */

.hero-section {
    background-image: linear-gradient(to bottom, #333, #f9f9f9);
    /* height: 80px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    position:absolute;
    left:120px;
    top:0;
    line-height:80px;
    font-size: 36px;
    color: #fff;
}

/* Featured Post Section Styles */

.featured-post-section {
    background-color: rgba(35,28,26,0.2);
    padding: 20px;
    margin-bottom: 20px;
}

.featured-post-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.featured-post-section h2 {
    font-size: 24px;
    color: #fff;
}

/* Recent Posts Section Styles */

.recent-posts-section {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
}

.recent-posts-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-posts-section li {
    display: inline-block;
    margin-right: 10px;
}

.custom-hr {
    border: none;
    height: 2px;
    background-color: #f00;
    margin: 20px 0;
  }

/* Footer Section Styles */

.footer-section {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.social-media-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social-media-links li {
    display: inline-block;
    margin-right: 10px;
}
/* mobile */
@media screen and (max-width: 769px){
    .hero-section h1 {
        position:absolute;
        left:60px;
        top:0;
        line-height:60px;
        font-size: 36px;
        color: #fff;
    }
}