/*
Theme Name: Sidma Reactor Theme
 * Author: Leonel Perez
 * Description: A High-Performance React + WordPress Theme.
 * Version: 1.1
 * Text Domain: sidma-reactor
 */

:root {
    --color-navy: #0C1657;
    --color-purple: #3E168C;
    --color-navy-dark: #093963;
    --color-teal: #00BF90;
    --color-white: #FFFFFF;
    --color-text: #E0E0E0;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #050510;
    /* Very dark base */
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* React Root Container */
#sidma-app-root {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Placeholder (Glass) */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: var(--header-height);
    z-index: 1000;
    border-radius: 20px;
    background: rgba(12, 22, 87, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    transition: all 0.3s ease;
}

/* Logo Sizing */
.header-logo svg {
    height: 50px;
    width: auto;
    transition: transform 0.5s ease;
}

.header-logo:hover svg {
    transform: rotate(360deg);
    /* Loop request */
}

/* Utility / Contact */
.utility-bar {
    display: none;
    /* Handled inside React or Sidebar */
}

/* Force Mobile Sidebar Background (Critical Fix) */
.mobile-sidebar {
    background-color: #0C1657 !important;
    background: #0C1657 !important;
}