/*
Theme Name: Freelance Connect
Theme URI: https://example.com/freelance-connect
Author: Antigravity
Author URI: https://example.com
Description: Un tema moderno para conectar freelancers y empresas, con estilo Glassmorphism.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: freelance-connect
*/

:root {
    --bg-color: #f8fafc;
    --text-color: #000000;
    --text-muted: #1e293b;
    --primary-accent: #0f172a;
    --secondary-accent: #334155;
    --accent-gold: #b45309;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', 'Outfit', sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Background Shapes (can be in header.php or here if handled by JS/HTML structure) */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-accent);
}

.blob-2 {
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--secondary-accent);
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 300px;
    height: 300px;
    background: #c084fc;
    opacity: 0.4;
}


/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(to right, var(--primary-accent), var(--secondary-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.4);
}

/* Secondary Button */
.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Basic Layout & Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-accent);
    margin-top: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Forms (Global) */
.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="url"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--primary-accent);
    font-family: inherit;
    margin-bottom: 1.5rem;
    transition: border-color 0.2s;
}

.form-control:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-accent);
    font-weight: 700;
}

/* WordPress Generated Classes Overrides */
.menu-item {
    margin: 0;
}