/* style.css - Clean, Performance-Focused */
:root {
    --orange: #FF5A00;
    --sapphire: #0057FF;
    --carbon: #121212;
    --gunmetal: #1A1A1A;
    --gunmetal-light: #2A2A2A;
}

/* Global Mobile-First Fixes */
html {
    scroll-behavior: smooth;
    /* Prevents the fixed header from covering section titles on mobile */
    scroll-padding-top: 80px; 
}

body {
    background-color: var(--carbon);
    color: #F0F0F0;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Fixed Header Blur Effect */
header {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gunmetal-light);
}

/* Recovering the Hover "Glow" Effects */
.card-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-sapphire:hover {
    border-color: var(--sapphire) !important;
    box-shadow: 0 0 25px rgba(0, 87, 255, 0.15);
    transform: translateY(-5px);
}

.hover-orange:hover {
    border-color: var(--orange) !important;
    box-shadow: 0 0 25px rgba(255, 90, 0, 0.15);
    transform: translateY(-5px);
}

/* FAQ Details Reset */
details > summary {
    list-style: none;
    cursor: pointer;
}
details > summary::-webkit-details-marker {
    display: none;
}
#mobile-menu {
    height: 100vh;
    width: 100%;
}