/*
Theme Name: Fantasy Football Custom
Author: Gemini AI
Version: 1.1
Description: Premium FPL Style Theme with Stadium Graphics
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

:root {
    --fpl-purple: #37003c;
    --fpl-green: #00ff85;
    --fpl-pink: #ff005a;
    --fpl-white: #ffffff;
    --fpl-gray: #f3f3f3;
    --fpl-dark-purple: #240029;
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--fpl-gray);
    color: var(--fpl-purple);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reusable Components */
.fpl-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    transition: transform 0.3s ease;
}

.fpl-card:hover { transform: translateY(-5px); }

h1, h2, h3 { 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: -0.5px;
}

/* Navigacijske ispravke za WP Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

nav ul li a:hover { color: var(--fpl-green); }

/* Utility Classes */
.text-green { color: var(--fpl-green); }
.bg-purple { background: var(--fpl-purple); }