@charset "UTF-8";

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #f5f1e8; /* cream */
    border-left: 3px solid #1a2332; /* navy */
}
::-webkit-scrollbar-thumb {
    background: #1a2332; /* navy */
    border: 3px solid #f5f1e8; /* cream */
}

/* Base Styles */
body {
    background-color: #e5e0d8; /* warm-gray */
    background-image: radial-gradient(#1a2332 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    color: #1a2332; /* navy */
    font-family: 'Source Sans Pro', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Focus States */
*:focus-visible {
    outline: 2px solid #e6a641; /* amber */
    outline-offset: 2px;
}

/* Wireframe Container */
.wireframe-container {
    max-width: 1400px;
    margin: 0 auto;
    border: 4px solid #1a2332; /* navy */
    background-color: #ffffff;
    box-shadow: 12px 12px 0px rgba(26, 35, 50, 0.15);
    min-height: 100vh;
}

/* Tab Navigation */
.tab-button {
    border-bottom: 4px solid transparent;
    transition: all 0.2s;
    color: #1a2332;
}

.tab-button:hover {
    color: #e6a641;
}

.tab-button.active {
    border-bottom-color: #e6a641;
    color: #e6a641;
}
