/*
Theme Name: Free Online Tools
Theme URI: https://yourwebsite.com
Author: Mohammad Rahim
Description: Modern tools WordPress theme with Text Counter, Password Generator and QR Generator.
Version: 1.0
*/

*{margin:0;padding:0;box-sizing:border-box;}
body{
    font-family:'Segoe UI',sans-serif;
    background:#f4f6f9;
    color:#333;
}

/* HEADER */
.site-header{
    background:#111827;
    color:white;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.site-header a{
    color:white;
    text-decoration:none;
    margin-left:20px;
}

/* HERO */
.hero{
    background:linear-gradient(135deg,#2563eb,#0ea5e9);
    color:white;
    padding:60px 20px;
    text-align:center;
}

/* TOOL CARDS */
.tools{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    padding:40px 20px;
}
.card{
    background:white;
    width:300px;
    padding:20px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    text-align:center;
}
.card button{
    margin-top:15px;
    padding:10px 20px;
    border:none;
    border-radius:6px;
    background:#2563eb;
    color:white;
    cursor:pointer;
}

.tool-section{
    display:none;
    padding:40px 20px;
    max-width:800px;
    margin:auto;
}
textarea,input{
    width:100%;
    padding:12px;
    border-radius:8px;
    border:1px solid #ddd;
    margin-top:10px;
}
.result{
    margin-top:15px;
    background:#eef2ff;
    padding:10px;
    border-radius:6px;
}

.site-footer{
    background:#111827;
    color:white;
    padding:30px;
    text-align:center;
    margin-top:50px;
}