/*
Theme Name: Talent and Creativity Custom
Theme URI: https://talent-and-creativity.com/
Author: AI Assistant
Description: Custom, plugin-less theme built specifically for Talent and Creativity. Optimized for speed, security, and aesthetics. Dark Theme Redesign.
Version: 2.0.0
Text Domain: talent-custom
*/

/* ==========================================================================
   CSS Resets & Variables
   ========================================================================== */
:root {
    --primary-bg: #050505;
    --secondary-bg: #111111;
    --light-bg: #ffffff;
    --accent-color: #ffbc00;
    /* Vibrant Yellow from mockup */
    --text-light: #ffffff;
    --text-dark: #1a1a1a;
    --text-muted: #888888;
    --spacing-unit: 1.5rem;
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Open Sans', 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    background-color: var(--primary-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-unit);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.pt-4 {
    padding-top: 2rem;
}

.pb-4 {
    padding-bottom: 2rem;
}

.text-muted {
    color: var(--text-muted);
}

/* Section Themes */
.bg-dark {
    background-color: var(--secondary-bg);
    color: var(--text-light);
}

.bg-light {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.bg-black {
    background-color: var(--primary-bg);
    color: var(--text-light);
}

.section-padding {
    padding: 5rem 0;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
}

.site-header .site-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left side logo area */
.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-branding .site-title a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.burger-menu {
    color: var(--accent-color);
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    display: none;
    /* simple for desktop, can be enabled for mobile */
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    /* pill shape like mockup */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 188, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #000;
}