/*
Theme Name: UnHinged RunClub Turin
Description: Tema WordPress moderno per UnHinged RunClub Turin - comunità di corsa per giovani 20-35 anni. Include custom post types per eventi, animazioni fluide e design responsive.
Version: 1.0.0
Author: UnHinged RunClub
Text Domain: unhinged-runclub
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

UnHinged RunClub Turin WordPress Theme
*/


/* Reset e base styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a1a;
    --accent-color: #00d4aa;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --background-dark: #0a0a0a;
    --background-card: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4aa 0%, #00a085 100%);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Utility classes */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* WordPress specific styles */

.wp-block-group {
    margin-bottom: 0;
}

.alignwide {
    max-width: 1200px;
}

.alignfull {
    max-width: 100%;
}


/* Accessibility */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}


/* Responsive images */

img {
    max-width: 100%;
    height: auto;
}


/* WordPress admin bar spacing */

.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}