/*
Theme Name: Simple Florist
Description: A modern, lightweight theme for online florist, avoiding heavy plugins and dependencies. Contains vibrant colors and smooth typography.
Author: Antigravity
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: simple-florist
*/

:root {
    --primary-color: #e83e8c;
    --primary-color-hover: #d32070;
    --background-light: #fdfafb;
    --text-color: #333333;
    --text-muted: #777777;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background-light);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

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

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

.site-header {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.site-nav a {
    color: var(--text-color);
    font-weight: 500;
}

.site-nav a:hover {
    color: var(--primary-color);
}

.hero {
    background: linear-gradient(135deg, rgba(232, 62, 140, 0.1), rgba(255, 255, 255, 0)), url('img/hero-pattern.png');
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.card-img {
    height: 250px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.card-title a {
    color: var(--text-color);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
}

.site-footer {
    background-color: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 4rem;
    color: var(--text-muted);
}
