/*
Theme Name: Geonimaux 

Theme URI: https://example.com/geonimaux
Author: Your Name
Author URI: https://example.com
Description: A custom, optimized WordPress theme with full WooCommerce support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: geonimaux
Tags: e-commerce, custom-background, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS Variables — Single Source of Truth
   ========================================================================== */
:root {
    /* Colors */
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --text-color: #333;
    --bg-color: #ffffff;
    --white: #ffffff;

    /* Header */
    --header-text: #2c3e50;
    --header-accent: #e67e22;

    /* Footer */
    --footer-bg: #846249;
    --footer-bg-dark: #573a25;
    --footer-text: #ffffff;
    --footer-text-hover: #e67e22;

    /* WooCommerce */
    --wc-primary: #e67e22;
    --wc-primary-hover: #d35400;
    --wc-secondary: #846249;
    --wc-text: #2c3e50;
    --wc-price: #e67e22;

    /* Layout */
    --container-width: 1200px;

    /* Typography */
    --font-heading: 'Poetsen One', cursive;
    --font-body: 'Comfortaa', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ==========================================================================
   Base Typography
   ========================================================================== */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-family: var(--font-body);
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* ==========================================================================
   Accessibility
   ========================================================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}