/* ========================================
   EARMOR THEME — Main Styles
   Base, Reset, Typography, Utilities
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1em; }

input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- Screen Reader Only ---------- */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.container--narrow {
    max-width: 900px;
}



/* Reset site wrapper */
.site {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.site-main {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--gold {
    background: #f1b300;
    color: #000;
}
.btn--gold:hover {
    background: #d49e00;
    transform: translateY(-2px);
}

.btn--white {
    background: #ffffff;
    color: #000000;
}
.btn--white:hover {
    background: #f1b300;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--outline:hover {
    border-color: #f1b300;
    color: #f1b300;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 15px;
}

/* ---------- Section Title ---------- */
.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
	font-size:20px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #f1b300;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* ---------- Forms ---------- */
.search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 4px 4px 4px 16px;
    width: 100%;
    max-width: 500px;
}
.search-form label {
    flex: 1;
    display: flex;
    align-items: center;
}
.search-form input[type="search"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 15px;
    padding: 8px 0;
}
.search-form input[type="search"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.search-form button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1b300;
    border-radius: 2px;
    color: #000;
    transition: background 0.3s;
}
.search-form button:hover { background: #d49e00; }

/* ---------- No Results ---------- */
.no-results {
    text-align: center;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.5);
}
