/*
Theme Name: Convertor Tools Theme
Theme URI: http://example.com/convertor-tools-theme
Author: Your Name
Author URI: http://iankush.com
Description: A custom theme for convertor tools.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, convertor-tools
Text Domain: convertor-tools-theme
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url('images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header h1 {
    font-size: 3em;
    color: #000;
}

section h2 {
    font-size: 2em;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.divider {
    border: none;
    height: 3px;
    background-color: #000;
    margin-bottom: 20px;
}

.emboss-card {
    background-color: #fff;
    border: 5px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 0px #000;
    transition: transform 0.3s;
}

.emboss-card:hover {
    transform: translateY(-5px);
}

.emboss-card .card-body {
    padding: 0;
    padding-top: 1em;
    padding-bottom: 3em;
    position: relative;
}

.icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #281d7e;
    /* Pantone color tone, you can change this color for different tools */
}

.card-text-gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(30, 134, 143, 0.7) 0 10%, rgb(255, 255, 255));
    padding: 10px 0;
}

.card-text-gradient p {
    margin: 0;
    font-weight: bold;
    font-size: 1.2em;
    color: #fff;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .emboss-card {
        width: 100%;
    }
}