/*
Theme Name: SK27 Gym
Theme URI: https://sk27gym.com
Author: SK27 Gym Team
Author URI: https://sk27gym.com
Description: A premium dark luxury WordPress theme for SK27 Gym - Health & Fitness Blog. Built-in demo import, SEO optimized, no plugins required.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sk27-gym
Domain Path: /languages
Tags: gym, fitness, health, blog, dark, luxury, responsive, seo-friendly
*/

/* Theme Base Styles */
:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #141414;
    --color-surface: #1a1a1a;
    --color-surface-light: #222222;
    --color-accent: #dc2626;
    --color-accent-hover: #ef4444;
    --color-text: #ffffff;
    --color-text-muted: #a1a1aa;
    --color-text-dim: #71717a;
    --color-border: #27272a;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* WordPress Required Classes */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 8px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.gallery-item {
    margin: 0;
}

.gallery-caption {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 8px;
}
