/*
Theme Name: Carkey Locksmith Theme
Theme URI: http://yourdomain.com
Author: Your Name
Author URI: http://yourdomain.com
Description: Custom locksmith WordPress theme for Carkey Locksmith
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: carkey-locksmith
Tags: custom, locksmith, business, responsive
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.site-header {
    background-color: #0a3d62;
    padding: 20px 0;
    border-bottom: 4px solid #ffa502;
    text-align: center;
}

.site-header a {
    color: #ffa502;
    font-weight: bold;
    font-size: 1.8em;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.main-navigation {
    margin-top: 10px;
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-flex;
    gap: 30px;
}

.main-navigation a {
    color: #ffa502;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: #ff793f;
}

.hero-banner {
    background: url('https://images.unsplash.com/photo-1561414927-fc4bfcd41743?auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    padding: 120px 20px;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-banner h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
    font-weight: 900;
}

.hero-banner p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 1.5em auto;
}

.btn-primary {
    background-color: #ffa502;
    color: #0a3d62;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #ff793f;
    color: #fff;
}

.site-footer {
    background-color: #0a3d62;
    color: #ffa502;
    padding: 25px 20px;
    text-align: center;
    font-size: 0.9em;
    margin-top: 40px;
}