/* =====================
   CSS Variables
   ===================== */
:root {
    /* =========================
       FONTS
       =========================
    */
    --font-heading: 'Funnel Display', sans-serif;
    --font-body: 'Lexend Deca', sans-serif;

    /* =========================
       COLORS - Light Theme
       ========================= */
    --primary-color: #f59e0b;
    --primary-light: #fbbf24;
    --primary-dark: #d97706;
    --secondary-color: #6c757d;
    --dark-color: #1f2937;
    --light-color: #fffbeb;
    --white-color: #ffffff;
    --text-color: #1f2937;
    --text-light: rgba(31, 41, 55, 0.7);
    --bg-color: #ffffff;
    --bg-secondary: #f9fafb;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --transition-speed: 0.3s;

    /* Gradient Sphere Colors - Very Subtle */
    --sphere-1-start: rgba(255, 180, 50, 0.2);
    --sphere-1-end: rgba(255, 130, 0, 0.12);
    --sphere-2-start: rgba(255, 200, 100, 0.18);
    --sphere-2-end: rgba(255, 165, 0, 0.1);
    --sphere-3-start: rgba(255, 220, 150, 0.15);
    --sphere-3-end: rgba(255, 180, 50, 0.1);
    --glow-color: rgba(255, 180, 50, 0.1);
}

/* Dark Theme */
[data-theme="dark"] {
    --dark-color: #f9fafb;
    --light-color: #1f2937;
    --white-color: #0a0e1a;
    --text-color: #f9fafb;
    --text-light: rgba(249, 250, 251, 0.7);
    --bg-color: #0a0e1a;
    --bg-secondary: #111827;
    --glass-bg: rgba(10, 14, 26, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Gradient Sphere Colors - Dark Theme */
    --sphere-1-start: rgba(255, 180, 50, 0.15);
    --sphere-1-end: rgba(255, 130, 0, 0.08);
    --sphere-2-start: rgba(255, 200, 100, 0.12);
    --sphere-2-end: rgba(255, 165, 0, 0.06);
    --sphere-3-start: rgba(255, 220, 150, 0.1);
    --sphere-3-end: rgba(255, 180, 50, 0.06);
    --glow-color: rgba(255, 180, 50, 0.08);
}

/* =====================
   Base Styles
   ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-color);
}

body {
    font-family: var(--font-heading);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
}

/* =====================
   Typography
   ===================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary-dark);
}

/* =====================
   Buttons
   ===================== */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* =====================
   Utility Classes
   ===================== */
.text-primary {
    color: var(--primary-color) !important;
}

/* =====================
   Footer
   ===================== */
footer {
    position: relative;
    z-index: 10;
    background-color: var(--bg-secondary);
    color: var(--text-color);
}

/* =====================
   Sections Base
   ===================== */
section {
    position: relative;
    z-index: 10;
    padding: 100px 0;
    background: transparent;
}

section h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

.bg-light {
    background-color: transparent !important;
}