* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --void: #100c0e;
    --void2: #1a1416;
    --grey: #0e0e0e;
    --blood: #7a1f1f;
    --blood-light: #b8453f;
    --moss: #3d4a35;
    --moss-light: #6b7a5e;
    --bone: #d8cfc0;
    --text-dim: #8a7d70;
    --line: rgba(216,207,192,0.1);
}

::selection {
    background: var(--blood);
}

body {
    font-family: 'Cinzel', Arial, Helvetica, sans-serif;
    min-height: 110vh;
}

.header-main {
    min-height: 100vh;
    position: relative;
    background: url(images/rhodes-hill-main.webp) center no-repeat;
    background-size: 100% 100%;
}

.header-main::before {
    position: absolute;
    content: '';
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.header-title a {
    display: block;
    position: relative;
    z-index: 1;
    color: var(--blood-light);
    font-weight: 600;
    padding: 2vw 0 0 5vw;
    font-size: clamp(1.5rem, 1.8vw, 2.5rem);
    text-decoration: none;
    margin-bottom: -3%;
}

.header-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.header-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    width: 50%;
    font-weight: 500;
    text-align: center;
    color: var(--bone);
    margin-bottom: 1.4rem;
}

.header-text span {
    color: var(--blood-light);
    font-style: italic;
    font-weight: 600;
    font-size: 3.3rem;
    letter-spacing: 0.2rem;
    font-family: 'Crimson Text', Arial, Helvetica, sans-serif;
}

.header-text a {
    text-decoration: none;
    font-size: clamp(1.2rem, 1.9vw, 2rem);
    border-bottom: 2px solid var(--blood-light);
    color: var(--text-dim);
    font-weight: 500;
    text-align: center;
    width: 23%;
    transition: color 0.4s ease;
}

.header-text a:hover {
    color: var(--blood-light);
}

footer {
    margin-top: -0.1%;
    text-align: center;
    padding: 1.8vw;
    background: var(--grey);
    color: var(--bone);
    font-size: clamp(1rem, 1.2vw, 2.5rem);
}

footer span {
    color: var(--blood-light);
    font-weight: 500;
}

footer p:last-of-type {
    display: none;
}

@media (max-width: 767px) {
    .header-main {
        background: url(images/rhodes-hill-main-mobile.webp) center no-repeat;
        background-size: 100% 100%;
    }
    .header-title {
        text-align: center;
        padding: 25vw 5vw 0 0;
    }
    .header-text {
        margin-top: -30%;
    }
    .header-text h1 {
        width: 85%;
    }
    .header-text span {
        font-size: 2rem;
        letter-spacing: 0.1rem;
    }
    .header-text a {
        width: 58%;
        padding-bottom: 1vw;
    }
    .header-text a:active {
        color: var(--blood-light);
    }
    footer {
        margin-top: -0.25%;
        padding: 8vw 5vw;
    }
    footer p:first-of-type {
        display: none;
    }
    footer p:last-of-type {
        display: block;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .header-title a {
        padding: 8vw 0 0 8vw;
    }
    .header-main {
        background: url(images/rhodes-hill-main-tablet.webp) center no-repeat;
        background-size: 100% 100%;
        margin: -0.2% 0;
    }
    .header-text {
        margin-top: -15%;
    }
    .header-text h1 {
        width: 60%;
    }
    .header-text span {
        font-size: 2.2rem;
    }
    .header-text a {
        width: 30%;
        padding: 0.5vw;
    }
}