/*
Theme Name: carman Friend Estate Agents
Theme URI:  https://www.carmanfriend.com/
Author:     Matthew Small
Description: A bespoke WordPress theme developed specifically for carman Friend Estate Agents. Includes support for property listings and local area guides.
Version:    1.0.0
Requires at least: 6.0
Requires PHP:  7.4
License:    GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: carman-friend
Tags:        real-estate, estate-agency, custom-theme
*/

/* ------------------------------------------------------------------------- *
 * Reset & Normalize
 * ------------------------------------------------------------------------- */
html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: #ffffff; 
    color: #333333;
    font-family: sans-serif;
    margin: 0;
}

.site-header {
    background-color: #02313b;
}

/* Property Single Layout */
.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50; 
}

.property-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.property-meta-bar {
    display: flex;
    gap: 30px;
    background: #f9f9f9;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.meta-item strong {
    font-size: 1.2rem;
    color: #333;
}