/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=JetBrains+Mono:wght@400&display=swap');

/* Variables - Industrial Theme */
:root {
    --font-family-base: 'Roboto', sans-serif;

    /* Custom Brand Colors */
    --primary: #ff9900;
    /* Safety Orange */
    --primary-hover: #ffad33;
    --secondary: #6c757d;
    --dark-bg: #121212;
    /* Matte Black */
    --card-bg: #1e1e1e;
    /* Dark Grey */
    --text-main: #e0e0e0;
    --border-color: #333333;

    /* Bootstrap Overrides (The Magic Part) */
    --bs-primary: #ff9900;
    --bs-primary-rgb: 255, 153, 0;
    --bs-body-bg: #121212;
    --bs-body-color: #e0e0e0;
    --bs-link-color: #ff9900;
    --bs-link-hover-color: #ffad33;
}

/* 1. Global Reset */
body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-family-base);
    -webkit-font-smoothing: antialiased;
}

section {
    background-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-primary {
    color: var(--primary) !important;
}

.text-white {
    color: #fff !important;
}

.text-muted {
    color: #a0a0a0 !important;
}

/* 2. Navbar */
/* 2. Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.7) !important;
    /* Semi-transparent black */
    backdrop-filter: blur(10px);
    /* Modern blur effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    padding: 1rem 0;
    position: fixed;
    /* Fixed top */
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

/* Add spacing for content below fixed navbar */
body {
    padding-top: 80px;
    /* Adjust based on navbar height */
}

/* Hero Section specific override to go BEHIND navbar */
section.hero-section {
    margin-top: -80px !important;
    padding-top: 80px;
    /* Restore content spacing */
    min-height: 100vh;
}

.navbar-brand {
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.4rem;
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* 3. Hero Section */
/* Note: Inline styles in Blade often handle the specific image, but we set defaults here */
.display-1 {
    font-weight: 900;
    font-size: 2.5rem;
    /* Reduced from 3.5rem for Mobile */
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
    /* Safety break */
}

@media (min-width: 576px) {
    .display-1 {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .display-1 {
        font-size: 4rem;
        /* Reduced from 5rem */
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* 4. Buttons - Industrial Style */
.btn {
    border-radius: 4px;
    /* Boxy look for industrial feel */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border: none;
    transition: all 0.2s ease-in-out;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.3);
}

/* Hero Animation */
@keyframes subtl-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.hero-bg-anim {
    animation: subtl-zoom 20s infinite alternate ease-in-out;
}

/* Footer */
.footer {
    background-color: #050505;
    /* Slightly lighter than deep black for contrast */
    border-top: 3px solid var(--primary);
    /* Stronger Industrial Border */
    color: #888;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
    /* Lift off effect */
}

.footer a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 153, 0, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* 5. Feature Cards (Bento/Solid) */
.bento-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    /* Industrial Accent */
    border-radius: 4px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s, background-color 0.3s;
}

.bento-card:hover {
    background-color: #252525;
    transform: translateY(-5px);
}

.badge {
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* 6. Utility Helper */
.letter-spacing-2 {
    letter-spacing: 2px;
}