/*
Theme name: BGReelMTL Blog
Author: K. Gil
Description: Movies, Food & Life in Montreal !
Tags: Life, Movies, Food, Travel
Version: 1.0

*/

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: "Archivo", sans-serif;
  background-color:  #ede1d781;
}

img{
  max-width: 100%;
  height: auto;
}

section{
  padding: 80px 0;
}

.container{
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.styleFont{
  font-family: "Averia Libre", system-ui;
}

/* footer style */
footer {
  background: #1A1313;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-info h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.footer-info p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-info h6 {
  font-size: 14px;
  color: #888;
}

.footer-menu {
  margin-top: 10px;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-menu-list li {
  display: inline-block;
}

.footer-menu-list a {
  background: #ebd8c8;
  color: #1A1313;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
  display: inline-block;
}

.footer-menu-list a:hover {
  background: #f9b57e;
  transform: scale(1.05);
}

header{
  background: #1A1313;
  padding: 10px 0px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a{
  /* border: 2px solid blue; */
  font-size: 14px;
  text-decoration: none;
  color: #F5F5F5;
}

.right-menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Subscribe Style */
.subscribe-button {
    font-size: 14px;
    font-weight: 600;
    background: #F15412;
    color: #F5F5F5;
    padding: 8px 11px;
    border-radius: 7px;
    text-decoration: none;
}

/* Hamburger Menu Style */
.menu-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
}

.menu-button .bar {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
}

 /* full screen menu */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: top;
  padding-top: 50px;
  z-index: 9999;
  color: white;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.overlay-menu.active {
  transform: translateX(0);
}

.overlay-menu a {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    padding: 7px 0;
    display: block;
    width: 100%
}
.close-menu {
    position: absolute;
    top: 15px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

/* Menu list style */
.custom-menu ul li {
  list-style: none;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

/* Submenu style */
.custom-menu ul .sub-menu {
  padding-left: 10px;
  font-size: 10px;
  opacity: 0.6;
}

.custom-menu ul .sub-menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: none;
  padding: 1px 0;
}

/* Search Icon */
.search-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #F5F5F5;
  padding: 5px;
  transition: 0.3s;
}

.search-button:hover {
  color: #F15412;
}

/* Search Popup */
.search-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.search-popup.active {
  display: flex;
}

.search-popup-content {
  background: white;
  padding: 10px 15px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);

  overflow: hidden;
}

.search-bar{
  display: flex;
}

.search-popup input[type="search"] {
  flex: 1;
  padding: 12px 15px;
  border: none;
  font-size: 16px;
  border-radius: 50px 0 0 50px;
  outline: none;
  background: #f4f4f4;
}

.search-popup .search-btn {
  background: #ff6600;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-in-out;
}

.search-popup .search-btn i {
  color: #fff;
  font-size: 18px;
}

.search-popup .search-btn:hover {
  background: #F15412;
}

.search-popup .close-search {
  position: absolute;
  top: 20px;
  right: 40px;
  background: none;
  border: none;
  font-size: 50px;
  cursor: pointer;
  color: #fff;
}

.search-popup .close-search:hover {
  color: #F15412;
}


/* <!-- section-hero start --> */

.hero{
  background: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  padding-bottom: 50px;
  text-align: center;
  color: #FFFAE5;
}

.hero-content {
  position: relative;
  max-width: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .visitor-stats {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.hero h1{
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 5px;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-subtitle {
  font-size: 13px;
  opacity: 0.8;
}

.hero .share-icon {
  position: absolute;
  background: none;
  border: none;
  bottom: 30px;
  right: 20px;
}

.hero .share-icon i {
  font-size: 22px;
  cursor: pointer;
  text-decoration: none;
  color: #F5F5F5;
  transition: 0.3s;
}

.hero .share-icon:hover i {
  color: #F15412;
  transform: scale(1.2);
}

/* <!-- category menu start --> */

.category-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 95%;
  max-width: 670px;
  margin-top: 5px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.category-slider {
  display: flex;
  gap: 10px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 0 0;
}

.category-slide {
  flex: 0 0 auto;
  width: 120px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  line-height: 1.2;
}

.category-icon-box {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.category-slide:hover .category-icon-box{
  background: #E4CAB4;
}

.category-icon-box i {
  font-size: 20px;
  color: #fff;
}

.category-slide:hover .category-icon-box i{
  color: #333;
}

.category-text-box {
  flex-grow: 1;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 8px;
}

.category-text-box span {
  font-size: 14px;
  font-weight: 700;

  color: #333;
}

.scroll-left, .scroll-right {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.scroll-right {
  margin-left: 10px;
}

.scroll-left {
  margin-right: 10px;
}

/* <!-- section-feed start --> */

.section-feed{
  background-color: #ebd8c8;
  padding: 40px 0;
}

.section-feed .feed-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.section-feed .feed-card{
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  background: #ebd8c8;
  border-bottom: 1px solid rgba(58, 58, 58, 0.45);
}

.section-feed .feed-img{
  height: 180px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  transition: 0.3s;
  border-radius: 8px;
}

.section-feed .feed-img:hover{
  filter: brightness(1.1);
}

.section-feed .feed-card h3{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  word-break: normal;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* maximum line limit */
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-feed .feed-card p{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  word-break: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* maximum line limit */
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-feed .feed-card a{
  list-style: none;
  text-decoration: none;
  transition: 0.3s;
  color: #1A1313;
}

.section-feed .feed-card a:hover{
  color: #252525;
}

.section-feed .card-detail{
  flex-grow: 1;
  display: flex;
}

.section-feed .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
  margin-top: auto;
  padding: 10px 0;
  /* border-top: 1px solid #ddd; */
}

.section-feed .share-button {
  background: none;
  border: none;
}

.section-feed .share-button i {
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  color: #1A1313;
  transition: 0.3s;
}

.section-feed .share-button:hover i {
  color: #F15412;
  transform: scale(1.1);
}

.post-date {
  font-size: 12px;
  color: #555;
}

/* Style for single.php */

.full-article .container{
  max-width: 720px;
  width: 90%;
}

.full-article .category-link-top {
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  color: #1A1313;
}

.full-article .category-link-top:hover {
  font-weight: bold;
}

.full-article h2{
  font-size: 38px;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.full-article p{
  font-size: 16px;
  color: #3a3a3a;
}

.full-article .post-content p{
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.full-article p a, .full-article li a{
  border-bottom: 1px solid #797979;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.full-article p a:hover, .full-article li a:hover{
  border: none;
  color: #1d1d1d;
  font-weight: bold;
}

.full-article .long-bar{
  width: 100%;
  height: 3px;
  background-color: #555555;
  margin: 15px 0;
}

.full-article .post-img {
  width: 100%;
  max-width: 720px;
  min-height: 400px;
  height: auto;
  aspect-ratio: auto;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

.full-article .post-content img{
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
}

.full-article .post-flex{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.full-article .post-author{
  display: flex;
  gap: 10px;
  align-items: center;
}

.full-article .post-date{
  display: flex;
  gap: 10px;
  align-items: center;
}

.full-article .author-name{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.full-article .post-categories{
  display: flex;
  gap: 10px;
  align-items: center;
}

.full-article .post-author .author-img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.full-article .post-share {
  display: flex;
  align-items: center;
}

.full-article .share-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  transition: color 0.3s, transform 0.2s;
}

.full-article .share-button:hover {
  color: #F15412;
  transform: scale(1.1);
}

.full-article .post-tags{
  margin-top: 20px;
  font-size: 14px;
  color: #555;

}

.full-article .post-tags a {
  text-decoration: none;
  color: #292929;
  padding: 3px 7px;
  background: #dbc9bb81;
  border-radius: 5px;
  font-size: 14px;
  transition: 0.3s;
  line-height: 2.5;
  letter-spacing: 1px;
}

.full-article .post-tags a:hover {
  background: #a78e7a;
  color: #fff;
}

.full-article .post-content h3{
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.full-article .post-content{
  line-height: 1.8;
}

.full-article .post-content iframe {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  height: auto;
}

.full-article .post-content ul{
  list-style-position: inside;
  margin-bottom: 40px;
  padding: 10px 15px;
  line-height: 2.2;
  background-color: #ffffff42;
  border: 3px solid #8b451390;
  width: auto;
  max-width: 100%;
  height: auto;
}

.full-article .post-content ul li{
  font-size: 15px;
}

.full-article .post-content ol{
  list-style-position: inside;
  margin-bottom: 20px;
  padding: 10px 15px;
  line-height: 2.2;
  background-color: #ffffff42;
  border: 3px solid #8b451390;
  width: auto;
  max-width: 100%;
  height: auto;
}

.full-article .post-content ol li{
  font-size: 14px;
}

.full-article .post-content hr{
  border: none;
  height: 3px;
  background-color: #8B4513;
  opacity: 0.5;
  margin-bottom: 20px;
}

/* Related Posts Navigation */

.full-article .related-posts-container {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  text-align: center;
}

.full-article .category-link-bottom {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
  color: #e08106;
}

.full-article .category-link-bottom:hover {
  border: none;
  color: #1A1313;
}

.full-article .related-posts-container h3 {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.full-article .related-posts-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.full-article .related-posts-list {
  display: flex;
  overflow: hidden;
  width: 80%;
  scroll-behavior: smooth;
}

.full-article .related-post {
  min-width: 200px;
  max-width: 200px;
  margin-right: 10px;
  text-align: center;
  background: #ebd8c8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.full-article .related-post-card {
  text-decoration: none;
  color: black;
  display: block;
}

.full-article .related-post-img {
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.full-article .related-post-info {
  padding: 10px;
}

.full-article .related-post-info h4 {
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.full-article .related-post-date{
  font-size: 14px;
  color: #4f4f4f;
}

.full-article .nav-prev, .nav-next {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}


/* <!-- sorted-List start --> */

.sorted-list{
  padding-top: 80px;
  padding-bottom: 50px;
  background: #ebd8c8;
}

.sorted-list .container{
  max-width: 670px;
  width: 90%;
}

.sorted-list .sorted-title {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
  color: #8B4513;
  background-color:  #ffffffb8;
  padding: 10px;
  border-radius: 5px;
  line-height: 1.3;
}


.sorted-list .feed-grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}

.sorted-list .feed-card{
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  border-bottom: 1px solid rgba(58, 58, 58, 0.45);
}

.sorted-list .feed-img{
  height: 220px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  transition: 0.3s;
  border-radius: 8px;
}

.sorted-list .feed-img:hover{
  filter: brightness(1.1);
}

.sorted-list .feed-card h3{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  word-break: normal;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* maximum line limit */
  overflow: hidden;
  text-overflow: ellipsis;
}

.sorted-list .feed-card p{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  word-break: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* maximum line limit */
  overflow: hidden;
  text-overflow: ellipsis;
}

.sorted-list .feed-card a{
  list-style: none;
  text-decoration: none;
  transition: 0.3s;
  color: #1A1313;
}

.sorted-list .feed-card a:hover{
  color: #252525;
}

.sorted-list .card-detail{
  flex-grow: 1;
  display: flex;
}

.sorted-list .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
  margin-top: auto;
  padding: 10px 0;
  /* border-top: 1px solid #ddd; */
}

.sorted-list .share-button {
  background: none;
  border: none;
}

.sorted-list .share-button i {
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  color: #1A1313;
  transition: 0.3s;
}

.sorted-list .share-button:hover i {
  color: #F15412;
  transform: scale(1.1);
}

.sorted-list .post-date {
  font-size: 12px;
  color: #555;
}

/* <!-- post-menu-list start --> */

.post-menu-list{
  padding-top: 30px;
  padding-bottom: 50px;
  background-color: #ebd8c8;
}

.post-menu-list .container{
  max-width: 670px;
  width: 90%;
}

.post-menu-list .feed-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.post-menu-list .feed-card{
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  background: #ebd8c8;
  border-bottom: 1px solid rgba(58, 58, 58, 0.45);
}

.post-menu-list .feed-img{
  height: 180px;
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  transition: 0.3s;
  border-radius: 8px;
}

.post-menu-list .feed-img:hover{
  filter: brightness(1.1);
}

.post-menu-list .feed-card h3{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  word-break: normal;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* maximum line limit */
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-menu-list .feed-card p{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  word-break: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* maximum line limit */
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-menu-list .feed-card a{
  list-style: none;
  text-decoration: none;
  color: #1A1313;
}

.post-menu-list .card-detail{
  flex-grow: 1;
  display: flex;
}

.post-menu-list .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
  margin-top: auto;
  padding: 10px 0;
  /* border-top: 1px solid #ddd; */
}

.post-menu-list .share-button {
  background: none;
  border: none;
}

.post-menu-list .share-button i {
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  color: #1A1313;
  transition: 0.3s;
}

.post-menu-list .share-button:hover i {
  color: #F15412;
  transform: scale(1.1);
}

.post-menu-list .post-date {
  font-size: 12px;
  color: #555;
}

/* page-page start */


/* Hero Section */
.contact-hero {
  background: url(https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  padding-bottom: 50px;
  text-align: center;
  color: #FFFAE5;
}

.contact-hero .container{
  max-width: 670px;
  width: 90%;
}

.contact-hero h1 {
  font-size: 36px;
  font-weight: bold;
}

.contact-hero p {
  font-size: 14px;
  margin-top: 10px;
  color: #e8e8e8;
}

/* Contact Info Section */


.contact-info .container{
  max-width: 670px;
  width: 90%;
}

.contact-content {
  display: flex;
  gap: 25px;
  margin: 0 auto;
}

/* Left Side: Contact Image */
.contact-image {
  background: url(https://images.unsplash.com/photo-1474403078171-7f199e9d1335?q=80&w=2071&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  width: 50%;
  height: 220px;
}

/* Right Side: Contact Details */
.contact-details {
  text-align: left;
  width: 50%;
}

.contact-details h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #333;
}

.contact-subtext {
  font-size: 15px;
  line-height: 1.3;
  color: #555;
  margin-bottom: 20px;
}

.contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1A1313;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.contact-item i {
  font-size: 20px;
}

.contact-item:hover {
  background: #D9430D;
  transform: scale(1.05);
}

.contact-other {
  text-align: left;
  padding: 40px 0;
  background: #f8f5f2;
  margin: 20px 0;
}

.contact-other .long-bar{
  width: 100%;
  height: 3px;
  background-color: #e8c4a6;
  margin: 30px 0;
}

.contact-other .container {
  max-width: 670px;
  width: 90%;
}

.contact-other h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.contact-other p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.email-button {
  border: none;
  cursor: pointer;
}



/* RESPONSIVE / MEDIA QUERIES*/
@media only screen and (max-width: 1110px) {

}

@media only screen and (max-width: 990px) {
  .hero{
    padding-top: 75px;
    padding-bottom: 20px;
  }
  /* <!-- section-feed start --> */
  .section-feed .feed-card{
    min-height: 50px;
  }
  
  .section-feed .feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-feed .feed-img {
    height: 150px;
  }


}

@media only screen and (max-width: 765px) {
  .hero{
    padding-bottom: 20px;
  }

  .hero .visitor-stats{
    margin-bottom: 5px;
  }

  .hero h1{
    font-size: 35px;
  }
  
  .hero-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 5px;
  }

  .right-menu {
    /* width: 100%; */
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .section-feed .feed-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  /* <!-- post-menu-list start --> */

  .post-menu-list .feed-grid{
    grid-template-columns: repeat(2, 1fr);
    /* grid-gap: 20px; */
  }

  /* Style for single.php */

  .full-article h2{
    font-size: 35px;
    margin-bottom: 15px;
  }

  .full-article .post-content h2{
    font-size: 25px;
    margin: 20px 0;
  }


  .full-article .post-flex{
    margin-bottom: 20px;
  }

  .full-article .post-content{
    line-height: 1.7;
    max-width: 100%;
    margin-top: 20px;
  }

  .full-article .post-content img{
    height: auto;
    background-size: cover;
    background-position: center;
  }

  .full-article .post-img {
    min-height: 350px;
  }

  /* Contact Info Section */

  .contact-hero {
    padding-top: 70px;
    padding-bottom: 40px;
  }
  
  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-content {
    display: flex;
    gap: 15px;
    /* margin: 0 auto; */
  }

  /* Left Side: Contact Image */
  .contact-image {
    width: 40%;
    height: 190px;
    margin-bottom: 10px;
  }

  /* Right Side: Contact Details */
  .contact-details {
    text-align: left;
    width: 60%;
  }

  /* .contact-details h2 {
    margin-bottom: 5px;
  }

  .contact-subtext {
    font-size: 14px;
    margin-bottom: 15px;
  } */

}

@media only screen and (max-width: 670px) {
  .contact-info {
    padding: 40px 0;
  }

  .contact-content {
    flex-direction: column;
    gap: 5px;

    /* margin: 0 auto; */
  }

  /* Left Side: Contact Image */
  .contact-image {
    width: 100%;
    height: 150px;
  }

  /* Right Side: Contact Details */
  .contact-details {
    text-align: left;
    width: 100%;
    text-align: center;
  }

  .contact-details h2 {
    margin-bottom: 15px;
    margin-bottom: 0px;
  }

  /* single page */

  .full-article .post-img {
    min-height: 300px;
  }

}

@media only screen and (max-width: 650px) {


  /* <!-- sorted-List start --> */


  /* Style for single.php */

  .full-article p{
    font-size: 15px;
  }

  .full-article .post-content h2{
    font-size: 22px;
    margin: 15px 0;
  }

  .full-article .post-flex{
    margin-bottom: 15px;
  }

  /* Style for page-contact.php */
  
  .contact-icons {
    justify-content: center;
  }

}

@media only screen and (max-width: 565px) {
  header{
      padding: 10px 0px;
  }

  .header-flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .right-menu {
      /* width: 100%; */
      display: flex;
      gap: 10px;
      align-items: center;
  }

  /* hero */
  
  .hero .visitor-stats {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  .hero h1{
    font-size: 35px;
    margin-bottom: 5px;
  }
  
  .hero-logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
  }

  /* <!-- section-feed start --> */

  .section-feed .container{
    width: 95%;
  }

  .section-feed .feed-img{
    /* height: 180px; */
    margin-bottom: 7px;
  }
  
  .section-feed .feed-card h3{
    font-size: 17px;
  }

  /* <!-- post-menu-list start --> */

  .post-menu-list .container{
    width: 95%;
  }

  .post-menu-list .feed-img{
    /* height: 180px; */
    margin-bottom: 7px;
  }
  
  .post-menu-list .feed-card h3{
    font-size: 17px;
  }
  
  /* <!-- single page start --> */


  .full-article .post-img {
    min-height: 280px;
  }

  /* <!-- sorted-List start --> */


  /* Style for single.php */

  .full-article h2{
    font-size: 30px;
    margin-bottom: 10px;
  }

  .full-article .post-content h3{
    font-size: 22px;
    margin-bottom: 10px;
  }

  .full-article .post-flex{
    margin-bottom: 15px;
  }

  .full-article .post-content img{
    height: auto;
    background-size: cover;
    background-position: center;
  }

}

@media only screen and (max-width: 465px) {

  /* <!-- section-feed start --> */

  .post-menu-list .feed-img{
    height: 150px;
  }

  .section-feed .feed-img{
    height: 150px;
  }

  /* Style for single.php */

  .full-article .post-img {
    min-height: 250px;
  }
}

@media only screen and (max-width: 370px) {
  /* <!-- section-feed start --> */

  .post-menu-list .feed-img{
    height: 130px;
  }

  .section-feed .feed-img{
    height: 130px;
  }
}