/* Global Styles - Industrial Premium Orange/Black Theme */
:root {
    --primary-dark: #000000;
    --primary-gray: #0a0a0a;
    --accent-orange: #ff6600;
    --accent-orange-hover: #ff8533;
    --text-light: #f8f9fa;
    --text-muted: #c4c4c4;
    --card-bg: #111111;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.text-muted {
    color: var(--text-muted) !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
}

.text-orange {
    color: var(--accent-orange);
}

.bg-orange {
    background-color: var(--accent-orange);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Utilities */
.max-width-600 {
    max-width: 600px;
}

.max-width-800 {
    max-width: 800px;
}

/* Form Styles Premium */
.form-control {
    border-radius: 0;
}

.form-control:focus {
    background-color: rgba(255, 102, 0, 0.05);
    color: white;
    border-color: var(--accent-orange) !important;
    box-shadow: none;
}

/* Reveal Animations */
[data-aos] {
    transition-property: transform, opacity;
}

/* Image Border Overlay */
.border-orange {
    border: 1px solid rgba(255, 102, 0, 0.3) !important;
}

/* Cards */
.card-premium {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.card-premium:hover {
    border-color: var(--accent-orange);
}