/*
Theme Name: Tour of Tati
Theme URI: https://example.com/tour-of-tati
Author: Tour of Tati Community
Author URI: https://example.com
Description: A modern, high-performance theme for the Tour of Tati East cycling event.
Version: 2.0.0
Text Domain: tour-of-tati
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
    /* Brand Colors */
    --color-brand-orange: #F26522; /* Vibrant orange from design */
    --color-brand-dark: #1D1D1F;
    --color-text-main: #333333;
    --color-text-light: #666666;
    --color-bg-light: #F9F9FB;
    --color-white: #FFFFFF;
    --color-border: #E5E5E5;

    /* Spacing */
    --container-width: 1280px;
    --section-spacing: 5rem;
    
    /* Typography */
    --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text-main);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-brand-dark);
    line-height: 1.2;
    margin: 0 0 1rem;
    font-weight: 700;
}

.text-orange {
    color: var(--color-brand-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.container {
    width: min(100% - 2rem, var(--container-width));
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 2em;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
}

.btn-primary {
    background-color: var(--color-brand-orange);
    color: #fff;
}

.btn-primary:hover {
    background-color: #d85012;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Utilities */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title strong {
    color: var(--color-brand-orange);
}
