/*
Theme Name: Starter CMO
Theme URI: https://sujonkumardey.com
Author: Sujon Kumar Dey
Author URI: https://sujonkumardey.com
Description: A mostly static custom WordPress theme with dynamic blog functionality.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: startercmo
*/



/* common css start */
.brand-bg-color{
    background-color: #d500ff!important;
}

.brand-text-color{
    color: #d500ff!important;
}
.nav-link:hover{
    color: #d500ff!important;
}

.brand-btn-bg{
    background-color: #6528f7!important;
}

.brand-btn-bg:hover{
    background-color: #fff!important;
    color: #000!important;
}

body{
      font-family: "Poppins", sans-serif;
}


/* common css end */

/* navbar humberger css start */
.navbar-toggler {
  border-color: white; /* optional */
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background-color: white;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: white;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}
/* navbar humberger css start */

/* ===== FOOTER SECTION START ===== */

.footer-section {
  background: #f3f3f7;
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 50px;
}

/* Logo */
.footer-logo img {
  max-width: 160px;
}

/* Text */
.footer-text {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555b6e;
}

/* Right Side */
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #1a1d2e;
}

.footer-contact {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555b6e;
  margin-bottom: 20px;
}

/* Social */
.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ccc;
  color: #555;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social .social-icon:hover {
  border-color: #0077b5;
  color: #0077b5;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 20px 0;
  font-size: 0.85rem;
  color: #777;
}

/* Tablet */
@media (max-width: 991.98px) {
  .footer-section {
    padding-top: 60px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .footer-left,
  .footer-right {
    text-align: center;
  }

  .footer-text {
    margin: 0 auto;
  }

  .footer-contact {
    margin-bottom: 16px;
  }
}

/* ===== FOOTER SECTION END ===== */



/* =========================
   BLOG INDEX PAGE
========================= */

.startercmo-blog-page {
    background: #eeedf7;
    min-height: 100vh;
    padding: 40px 0 80px;
}



.blog-hero {
    text-align: center;
    margin-bottom: 90px;
}

.blog-hero h1 {
    max-width: 1450px;
    margin: 0 auto;
    font-size: 72px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #4a5568;
}

.blog-listing {
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 460px));
    gap: 40px;
    justify-content: start;
}

.blog-card {
    background: #f9f9fa;
    border: 1px solid #d9d9df;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.blog-card-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 22px 18px 18px;
}

.blog-card-title {
    font-size: 28px;
    line-height: 1.22;
    font-weight: 700;
    margin: 0 0 18px;
}

.blog-card-title a {
    color: #182033;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #111827;
}

.blog-card-excerpt {
    font-size: 20px;
    line-height: 1.8;
    color: #5d6575;
    margin-bottom: 18px;
}

.blog-card-excerpt p {
    margin: 0;
}

.blog-read-more {
    display: inline-block;
    border: 1px solid #d4d4d8;
    background: transparent;
    color: #222;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
}

.blog-read-more:hover {
    background: #182033;
    color: #fff;
    border-color: #182033;
}

.blog-card-meta {
    border-top: 1px solid #d9d9df;
    padding: 18px;
    color: #6b6b6b;
    font-size: 16px;
    line-height: 1.45;
}

.blog-card-meta .meta-item {
    display: inline-block;
    margin-right: 14px;
    margin-bottom: 8px;
}

.blog-card-meta i {
    margin-right: 6px;
}

.blog-card-meta a {
    color: #6b6b6b;
    text-decoration: none;
}

.blog-card-meta a:hover {
    color: #182033;
}

.blog-pagination {
    margin-top: 50px;
}

.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #d4d4d8;
    background: #fff;
    color: #222;
    text-decoration: none;
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: #182033;
    color: #fff;
    border-color: #182033;
}

.no-posts-found {
    padding: 40px 0;
}

.no-posts-found h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #182033;
}

.no-posts-found p {
    font-size: 18px;
    color: #5d6575;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1400px) {
    .blog-hero h1 {
        font-size: 58px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(300px, 460px));
    }
}

@media (max-width: 991px) {
    

    .blog-hero {
        margin-bottom: 50px;
    }

    .blog-hero h1 {
        font-size: 42px;
        line-height: 1.2;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-title {
        font-size: 24px;
    }

    .blog-card-excerpt {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .startercmo-blog-page {
        padding: 25px 0 50px;
    }

    .blog-hero h1 {
        font-size: 34px;
    }

    .blog-card-content,
    .blog-card-meta {
        padding: 16px;
    }

    .blog-card-title {
        font-size: 22px;
    }

    .blog-card-excerpt {
        font-size: 16px;
        line-height: 1.7;
    }

    .blog-read-more {
        padding: 12px 20px;
        font-size: 15px;
    }

    .blog-card-meta {
        font-size: 15px;
    }
}

/* index.php css  */
/* =========== */




/* single.php css */

/* =========================
   SINGLE POST PAGE
========================= */

.startercmo-single-page {
    background: #eeedf7;
    padding: 50px 0 80px;
}


.single-article {
    color: #1f2937;
}

.single-hero {
    margin-bottom: 40px;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #6b7280;
}

.single-meta .meta-item a {
    color: #6b7280;
    text-decoration: none;
}

.single-meta .meta-item a:hover {
    color: #111827;
}

.single-title {
    font-size: 54px;
    line-height: 1.12;
    font-weight: 700;
    color: #374151;
    margin: 0 0 28px;
    max-width: 980px;
}

.single-featured-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 320px;
    gap: 40px;
    align-items: start;
}

.single-content-area {
    background: #f9f9fa;
    border: 1px solid #d9d9df;
    border-radius: 10px;
    padding: 30px;
}

.single-content {
    font-size: 19px;
    line-height: 1.9;
    color: #4b5563;
}

.single-content p {
    margin-bottom: 22px;
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    color: #182033;
    line-height: 1.3;
    margin: 34px 0 16px;
    font-weight: 700;
}

.single-content h2 {
    font-size: 34px;
}

.single-content h3 {
    font-size: 28px;
}

.single-content ul,
.single-content ol {
    margin: 0 0 22px 24px;
}

.single-content li {
    margin-bottom: 10px;
}

.single-content a {
    color: #182033;
    text-decoration: underline;
}

.single-content blockquote {
    border-left: 4px solid #182033;
    padding: 12px 0 12px 20px;
    margin: 28px 0;
    color: #374151;
    font-size: 22px;
    line-height: 1.7;
}

.single-content img {
    border-radius: 8px;
    margin: 24px 0;
    height: auto;
}

.single-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.single-content table th,
.single-content table td {
    border: 1px solid #d9d9df;
    padding: 12px;
    text-align: left;
}

.single-content code {
    background: #ececf3;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.95em;
}

.single-content pre {
    background: #1f2937;
    color: #fff;
    padding: 18px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
}

.single-footer-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #d9d9df;
}

.single-tags {
    font-size: 15px;
    color: #6b7280;
}

.single-tags a {
    color: #182033;
    text-decoration: none;
}

.single-tags a:hover {
    text-decoration: underline;
}

.tag-label {
    font-weight: 600;
    color: #374151;
}

.single-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #d9d9df;
}

.single-post-nav a {
    color: #182033;
    text-decoration: none;
    font-weight: 600;
}

.single-post-nav a:hover {
    text-decoration: underline;
}

.single-sidebar .sidebar-widget {
    background: #f9f9fa;
    border: 1px solid #d9d9df;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.single-sidebar .widget-title {
    font-size: 20px;
    margin-bottom: 14px;
    color: #182033;
}

.page-links {
    margin-top: 25px;
    font-weight: 600;
}

.comments-area {
    margin-top: 40px;
    background: #f9f9fa;
    border: 1px solid #d9d9df;
    border-radius: 10px;
    padding: 30px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .single-title {
        font-size: 40px;
    }

    .single-layout {
        grid-template-columns: 1fr;
    }

    .single-content-area {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .startercmo-single-page {
        padding: 30px 0 50px;
    }

    .single-title {
        font-size: 30px;
    }

    .single-content {
        font-size: 17px;
        line-height: 1.8;
    }

    .single-content h2 {
        font-size: 28px;
    }

    .single-content h3 {
        font-size: 24px;
    }

    .single-post-nav {
        flex-direction: column;
    }
}


.site-main {
    padding: 0;
    margin: 0;
}

