/*
Theme Name: Recify
Theme URI:
Author: Hannah Carter
Author URI:
Description: A beautiful, fully responsive WordPress theme for recipe websites. Easy to edit and manage recipes, categories, tags, and authors through the WordPress dashboard. The developer of this theme is Hannah Carter.
Version: 9.0.3
Requires at least: 5.0
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: recipe-theme
Tags: recipe, food, blog, responsive, custom-post-type, custom-taxonomy
*/

/* 
 * Main styles are loaded from assets/css/style.css via functions.php
 * This file contains the WordPress theme header information above.
 * WordPress requires actual CSS content in this file for theme recognition.
 */

/* Basic reset and base styles - Required by WordPress */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    color: #111827;
    line-height: 1.6;
}

/* Main content area */
#main {
    min-height: 60vh;
}

/* Container - Required for layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Header styles */
header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* Links */
a {
    color: #111827;
    text-decoration: none;
}

a:hover {
    color: #c64118;
}

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

/* Responsive */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}