/* Logo style */
.logo {
  height: 110px;
  width: auto;
  display: block;
  margin: 2px auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}


* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: #f5f5f5;
}

.hero h1 {
    font-size: 2.5rem;
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff533d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tools-section {
    padding: 2rem 1rem;
    max-width: 960px;
    margin: auto;
}

.tools-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.tool-card {
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
}

.tool-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.tool-card p {
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ff533d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.placeholder {
    background: #fafafa;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
}

.about {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 640px;
    margin: auto;
}

footer.footer {
  background: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  padding: 1rem;
  border-top: 3px solid var(--primary);
}

.footer .heart {
  color: var(--primary);
}

.footer-made,
.footer-copy {
  margin: 0.25rem 0;
}

.footer-links {
  margin: 0.5rem 0;
}

.footer-links a {
  color: inherit;
  margin: 0 0.25rem;
  text-decoration: none;
}

@media (prefers-color-scheme: dark) {
    body {
        color: #ddd;
        background: #121212;
    }

    .hero {
        background: #1e1e1e;
    }

    .btn {
        background: #fff;
        color: #000;
    }

    .tool-card {
        border-color: #333;
    }

    .btn-small {
        background: #3498db;
    }

    .footer {
        background: #1e1e1e;
    }
}
