/*
Theme Name: Tool Quicker PDF Tools
Author: Helper GD Converted
Version: 1.0
*/

/*
-----------------------------------------------
Blogger Template Style
Name:        Custom Theme
Version:     1.1.9.V
Designed by:      Helper GD
Developer Url:  https://www.youtube.com/c/helpergdofficial
Instagram:      @helpergd_yt
----------------------------------------------- */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html{
scroll-behavior: smooth;
background: linear-gradient(45deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 86%, rgba(255, 182, 193, 1) 100%);
}
body {
font-family: 'poppins', sans-serif;
}

/* Intro text section */
.intro-text {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
}
.intro-text h2 {
  font-size: 33px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}
.intro-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Tools Grid section */



.pdf-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  max-width: 100%;
  margin: auto;
}

.tool-box {
  border: 1px solid #d1c3c3;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  text-decoration: none;
  color: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: start;
  min-height: 240px;
}

.tool-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.tool-box img {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.tool-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222;
}

.tool-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* PDF Filters Styles */
.pdf-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 30px auto;
  padding: 0 20px;
  max-width: 900px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #e0e0e0;
}

.filter-btn.active {
  background: #4285f4;
  color: white;
  border-color: #4285f4;
}

/* For the filter buttons version */
.filter-btn {
  font-weight: bold;
}

/* OR if you're using plain text filters */
.pdf-filters {
  font-weight: bold;
}
