/*
Theme Name: Dinocore Shop
Theme URI: https://dinocore.example.com
Author: ChatGPT Assistant
Description: A custom WordPress theme for Dinocore, built for WooCommerce with a modern, responsive design. It features a clean header, hero section, product grids, and deep integration with WooCommerce. The theme is optimized for performance and designed to look great on any device.
Version: 1.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dinocore-shop
Tags: e-commerce, WooCommerce, custom-theme, responsive, accessibility-ready
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f1e9;
    color: #222;
    line-height: 1.6;
}

a {
    color: #1f4e3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: #e88d2a;
}

header.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.site-header .site-branding a {
    font-size: 24px;
    font-weight: 700;
    color: #1f4e3d;
}

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

nav.main-navigation ul li a {
    font-weight: 600;
    padding: 5px 0;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-section .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 8px;
}

.hero-section h1 {
    font-size: 48px;
    margin: 0 0 10px;
    color: #fff;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f5f1e9;
}

.btn-primary {
    background-color: #e88d2a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #d17b1f;
    color: #fff;
}

.section {
    padding: 60px 20px;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #1f4e3d;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

footer.site-footer {
    background-color: #1f4e3d;
    color: #fff;
    padding: 40px 20px;
}

footer.site-footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

footer.site-footer .footer-content .footer-section {
    min-width: 200px;
    flex: 1;
}

footer.site-footer a {
    color: #e88d2a;
    transition: color 0.3s ease;
}

footer.site-footer a:hover, footer.site-footer a:focus {
    color: #f0a247;
}