/*
Theme Name: FluentContactCleaner
Theme URI: https://plugins.soundtraker.com/
Author: Fluent Contact
Author URI: https://plugins.soundtraker.com/
Description: Tags contacts based on defined rules.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: responsive, custom-theme
Text Domain: fluent-contact-cleaner
*/

/* ============================= */
/* 1. RESET & GLOBAL STYLES      */
/* ============================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* ============================= */
  /* 2. GLOBAL CONTAINER           */
  /* ============================= */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ============================= */
  /* 3. HEADER & NAVIGATION        */
  /* ============================= */
  header {
    background: #f8f8f8;
    padding: 20px 0;
  }
  header .logo {
    font-size: 1.8em;
    font-weight: 700;
  }
  nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-start;
  }
  nav ul li {
    margin-left: 20px;
  }
  nav ul li a {
    color: #333;
    font-weight: 500;
  }
  
  /* ============================= */
  /* 4. HERO SECTION               */
  /* ============================= */
  .hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2c3e50;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    height: 40vh;
  }
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  .hero .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
  }
  .hero p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  
  /* ============================= */
  /* 5. BUTTONS                    */
  /* ============================= */
  .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s ease;
    background: #8c27ae;
    color: #fff;
  }
  .btn:hover {
    opacity: 0.9;
  }
  .btn:visited {
    color: #fff;
  }
  
  /* ============================= */
  /* 6. GENERAL SECTION STYLES      */
  /* ============================= */
  section {
    padding: 60px 0;
  }
  .section-inner {
    width: 100%;
    padding: 0 20px;
    text-align: center;
  }
  .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
    font-weight: 700;
  }
  
  /* ============================= */
  /* 7. FEATURES SECTION           */
  /* ============================= */
  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .feature-item {
    flex: 1 1 250px;
    max-width: 350px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
  }
  .feature-item:hover {
    transform: translateY(-5px);
  }
  .feature-icon {
    margin-bottom: 15px;
  }
  .feature-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  .feature-item p {
    font-size: 1em;
    color: #555;
  }
  
  /* ============================= */
  /* 8. PRICING SECTION            */
  /* ============================= */
  #pricing {
    background: #f0f0f0;
    text-align: center;
    padding: 40px 20px;
    border-radius: 5px;
    margin: 0 auto;
  }
  .pricing-box {
    display: inline-block;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  .pricing-box h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
  }
  .pricing-box p {
    font-size: 1em;
    color: #555;
  }
  
  /* ============================= */
  /* 9. DOWNLOAD/CTA SECTION       */
  /* ============================= */
  #download {
    background: #2d2d2d;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    border-radius: 5px;
  }
  #download h2 {
    font-size: 2.4em;
    margin-bottom: 20px;
  }
  #download p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  #download .btn {
    background: #8c27ae;
    color: #fff;
  }
  
  /* ============================= */
  /* 10. HOW IT WORKS SECTION      */
  /* ============================= */
  #how-it-works {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 5px;
  }
  .how-it-works-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }
  .how-it-works-list li {
    background: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 5px solid #8c27ae;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    font-size: 1em;
    line-height: 1.5;
  }
  .how-it-works-list li strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
  }
  
  /* ============================= */
  /* 11. CONTACT SECTION           */
  /* ============================= */
  #contact {
    text-align: center;
    padding: 40px 20px;
  }
  #contact a {
    color: #0073aa;
    transition: color 0.3s ease;
  }
  #contact a:hover {
    color: #005177;
  }
  
  /* ============================= */
  /* 12. FOOTER                    */
  /* ============================= */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  footer p {
    font-size: 0.9em;
  }
  
  /* ============================= */
  /* 13. MAIN CONTENT & BREADCRUMB   */
  /* ============================= */
  #main-content.container {
    padding: 20px;
  }
  .breadcrumb {
    margin: 20px 0;
    font-size: 0.9em;
    text-align: left;
  }
  .breadcrumb a {
    color: #0073aa;
    text-decoration: none;
  }
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  
  /* ============================= */
  /* 14. BLOG POSTS & SINGLE POST  */
  /* ============================= */
  .blog-posts article {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  .entry-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .entry-title {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  .entry-header .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .entry-header .entry-title a:hover {
    color: #ff6b6b;
    text-decoration: underline;
  }
  .entry-meta {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 10px;
  }
  .entry-content {
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 40px;
  }
  .read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 20px;
  }
  .read-more:hover {
    color: #005177;
    text-decoration: underline;
  }
  .post-navigation {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
  .nav-label {
    font-weight: bold;
  }
  .nav-title {
    font-style: italic;
  }
  
  /* ============================= */
  /* 15. PAGINATION                */
  /* ============================= */
  .pagination {
    text-align: center;
    margin: 40px 0;
  }
  .pagination a {
    color: #0073aa;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 2px;
    transition: background 0.3s ease;
  }
  .pagination a:hover {
    background: #f7f7f7;
  }
  
  /* ============================= */
  /* 16. RESPONSIVE                */
  /* ============================= */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
    }
    nav ul li {
      margin: 10px 0;
      padding-right: 20px;
    }
    .hero h1 {
      font-size: 2.2em;
    }
    .features {
      flex-direction: column;
      align-items: center;
    }
    .hero {
      height: 50vh;
    }
    .btn {
      display: flex;
      justify-content: center;
    }
  }