/*
Theme Name: INSIDEO - Informativna Nadmoć
Theme URI: https://github.com/Kresh0/insideo
Author: Gemini CLI
Author URI: https://github.com/Kresh0/insideo
Description: High-end Cyber-Luxury theme for strategic risk management and digital intelligence consulting.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: insideo
*/

:root {
  /* Core Palette */
  --background: #06080A; /* Deeper Anthracite */
  --foreground: #F8FAFC;
  --surface: #0E1217;
  --surface-raised: #161B22;
  --surface-overlay: rgba(22, 27, 34, 0.8);
  
  /* Accents */
  --accent-gold: #C5A059; /* Sophisticated Luxury Gold */
  --accent-gold-muted: rgba(197, 160, 89, 0.2);
  --accent-platinum: #E2E8F0;
  --accent-blue: #3B82F6;
  --accent-cyan: #06B6D4;
  
  /* Borders & Dividers */
  --border: rgba(255, 255, 255, 0.08);
  --border-bright: rgba(255, 255, 255, 0.15);
  --border-gold: rgba(197, 160, 89, 0.3);
  
  /* Text */
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  /* Typography */
  --font-inter: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text-main);
  font-family: var(--font-inter);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-platinum);
  line-height: 1.1;
}

section {
  padding: 100px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Glassmorphism & Cards */
.glass-card {
  background: var(--surface-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.gold-border {
  border: 1px solid var(--border-gold);
}

/* HIGH SPECIFICITY RESET for WordPress Global Button Styles */
:root :where(.wp-element-button, .wp-block-button__link).wp-block-button__link {
  background-color: transparent !important;
  padding: 0 !important;
  color: inherit !important;
}

/* Global Button Styles */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gold);
  color: #000 !important;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.2);
  border: 1px solid var(--accent-gold);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.4);
  background: #D4AF37;
  border-color: #D4AF37;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent-platinum) !important;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--border-bright);
  transition: all 0.3s ease;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-platinum);
}

/* Utility Animations */
@keyframes reveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-reveal {
  animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Scanline / Grid Backgrounds */
.grid-bg {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.dot-bg {
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
}
