/* ==========================================================================
   GLOBAL BRAND VARIABLES & POPPINS THEME (Inherited by all pages)
   ========================================================================== */
/* Importing your exact requested Poppins font weights */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-color: #0B0C10;       /* Obsidian Black */
    --primary-accent: #95FF00; /* Vibrant Electric Lime Green */
    --text-main: #FFFFFF;      /* Crisp White */
    --text-muted: #A0A5B0;     /* Metallic Platinum Silver */
    
    /* Applying your chosen font */
    --font-family: 'Poppins', sans-serif; 
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    font-weight: 500; /* Medium weight for general site body text */
    line-height: 1.6;
}

/* Forcing headlines to use the heavy, powerful bold weights you wanted */
h1, h2, h3 {
    font-weight: 800; /* Extra Bold Poppins */
    letter-spacing: -0.5px;
}

/* ==========================================================================
   GLOBAL LOGO IMAGE STYLING
   ========================================================================== */
.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;       
    width: auto;        
    display: block;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.02); 
}