/* ---------------------------------------------------------------
   Anvil Media — Coming Soon
   Design tokens lifted from anvilmedia.com.au:
     bg dark      #212529
     ink (brown)  #120A00
     cream/second #FFF5D2   (logo + primary button)
     gold/primary #FFE071
     blue         #97ECFF
     lime/third   #EFFFB3
   Display font: Lemon/Milk   Body font: Switzer
----------------------------------------------------------------- */

@font-face {
    font-family: "Lemon/Milk";
    src: url("fonts/LemonMilk.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Lemon/Milk";
    src: url("fonts/LemonMilkbold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Switzer";
    src: url("fonts/Switzer-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Switzer";
    src: url("fonts/Switzer-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Switzer";
    src: url("fonts/Switzer-Semibold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg-dark: #212529;
    --ink: #120a00;
    --cream: #fff5d2;
    --gold: #ffe071;
    --blue: #97ecff;
    --lime: #efffb3;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-dark);
    color: var(--cream);
    font-family: "Switzer", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1.125rem;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ---- Hero background video ---- */
.hero-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    /* darken + warm vignette so cream type stays legible over the video */
    background:
        radial-gradient(120% 90% at 50% 35%, rgba(33, 37, 41, 0.35) 0%, rgba(18, 10, 0, 0.78) 100%),
        linear-gradient(180deg, rgba(18, 10, 0, 0.55) 0%, rgba(18, 10, 0, 0.35) 45%, rgba(18, 10, 0, 0.7) 100%);
}

/* ---- Content ---- */
.hero {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6vh 1.5rem;
    text-align: center;
}

.hero-inner {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: clamp(180px, 34vw, 300px);
    height: auto;
    margin-bottom: clamp(2rem, 6vh, 3.5rem);
}

.heading {
    margin: 0;
    font-family: "Lemon/Milk", "Switzer", sans-serif;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--cream);
    font-size: clamp(2.75rem, 10vw, 6.5rem);
}

.tagline {
    margin: clamp(1.25rem, 3.5vh, 2rem) 0 0;
    max-width: 42ch;
    font-weight: 400;
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    line-height: 1.5;
    color: rgba(255, 245, 210, 0.82);
}

/* ---- Buttons ---- */
.actions {
    margin-top: clamp(2rem, 5vh, 3rem);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Switzer", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    line-height: 1;
    padding: 1rem 2.25rem;
    border-radius: 999px;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

/* Primary CTA — matches the site's cream "Contact us" button */
.btn-primary {
    background-color: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background-color: transparent;
    color: var(--cream);
    border-color: var(--cream);
    transform: translateY(-2px);
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* ---- Footer ---- */
.footer {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
    letter-spacing: 0.01em;
    color: rgba(255, 245, 210, 0.55);
}

@media (prefers-reduced-motion: reduce) {
    .btn { transition: none; }
    .btn-primary:hover,
    .btn-primary:focus-visible { transform: none; }
}
