/* =========================================================
   GLOBAL / THEME
   ========================================================= */

:root {
    --bg-dark: #090d0a;
    --bg-panel: rgba(20, 27, 21, 0.94);

    --forest: #1e3929;
    --forest-light: #315640;

    --gold: #c9a65b;
    --gold-light: #e4c982;
    --gold-dark: #80652f;

    --cream: #eee5d2;
    --muted: #b9b19e;

    --border: rgba(201, 166, 91, 0.32);
    --border-strong: rgba(201, 166, 91, 0.45);

    --shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
    color: #e8e1cf;
    background:
        radial-gradient(circle at top, #263326 0%, #111812 45%, #080b09 100%);
}

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

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

button,
input,
textarea {
    font: inherit;
}


/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.siteHeader {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 16px 6%;

    background: rgba(7, 11, 8, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.siteBrand a {
    color: var(--gold-light);
    font-size: 1.45rem;
    font-weight: bold;
    letter-spacing: 0.08em;
}

.mainNav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mainNav a {
    position: relative;

    color: var(--cream);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.mainNav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.mainNav a:hover {
    color: var(--gold-light);
}

.mainNav a:hover::after {
    width: 100%;
}

.menuButton {
    display: none;

    padding: 5px 10px;

    border: 1px solid var(--border);
    border-radius: 6px;

    background: transparent;
    color: var(--gold-light);

    font-size: 1.5rem;
    cursor: pointer;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 88vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 8%;

    text-align: center;

    background:
        linear-gradient(
            to bottom,
            rgba(10, 18, 12, 0.25),
            rgba(6, 10, 7, 0.82)
        ),
        url("../images/hero/targin-hero.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.heroContent {
    max-width: 800px;

    padding: 55px;

    border: 1px solid var(--border);

    background: rgba(8, 13, 9, 0.62);

    box-shadow:
        0 0 60px rgba(0, 0, 0, 0.42),
        inset 0 0 50px rgba(201, 166, 91, 0.03);

    backdrop-filter: blur(4px);
}

.heroEyebrow,
.sectionEyebrow {
    margin-bottom: 8px;

    color: var(--gold);

    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 20px;

    color: var(--cream);

    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: 0.02em;

    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.heroText {
    max-width: 620px;
    margin: 0 auto 30px;

    color: #d4cdbd;
    font-size: 1.2rem;
}

/* =========================================================
   TARGIN SEARCH
   ========================================================= */

.targinSearchSection {
    padding: 55px 8%;

    background:
        linear-gradient(
            rgba(7, 11, 8, 0.94),
            rgba(12, 18, 13, 0.96)
        );

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}


.targinSearchWrap {
    max-width: 720px;
    margin: 0 auto;

    text-align: center;
}


.targinSearchWrap h2 {
    margin-bottom: 22px;

    color: var(--cream);

    font-size: 2rem;
    font-weight: normal;
}


.targinSearchBox {
    position: relative;
}

.randomTarginButton {
    margin-top: 18px;
}


#targinSearchInput {
    width: 100%;

    padding: 15px 48px 15px 18px;

    border: 1px solid var(--border);
    border-radius: 5px;

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--cream);

    outline: none;

    font-size: 1rem;

    box-shadow:
        inset 0 0 20px rgba(0, 0, 0, 0.25);
}


#targinSearchInput:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(201, 166, 91, 0.08);
}


#targinSearchInput::placeholder {
    color: #817b6e;
}


#clearTarginSearch {
    position: absolute;

    top: 50%;
    right: 12px;

    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    border: 0;

    background: transparent;
    color: var(--muted);

    cursor: pointer;

    font-size: 1.4rem;
}


#clearTarginSearch:hover {
    color: var(--gold-light);
}


/* Results */

.targinSearchResults {
    margin-top: 10px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 5px;

    background:
        rgba(10, 15, 11, 0.98);

    text-align: left;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45);
}


.targinSearchResult {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 15px;

    border: 0;
    border-bottom:
        1px solid rgba(201, 166, 91, 0.12);

    background: transparent;
    color: var(--cream);

    cursor: pointer;

    text-align: left;
}


.targinSearchResult:last-child {
    border-bottom: 0;
}


.targinSearchResult:hover {
    background:
        rgba(201, 166, 91, 0.09);
}


.targinSearchResultName {
    font-size: 0.95rem;
}


.targinSearchResultType {
    flex-shrink: 0;

    color: var(--gold);

    font-size: 0.62rem;
    font-weight: bold;

    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.targinSearchEmpty {
    padding: 18px;

    color: var(--muted);

    text-align: center;
    font-style: italic;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.primaryButton,
.secondaryButton {
    display: inline-block;

    padding: 12px 24px;

    border: 1px solid var(--gold);

    cursor: pointer;
    letter-spacing: 0.08em;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.primaryButton {
    background: var(--gold);
    color: #11140f;
}

.primaryButton:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(201, 166, 91, 0.2);
}

.secondaryButton {
    background: transparent;
    color: var(--gold-light);
}

.secondaryButton:hover {
    background: rgba(201, 166, 91, 0.12);
    transform: translateY(-2px);
}


/* =========================================================
   PAGE SECTIONS
   ========================================================= */

.pageSection {
    padding: 100px 8%;
}

.pageSection:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.012);
}

.sectionHeading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

.sectionHeading h2 {
    margin-bottom: 15px;

    color: var(--cream);

    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: normal;
}

.sectionHeading p:last-child {
    color: var(--muted);
    font-size: 1.05rem;
}


