/* css/home.css */
body {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container header {
    text-align: center;
    padding: 20px 0;
    background-color: #33A6A6; /* Lighter Teal */
    color: white;
}

.container header h1 {
    margin-bottom: 5px;
}

/* Styles for the main application logo image */
.app-logo-img {
    width: 60px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
    margin-top: 10px;
    margin-bottom: 15px;
    border: 2px solid white; /* Add a white border */
    border-radius: 10px; /* Add rounded corners */
}

.app-explanation {
    font-size: 0.9em;
    color: #f0f0f0; /* Light text on teal background */
    max-width: 700px; /* Constrain width for readability */
    margin: 0 auto; /* Center the block */
    padding: 0 15px; /* Add some horizontal padding */
}

.app-explanation p {
    margin-bottom: 10px;
}

.header-disclaimer {
    font-size: 0.8em;
    opacity: 0.85; /* Make it slightly less prominent */
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
}

.tool-item {
    background-color: white;
    background-color: #33A6A6; /* Teal background */
    color: white; /* White text for items */
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.2s;
}

.tool-item:hover {
    transform: translateY(-5px);
}

.tool-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border: 2px solid white; /* White rounded border for tool images */
    border-radius: 10px;     /* Rounded corners for the border */
    background-color: rgba(255, 255, 255, 0.1); /* Optional: slight white background for transparent parts of SVGs */
}

.tool-item span {
    display: block;
    font-size: 0.9em;
    color: white; /* Ensure span text is white */
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    color: #666;
}