@font-face {
  font-family: "fonde";
  src: url('fonts/fonde.fonde.ttf');
}
@font-face {
  font-family: "AVENIRLTSTD-BOOK";
  src: url('fonts/AVENIRLTSTD-BOOK.OTF');
}
@font-face {
  font-family: "AVENIRLTSTD-LIGHT";
  src: url('fonts/AVENIRLTSTD-LIGHT.OTF');
}
@font-face {
  font-family: "AVENIRLTSTD-ROMAN";
  src: url('fonts/AVENIRLTSTD-ROMAN.OTF');
}

* {
    margin: 0;
    padding: 0;
}

html,
body {
    background-color: #efe8cd;
    font-family: "AVENIRLTSTD-LIGHT";
}
a {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'fonde';
    color: #440404;
    text-transform: capitalize;
}
a,p,li,span {font-family: "AVENIRLTSTD-LIGHT";}

.sections-padding {
    padding: 50px 0px;
}
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0px;
}
.social-icon-container {
    display: flex;
    gap: 20px;
}
.social-icon-container a {
    font-size: 18px;
    color: black;
}
.logo img {
    max-width: 160px;
}
.toggle-menu-container {
    display: flex;
    gap: 30px;
}
.toggle-menu-container span,
.toggle-menu-container span a {
    font-size: 18px;
    color: black;
    cursor: pointer;
}
nav.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 60px;
    justify-content: center;
    margin: 0;
    align-items: center;
}
nav.desktop-nav ul li a {
    color: grey;
    font-weight: 600;
}
.mobile-nav {
    width: 350px;
    height: 100vh;
    right: -370px;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 3;
    background-color: white;
    box-shadow: -2px 1px 14px 0px #80808085;
    padding: 150px 20px 0px 20px;
    transition: all ease 0.3s;
}
.menu-close {
    position: absolute;
    font-size: 40px !important;
    top: 45px;
    cursor: pointer;
}
.mobile-nav ul {
    list-style: none;
}
.mobile-nav ul li {
    margin-bottom: 25px;
}
.mobile-nav ul a {
    color: grey;
}
.menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.452);
    z-index: 2;
    display: none;
}
.slider-section {
    padding: 60px 0px 10px 0px;
}
.banner-slider .item {
    height: 500px;
    position: relative;
}
.banner-slider .item .img-box {
    height: 100%;
}
.banner-slider .item img {
    height: 100%;
    object-fit: cover;
}
.banner-slider .item .banner-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 45%;
    margin: auto;
    text-align: center;
    color: white;
}
.banner-slider .item .banner-content h2 {
    font-size: 33px;
}
.banner-slider .item .banner-content p {}
.banner-slider .owl-nav {
    display: flex;
    width: 80%;
    justify-content: space-between;
    margin: auto;
    position: absolute;
    top: 48%;
    left: 0;
    right: 0;
}
.banner-slider .owl-nav button i {
    color: white;
    font-size: 40px;
}
.banner-slider .owl-nav button:hover {
    background: transparent !important;
}
.blog-container {
    padding-bottom: 50px;
}
.blog-container .blog-img-container {
    position: relative;
}
.blog-container .blog-img-container img {
    height: 350px;
    object-fit: cover;
    object-position: center;
}
.blog-container .blog-img-container .liked-count {
    position: absolute;
    left: -30px;
    bottom: -20px;
    width: 80px;
    height: 80px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 0 25px rgba(0, 0, 0, .15);
    border-radius: 50%;
}
.blog-content-container h3 {
    font-weight: 700;
    color: #343434;
    padding: 40px 0px 8px 0px;
    text-transform: capitalize;
}
.blog-content-container .name-date-container {
    display: flex;
    margin-bottom: 20px;
    margin-top: 15px;
    gap: 30px;
    align-items: center;
    color: #8b8b8b;
    font-weight: 600;
}
.name-date-container img {
    width: 35px;
    border-radius: 50%;
}
.blog-content-container p {
    color: #8b8b8b;
    font-weight: 500;
    letter-spacing: 0px;
    word-spacing: 1px;
    font-size: 15px;
    line-height: 28px;
}
.blog-content-container .media-icon-container {
    display: flex;
    gap: 30px;
    padding: 10px 0px;
}
.blog-content-container .media-icon-container i {
    color: black;
}
.follow-us-newsletter {
    background-color: #f4f4f4;
    padding: 50px 40px 65px;
    text-align: center;
}
.follow-us-newsletter .follow-social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0px;
}
.follow-us-newsletter .follow-social-media a {
    color: #4c4c4c;
}
.follow-us-newsletter .news-letter {}
.follow-us-newsletter h4 {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    color: #383838;
}
.follow-us-newsletter p {
    font-size: 15px;
    color: #813131;
    line-height: 1.625;
}
.follow-us-newsletter .news-letter .news-letter-form {
    padding-top: 30px;
}
.follow-us-newsletter .news-letter .news-letter-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.follow-us-newsletter .news-letter .news-letter-form .email-input {
    padding: 12px 17px;
    border: none;
}
.follow-us-newsletter .news-letter .news-letter-form .submit-input {
    padding: 12px 17px;
    border: none;
    background-color: #4d0c0c;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.recent-post a.d-flex.align-items-center.mb-3.text-decoration-none {
    border-bottom: 1px solid #efe8cd;
    padding-bottom: 20px;
    margin-bottom: 30px;
    display: flex
;
}

.about-me-blog {}
.about-me-blog h5 {}
.about-me-blog .img-box img {}
.about-me-blog p {}
.about-me-blog a {}
.list-box {
    padding: 20px 0px 0px 0px;
}
.list-box ol {
    padding: 0 0px 0px 20px;
    line-height: 30px;
    color: #8b8b8b;
    font-weight: 500;
    letter-spacing: 0px;
    word-spacing: 1px;
    font-size: 15px;
}
.blog-details p {
    color: #8b8b8b;
    font-weight: 500;
    letter-spacing: 0px;
    word-spacing: 1px;
    font-size: 15px;
    line-height: 28px;
}

.hero-section {
  background: url('https://thevillagerooftop.com/blog/assets/images/img/banner.png') no-repeat center center/cover;
  height: 50vh;
  display: flex;
  padding-top: 2rem !important;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  opacity: 0.8em !important;
}
.hero-section h1,
.hero-section h2{color: #fff;}
.post-list-img img {width: 100%;height: 300px;object-fit: cover;object-position: center;}


.navbar {
  padding: 1.5rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6) !important;
}
.navbar-brand img {
  height: 50px;
}
.nav-link {
  color: #fff !important;
}
.nav-buttons .btn {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
}
.navbar .center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
    .navbar {padding: 0.5rem 0.5rem;}
    .navbar .center-logo {
        position: relative;
        left: 0;
        transform: none;
    }
    .navbar-collapse {text-align: center;}
    .nav-buttons {margin: 1rem auto;justify-content: center;}
}

.btn-danger-btn, .btn-primary-btn{
    background-color : #4d0c0c;
    color: white !important;
}

.btn-primary-btn:hover{
    color: black !important;
}

footer {
  background-color: #4d0c0c; /* Same dark red */
  color: white;
  padding: 50px 0 20px;
}

footer a {
  color: white;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.social-icons a {
  font-size: 20px;
  margin-right: 10px;
  color: white;
}

.quick-btn {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  background: white;
  color: #4d0c0c;
  border-radius: 8px;
  font-weight: 600;
  padding: 8px;
  text-align: center;
  transition: 0.3s;
}

.quick-btn:hover {
  background: #e2e2e2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
  text-align: center;
  color: #ccc;
}

.card {
    border: none;
    background: transparent;    
    border-radius: 0;
    border-bottom: 1px solid #440404;
    padding-bottom: 50px;
    margin-bottom: 50px;
}
.card .card-body {
    padding: 0;
    margin-bottom: 15px;
}
.card .card-body .d-flex {
    margin: 10px 0;
}
.card .card-body p,
.blog-content-container p {
    color: #813131;
    line-height: 1.625;
    font-size: 1.125rem;
}
.card .card-body .text-muted {
    color: #000000 !important;
}
.date {color: #000;}
footer .bg-color {background-color: #571e1e;font-size: 15px;margin-top: 15px;line-height: 22px;}
.flex.items-start.space-x-3 {display: flex;gap: 15px;}
.flex.items-start.space-x-3 span {width: 88%;}
.flex.items-start.space-x-3 a {margin-bottom: 15px;}
.flex.items-start.space-x-3 a i {margin-top: 5px;}

.recent-posts-container {
    background-color: #f4f4f4;
    padding: 50px 15px 15px;
    text-align: center;
    margin-bottom: 35px;
}
.recent-post {text-align: left;}

@media(max-width:991px){
    .desktop-nav{display: none;}
    .slider-section {padding: 20px 0px 10px 0px;}
}
@media(max-width:576px){
    .banner-slider .item {height: 350px;}
    .banner-slider .item .banner-content h2 {font-size: 22px;}
    .banner-slider .owl-nav {width: 100%;}
    .banner-slider .owl-nav button i {color: #ffffff;font-size: 20px;}
    .blog-container .blog-img-container .liked-count {left: 10px;bottom: -30px;}
    .blog-content-container .media-icon-container{justify-content: center;}
    .blog-content-container .media-icon-container{gap: 15px;}
    .blog-content-container .name-date-container {gap: 15px;font-size: 15px;}
}