/*
Theme Name: CDSI Corporate Theme
Theme URI: https://cdsindo.com
Author: AI Collaborator
Description: A premium, high-performance dark corporate theme built for Cypher Digital System Intelligence (CDSI).
Version: 1.0.0
Text Domain: cdsi-theme
*/

/* Declare Custom Regular Font */
@font-face {
    font-family: 'CustomCorporateFont';
    src: url('fonts/spyagency.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* Keeps text visible while loading */
}

/* Declare Custom Bold Font */
@font-face {
    font-family: 'CustomCorporateFont';
    src: url('fonts/spyagencybold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #0d0f12;
    --card-dark: #161a22;
    --primary-orange: #ff6600;
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --border-color: #2d3748;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    /* Update the line below to use your new font family */
    font-family: 'CustomCorporateFont', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

/* Optional: If you only want it to apply to headings */
h1, h2, h3, h4, .logo {
    font-family: 'CustomCorporateFont', sans-serif;
}

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

/* Header & Footer */
header {
    background: rgba(13, 15, 18, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    text-decoration: none;
    letter-spacing: 2px;
}

.logo span {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    display: block;
    letter-spacing: 0;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1e2530 0%, var(--bg-dark) 70%);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 30px;
}

.badge {
    background: var(--primary-orange);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* Grids & Cards */
.section-padding {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-dark);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

/* Management Team Styles */
.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #444;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-orange);
}

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

.team-card h3 {
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-muted);
    text-align: left;
}

footer {
    background: #06080a;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}