/*
Theme Name: Prodairy
Theme URI: https://prodairy.co.zw
Author: Prodairy Team
Author URI: https://prodairy.co.zw
Description: A custom WordPress theme for Prodairy - Zimbabwe's trusted dairy brand. Features include automatic homepage generation, responsive design, and custom post types for products.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
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: prodairy
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, food-and-drink, e-commerce
*/

/* CSS Variables */
:root {
    --primary-color: #2EA3F2;
    --secondary-color: #7AC142;
    --dark-color: #222222;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --border-radius: 8px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WordPress Core Styles */
.alignnone {
    margin: 1.5em 1.5em 1.5em 0;
}

.aligncenter {
    display: block;
    margin: 1.5em auto;
}

.alignleft {
    float: left;
    margin: 0.5em 1.5em 1.5em 0;
}

.alignright {
    float: right;
    margin: 0.5em 0 1.5em 1.5em;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    padding: 0.5em 0;
}

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

/* Import main styles */
@import url('css/main.css');
