/* Global custom styles for DEI Audit & Consulting */

/* --- General Resets & Typography --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif; /* Modern Sans-Serif Font */
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* --- Utility & Animation Classes (For JavaScript Interactivity) --- */
/* Initial state for fade/slide animations */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Active state (visible) after animation trigger */
.animated {
    opacity: 1;
    transform: translateY(0);
}


/* --- Color and Component Styling (Brand Guidelines) --- */

/* Primary Action Button Style */
.btn-primary {
    background-color: #9f2b17; /* Deep Reddish Brown - Main Brand Color */
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(159, 43, 23, 0.2); /* Subtle shadow for depth */
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02) translateY(-2px); /* Subtle lift and scale */
    box-shadow: 0 8px 15px rgba(159, 43, 23, 0.3);
}

/* --- Header Styling (Sticky & Glass Effect) --- */
#main-header {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff; /* Default solid background */
}

/* Class applied by JavaScript when scrolled past top for the GLASS EFFECT */
.glass-effect {
    background-color: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(10px); /* Core glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari compatibility */
}

/* --- Section Padding & Layout Polish --- */
section {
    padding: 80px 0;
    overflow: visible; /* Important for animations */
}

h2, h3 {
    font-weight: 900; /* Extra Bold for large headlines */
}

