/* =============================================================
   1. FONTS
   ============================================================= */
@font-face {
    font-family: "RoboCon";
    src: url('../res/fonts/roboto-condensed-v31-latin-regular.woff2') format('woff2');
    font-display: swap;
}

/* =============================================================
   2. RESET / BASE
   ============================================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --divider-space: 60px;
    --first-divider-space: 60px;
}

body {
    margin: 0;
    font-family: "RoboCon", Arial, sans-serif;
    background: #fff;
    color: #6b7770;
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* =============================================================
   3. CONTAINER
   ============================================================= */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: 20px;
}

.fullwidth {
    width: 100%;
}

/* =============================================================
   4. HEADER / NAVIGATION
   ============================================================= */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: #f5f5f5;
}

.main-header-inner {
    min-height: 55px;
    padding-inline: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    white-space: nowrap;
    font-size: 16px;
}

.logo-full { display: inline; }
.logo-short { display: none; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: border-color .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    border-bottom-color: #333;
}

/* =============================================================
   5. GRID SYSTEM
   ============================================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.grid-1 {
    display: grid;
    justify-items: center;
}

.grid-1 > .box {
    width: 100%;
    max-width: 1200px;
}

.grid-1 > .box-600 { max-width: 600px; }
.grid-1 > .box-800 { max-width: 800px; }

.grid-1 > .box-1200,
.grid-1 > .box-full {
    max-width: 1200px;
}

/* =============================================================
   6. FOOTER
   ============================================================= */
.site-footer {
    background: #f5f5f5;
    text-align: center;
    margin-top: 60px;
    padding: 16px 20px;
    font-size: .9rem;
    color: #777;
}

.site-footer p {
    margin: 0;
}

/* =============================================================
   7. UTILITIES
   ============================================================= */
.lightGreyFont {
    color: #C1CAC5;
}

.site-footer .red,
.red {
    color: #e60000;
}