/*
Theme Name: Floral Breeze
Theme URI: http://example.com/floral-breeze
Author: Your Name
Author URI: http://example.com
Description: A cool, friendly, and fresh theme for a local flower shop.
Version: 1.0
Text Domain: floral-breeze
*/

/* --- CSS Variables for Cool & Friendly Colors --- */
:root {
    --primary-color: #a8e6cf; /* Mint green (cool/fresh) */
    --secondary-color: #ff8b94; /* Soft warm pink (friendly/floral) */
    --background-color: #f4f9f4; /* Very light cool green/white */
    --text-color: #2c3e50; /* Deep blue/grey for readable text */
    --accent-color: #a4b3b6; /* Cool greyish blue */
}

/* --- Basic Reset and Typography --- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* --- Layout --- */
.site-header {
    background-color: #ffffff;
    padding: 20px 40px;
    border-bottom: 4px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    margin: 0;
    font-size: 2em;
}

.site-title a {
    color: var(--secondary-color);
}

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

.main-navigation a {
    color: var(--text-color);
    font-weight: bold;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.post {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.site-footer {
    background-color: var(--text-color);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
