/*
Theme Name: My Blank Theme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A blank WordPress theme for custom development
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
 font-family: 'Roboto', sans-serif;
}

/* Main Layout */
.container { 
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-area {
  flex: 1;
}

 .Looking-section {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* min-height: 80vh; */
    padding: 50px 20px;
    background-color: #f1f9f5;
    gap: 50px;
  }
  
  .Looking-content h1 {
    color: #0c8b51;
    font-size: 50px;
    line-height: 52px;
    margin-bottom: 20px;
  }
  
  .Looking-content p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 24px;
    font-family: inherit;
    max-width: 600px;
  }
  
  .Looking-image {
    text-align: start;
  }
  
  .Looking-image img {
    width: 100%;
    height: auto;
  }
  @media (max-width: 1024px) {
    .Looking-section {
      flex-direction: row;
      text-align: center;
    }
  
    .Looking-content h1 {
      font-size: 40px;
      line-height: 44px;
      text-align: start;
    }
  
    .Looking-content p {
      font-size: 16px;
      text-align: start;
    }
  }
  
  @media (max-width: 768px) {
    .Looking-section {
      flex-direction: column;
      text-align: center;
    }
    .Looking-content h1 {
      font-size: 36px;
      line-height: 40px;
    }
  
    .Looking-content p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .Looking-content h1 {
      font-size: 28px;
      line-height: 32px;
    }
  
    .Looking-content p {
      font-size: 14px;
    }
  
    .Looking-section {
      padding: 30px 15px;
      min-height: auto;
    }
  }
  
/* Blog Section */
.blog-header-section {
  text-align: center;
  padding: 40px 20px 10px;
}

.blog-heading {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin-bottom: 20px;
}

/* Main Content Layout */
.main-content-wrapper {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 30px 0;
  flex: 3;
  height: 100%;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
 box-shadow: 0 2px 5px rgb(0 0 0 / 61%);
  transition: transform 0.3s ease;
  border: 1px solid rgba(44, 26, 78, 0.15);

}

.blog-card:hover {
  transform: translateY(-5px);
}
/* .post {
  height: fit-content;
} */
.blog-thumbnail img {
width: 100%;
    max-width: 93%;
    height: 300px;
    object-fit: cover;
    display: block;
    padding: 20px;
    border-radius: 15px;
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 27px;
  font-weight: 600;
  color: #000;
  margin: 0 0 10px;
}

.blog-excerpt {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.blog-pagination {
  text-align: center;
  margin: 40px 0;
}

.no-posts {
  text-align: center;
  color: #999;
  padding: 20px;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card a:hover {
  text-decoration: none;
}

/* Sidebar Styling */
.sidebar {
  flex: 1;
  padding: 20px;
  background: #ffff;
  border-radius: 8px;
box-shadow: 0 2px 5px rgb(0 0 0 / 61%);
  margin-left: 30px;
  max-width: 400px;
  height: 100%;
}

.sidebar h2 {
  font-size: 27px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eaeaea;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eaeaea;
/* 	display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    color: #4A4C51;
    background-color: #F4F4F6;
    padding: 7px 20px;
    transition: 400ms; */
}

.sidebar ul li:last-child {
  border-bottom: none;
}

.sidebar ul li a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
     font-size: 19px;
    font-weight: 700;
}

.sidebar ul li a:hover {
  color: #000;
}

.search-form {
  margin-bottom: 20px;
}

.search-form input[type="text"] {
  width: 100%;
	max-width: 90%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.search-form button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  font-size: 14px;
}

.recent-posts-list li {
  margin-bottom: 15px;
}

.recent-comments li {
  font-size: 14px;
}

.entry-content1 img {
  height: auto;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

.nav-links a {
  text-decoration: none;
  font-size: 16px;
  background: #f1f1f1;
  padding: 8px 15px;
  border-radius: 4px;
  margin: 0 5px;
  color: #333;
}

.nav-links a:hover {
  background: #ddd;
}

/* Search form styles */
.sidebar .search-form {
    display: flex;
    margin-bottom: 20px;
}

.sidebar .search-form form {
    display: flex;
    width: 100%;
}

.sidebar .search-form input[type="search"] {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
}

.sidebar .search-form input[type="submit"] {
    background-color: #0c8b51;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}




/* Media Queries */
@media (max-width: 1024px) {
  .main-content-wrapper {
    flex-direction: column;
  }
  
  .sidebar {
           margin-left: 0;
        margin-top: 30px;
        width: 100%;
        max-width: 900px;
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .Looking-section {
    flex-direction: column;
    padding: 20px;
  }
	.sidebar{
		max-width:670px;
	}
  .Looking-content {
    padding-right: 0;
    margin-bottom: 20px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .blog-thumbnail img {
  
    width: 95%;
  }
  
  .blog-content {
    padding: 15px;
  }
  
  .blog-title {
    font-size: 18px;
  }
  
  .blog-excerpt {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .blog-header-section {
    padding: 30px 10px 5px;
  }
  
  .blog-heading {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .blog-grid {
    padding: 10px 0;
    gap: 20px;
  }
  
  .blog-card {
    flex-direction: column;
  }
  
  .blog-content {
    padding: 10px;
  }
  
  .blog-title {
    font-size: 16px;
  }
  
  .blog-excerpt {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .blog-thumbnail img {
    max-width: 90%;
    height: auto;
  }
}

@media (max-width: 425px) {
  .blog-header-section {
    padding: 25px 10px 5px;
  }
  
  .blog-heading {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .blog-grid {
    padding: 10px 0;
    gap: 16px;
  }
	.sidebar{
		max-width:340px;
	}
  .blog-card {
    flex-direction: column;
    border-radius: 6px;
  }
  
  .blog-thumbnail img {
    width: 90%;
    height: auto;
    display: block;
  }
  
  .blog-content {
    padding: 10px;
  }
  
  .blog-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  
  .blog-excerpt {
    font-size: 13px;
    line-height: 1.5;
  }
  
  .blog-pagination {
    margin: 30px 0;
  }
  
  .entry-content1 img {
    height: auto;
    width: 100%;
  }

}



/* Comments Section Styling */
.comments-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

/* Comment Form */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
	    max-width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.comment-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.comment-form input[type="submit"]:hover {
    background-color: #005177;
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
	gap:10px;
}

.comment-author img {
      margin-right: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

/* Sidebar Recent Comments */
.recent-comments {
    list-style: none;
    padding: 0;
}

.comment-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.author-name {
    margin-left: 5px;
    font-weight: bold;
}

.comment-excerpt {
    margin-bottom: 5px;
    font-style: italic;
	margin-left: 50px;
}

.comment-post {
    font-size: 0.9em;
    color: #666;
	margin-left: 50px;
}

.tag-cloud-link {
	    display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    color: #4A4C51;
    background-color: #F4F4F6;
    padding: 7px 20px;
    transition: 400ms;
}
.post-title {
	    font-family: inherit;
	font-size:18px;
}
.post-title a {
	text-decoration:none;
	color:#000;
}
.attachment-thumbnail {
	    width: 100%;
    border-radius: 20px;
	margin-bottom:30px !important;
}

.recent-post-item .post-title {
	margin:5px 0 !important;
}

.recent-post-item .post-meta {
	margin-bottom:15px !important;
}
.attachment-medium {
	margin-bottom:20px;
}
@media (max-width: 375px) {
    .sidebar {
        max-width: 300px;
    }
}