/*
Theme Name: Estrato Futbol Premium
Theme URI: https://estratofutbol.com/
Author: Byteo.dev
Author URI: https://byteo.dev/
Description: A premium, dynamic WordPress theme for the Estrato Futbol foundation.
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: estratofutbol
*/

@font-face {
    font-family: 'Beatrice';
    src: url('fonts/Beatrice Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Beatrice';
    src: url('fonts/Beatrice Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Beatrice';
    src: url('fonts/Beatrice Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Beatrice';
    src: url('fonts/Beatrice Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

:root {
    --primary: #0F4C3F;
    --secondary: #FFD700;
    --accent: #FF5733;
    --dark: #121212;
    --light: #F8F9FA;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Beatrice', sans-serif;
    line-height: 1.6;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Beatrice', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s forwards;
}
