/*
Theme Name: DCX Media Group
Theme URI: https://dcxmediagroup.com
Author: DCX Media
Author URI: https://dcxmediagroup.com
Description: A premium multi-vertical theme for DCX Media Group. V2 Design - Innovating Reality.
Version: 2.0.0
Text Domain: dcx-media
*/

/* =================================================================*********
   1. Variables & Design Tokens
   ========================================================================== */
:root {
    /* Colors */
    --color-bg-body: #050a14;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-bg-card-hover: rgba(255, 255, 255, 0.07);

    --color-teal: #00C2CB;
    --color-teal-hover: #00a0a8;
    --color-dark-blue: #0b1120;

    --color-text-primary: #ffffff;
    --color-text-secondary: #b0b8c6;
    --color-text-muted: #6e7687;

    /* Gradients */
    --gradient-hero: radial-gradient(circle at center, rgba(0, 194, 203, 0.15) 0%, rgba(5, 10, 20, 0) 70%);
    --gradient-text: linear-gradient(90deg, #fff, #b0b8c6);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Layout */
    --container-max-width: 1400px;
    --header-height: 90px;
    --border-radius: 4px;

    /* Transitions */
    --transition-fast: 0.3s ease;
}

/* =================================================================*********
   2. Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-body);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--color-teal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =================================================================*********
   3. Utility Classes
   ========================================================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-teal {
    color: var(--color-teal);
}

.text-center {
    text-align: center;
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-teal {
    background: var(--color-teal);
    color: #000;
}

.btn-teal:hover {
    background: var(--color-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 194, 203, 0.3);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* =================================================================*********
   4. Header & Navigation
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 10, 20, 0.8);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    padding-top: 10px;
    /* Added padding to push down slightly */
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-logo img {
    height: 40px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    gap: 40px;
}

.main-navigation a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.main-navigation a:hover {
    opacity: 1;
    color: var(--color-teal);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    color: #fff;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* =================================================================*********
   5. Footer
   ========================================================================== */
.site-footer {
    background: #020408;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--color-teal);
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    width: 100%;
    color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
}

.newsletter-form button {
    width: 100%;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

/* =================================================================*********
   6. Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-bg-body);
        height: 0;
        overflow: hidden;
        transition: height var(--transition-fast);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .main-navigation.toggled {
        height: auto;
        padding: 20px 0;
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .header-actions .btn {
        display: none;
    }

    /* Hide CTA on mobile nav for simplicity */

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* --- DCX MASTER THEME VARIABLES 2025 --- */
:root {
    --dcx-bg: #040812;
    /* Deep Midnight */
    --dcx-bg-elevated: #0d1221;
    /* Card/Section background */
    --dcx-teal: #00C2CB;
    /* Primary Brand Teal */
    --dcx-gold: #c9a227;
    /* Secondary Brand Gold */
    --dcx-text: #ffffff;
    /* Off-white for readability */
    --dcx-muted: #b0b0b0;
    /* Muted secondary text */
    --dcx-glass: rgba(255, 255, 255, 0.05);
    --dcx-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Body Style */
body {
    background-color: var(--dcx-bg);
    color: var(--dcx-text);
    font-family: var(--font-body);
    margin: 0;
}

/* Footer Menu */
.footer-navigation ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-navigation li {
    display: block;
    margin: 0;
}

.footer-navigation a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.footer-navigation a:hover {
    color: var(--color-teal);
}

@media (max-width: 600px) {
    .site-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-navigation ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}