/*
 Theme Name: FindWhatsClose
 Theme URI: https://findwhatsclose.com/
 Author: xAI Developer
 Author URI: https://x.ai/
 Description: A minimal custom WordPress theme for Find What's Close, designed as a blank canvas for future development.
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: findwhatsclose
 Tags: custom-theme, minimal
*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f9fafb; /* Light gray background for contrast */
}

header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://findwhatsclose.com/wp-content/uploads/2019/03/House.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

header h1 a {
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

footer {
    background-color: #1f2937; /* Dark gray for footer */
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}