
/*
Theme Name: Hair It Is
Theme URI: https://hairitis.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A modern barbershop theme with flexible header/footer and customization options.
Version: 1.0
License: GPL2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hair-it-is
*/

/* Basic Styles */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #ddd;
}

header {
    background-color: #000;
    color: gold;
    padding: 1rem;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2px;
}

/* Header navigation and logo */
header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

nav {
    background: #222;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    color: gold;
}

/* Footer */
footer {
    background: #000;
    color: #666;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Service and other sections */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.service {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid gold;
}
