:root {
    /*--overboard-red: #da1b0d;*/
    --overboard-red:    #d92c2c;
    --overboard-navy:   #111939;
    --overboard-brown:  #281409;
    --outline-width:    0.15vmax;
    --global-light-x:   -0.3vmax;
    --global-light-y:   0.4vmax;
    --global-light:     1.3vmax;
}

@font-face { font-family: Future-West; src: url('ASSETS/Future\ West.ttf'); }
@font-face { font-family: Kirsty; src: url('ASSETS/Kirsty\ Rg.otf'); }

*{margin:0}
.wrapper, html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    padding: 0;
}

p {
    font-family: "Kirsty";
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
	color: #FFFFFF;
}

span {
    font-family: "Kirsty";
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
	color: #FFFFFF;
}

ul {
	color: #d4d4d4;
}

.content-main {
	height: 100%;
	width: 100%;
    overflow-x: hidden;
}

.header-main {
    position: fixed;
    height: 8vmax;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.header-selectable {
    height: 8vmax;
    margin-left: 0.5vmax;
    margin-right: 0.5vmax;
    margin-top: -3vmax;

    border-bottom-left-radius: 1vmax;
    border-bottom-right-radius: 1vmax;

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_1.jpg");
    background-size: cover;
    outline: var(--outline-width) solid var(--overboard-brown);
    transition: .2s;

    filter: brightness(50%) contrast(100%);
    
    display: flex;
    justify-content: center;
    align-items: flex-end;

    pointer-events:auto;
}

.header-selectable:hover {
    margin-top: 0;

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    outline: var(--outline-width) solid var(--overboard-brown);

    filter: brightness(100%) contrast(100%);
}

.header-selected {
    height: 8vmax;
    margin-left: 0.5vmax;
    margin-right: 0.5vmax;
    margin-top: 0;

    border-bottom-left-radius: 1vmax;
    border-bottom-right-radius: 1vmax;

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_1.jpg");
    background-size: cover;
    outline: var(--outline-width) solid var(--overboard-brown);
    transition: .2s;

    filter: brightness(100%) contrast(100%);
    
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.header-static {
    height: 8vmax;
    margin-left: 0.5vmax;
    margin-right: 0.5vmax;
    margin-top: 0;

    border-bottom-left-radius: 1vmax;
    border-bottom-right-radius: 1vmax;
    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_1.jpg");
    background-size: cover;
    outline: var(--outline-width) solid var(--overboard-brown);

    filter: brightness(100%) contrast(100%);
    
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.burned {
    mix-blend-mode: color-burn;
}

.hero-video {
    position: fixed;
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.fill-image {
    width: 90%;
	height: 90%;
    margin: 1vmax;
	object-fit: contain;
	object-position: center;
}

.cover-image {
    width: 100vw;
    height: 100vh;

    background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fullscreen-image {
    width: 100vw;

    background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    background-attachment: fixed;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.wood-textbox {
    width: 80vw;

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    outline: var(--outline-width) solid var(--overboard-brown);
    border-radius: 2vmax;

    display: flex;
    flex-direction: row;
    flex-shrink: 1;
    flex-grow: 0;
}


.wood-element {
    margin: 1vmax;

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    outline: var(--outline-width) solid var(--overboard-brown);
    border-radius: 2vmax;

    display: flex;
    flex-shrink: 1;
    flex-grow: 0;
}

.card-image {
    margin: 1vmax;
    aspect-ratio: 1.8;
    overflow: hidden;
    border-radius: 1vmax;
    box-shadow: inset var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    outline: var(--outline-width) solid var(--overboard-brown);
}

/* Change how the cards are laid out depending on portrait vs landscape */
@media (orientation: landscape) {
    .wood-element {
        width: 80vw;
        flex-direction: row;
    }

    .card-image {
        width: 50vw;
    }
}

@media (orientation: portrait) {
    .wood-element {
        flex-direction: column;
    }

    .card-image {
        width: 80vw;
    }
}

.card-text {
    min-width: 0;
    transition: .5s;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;

    text-align: center;
    margin: 1vmax;
    padding: 1vmax;

    color: white;

    text-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    box-shadow: inset var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_2.jpg");
    border-radius: 1vmax;
    outline: var(--outline-width) solid var(--overboard-brown);
}

.card-text-fullsize {
    overflow: hidden;
    margin: 1vmax;
    padding: 1vmax;
    padding: 1vmax;

    text-align: center;
    margin: 1vmax;

    text-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    box-shadow: inset var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_2.jpg");
    background-size: cover;
    border-radius: 1vmax;

    flex-grow: 1;
}

.card-text-header {
    margin-top: 1vmax;
    font-size: 4vmax;
    line-height: 4vmax;
    color: var(--overboard-red);
}

.card-text-email {
    margin-top: 1vmax;
    font-size: 4.2vw;
    line-height: 4.2vw;
    color: white;
}

.card-text-body {
    margin-top: 1vmax;
    font-size: 2vmax;
    line-height: 2.3vmax;
}

.left-aligned {
    align-self: flex-start;
    justify-content: end;
}

.right-aligned {
    align-self: flex-end;
    justify-content: start;
}

#claim-your-seat {
    background-image: url("ASSETS/claim_your_seat_blue.jpg");
}

#red-board {
    background-image: url("ASSETS/red_board.jpg");
}

#badwater-cards {
    background-image: url("ASSETS/badwater_cards.jpg")
}

#stake-your-claim {
    background-image: url("ASSETS/stake_your_claim.jpg")
}

#bluff {
    background-image: url("ASSETS/bluff.jpg")
}

.text-tagline {
    text-align: center;

    font-size: 13vw;
    line-height: 13vw;
    color: var(--overboard-red);
    /*text-shadow: 0 0 2vmax var(--overboard-red);*/

    mix-blend-mode:multiply;
}

.text-section {
    text-align: center;
    width: fit-content;
    align-self: center;
    padding-top: 1vmax;
    padding-bottom: 1vmax;
    padding-left: 2vw;
    padding-right: 2vw;
    margin: 1vmax;

    font-size: 5vmax;
    line-height: 5vmax;
    color:var(--overboard-brown);

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    outline: var(--outline-width) solid var(--overboard-brown);
    border-radius: 1vmax;
}

.text-badwater {
    text-align: center;

    font-size: 15vw;
    line-height: 15vw;
    color: var(--overboard-red);

    mix-blend-mode:multiply;
}

.text-header {
    margin: 1.5vw;
    font-size: 2vw;
    line-height: 2vw;
    color:var(--overboard-brown);
}

.text-mailing-list {
    text-align: center;
    width: fit-content;
    align-self: center;
    padding: 2vw;
    margin: 10vh auto;

    font-size: 5vw;
    line-height: 5vw;
    color: var(--overboard-red);

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;

    border-radius: 2vmax;

    backdrop-filter: blur(5px) brightness(0.2);

    transition: .2s;
}

.text-mailing-list:hover {
    font-size: 5.2vw;
    line-height: 5.2vw;

    backdrop-filter: blur(1vmax) brightness(0.4);
    color: rgb(255, 0, 0);
    box-shadow: var(--global-light-x) var(--global-light-y) calc(var(--global-light)*2) black;
    text-shadow: 0 0 1vmax rgb(255, 0, 0);
}

.text-mailingform-header {
    text-align: center;
    align-self: center;
    margin: 1vmax;

    font-size: 3vmax;
    line-height: 3.5vmax;
}

.text-mailingform-body {
    font-size: 1.5vmax;
    line-height: 1.5vmax;
}

.simple-row {
    display: flex;
    flex-direction: row;
}

.simple-column {
    display: flex;
    flex-direction: column;
}

.form-container {
    width: 85vw;

    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    backdrop-filter: blur(1vmax) brightness(0.4);
    border-radius: 2vmax;
    background-color: rgba(0,0,0,0);

    align-self: center;
    padding: 2vw;
    margin: 1vmax auto;

    display: flex;
    flex-direction: column;
}

.form-subcontainer {
    align-self: center;
    width: 80%;

    border-radius: 2vmax;
    box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    outline: var(--outline-width) solid var(--overboard-brown);

    align-self: center;
    padding: 1vmax;
    margin: 1vmax auto;

    display: flex;
    flex-direction: column;
}

.mailingform-email {
    height: 4vmax;
    font-size: 2vmax;
    line-height: 2vmax;
    border-radius: 1vmax;
    padding: 1vmax;

    text-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    box-shadow: inset var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    border: none;
    outline: var(--outline-width) solid var(--overboard-brown);

    font-family: "Kirsty";
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
	color: #FFFFFF;
}

#mailingform-status {
    width: fit-content;
    padding: 0.5vmax 1.2vmax;
    margin: 1vmax 0;
    border-radius: 1vmax;
    color: var(--overboard-red);

    font-size: 1.5vmax;
    line-height: 1.5vmax;

    text-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    box-shadow: inset var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    border: none;
    outline: var(--outline-width) solid var(--overboard-brown);
}

.checkbox-assembly {
    flex: 1;
    display: flex;
    flex-direction: row;

    padding: 0.5vmax 1vmax;
    margin: 1vmax 0;
    margin-right: 1vmax;
    border-radius: 1vmax;
    color: var(--overboard-red);

    text-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
    box-shadow: inset var(--global-light-x) var(--global-light-y) var(--global-light) black;
    background-image: url("ASSETS/wood_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
    border: none;
    outline: var(--outline-width) solid var(--overboard-brown);
}

.form-checkbox {
    width: 1.5vmax;
    height: 1.5vmax;
    margin: auto 0;
    margin-right: 1vmax;
    accent-color: var(--overboard-red);
}

.form-submit {
    text-align: center;
    font-size: 3vmax;
    line-height: 5vmax;
    color: var(--overboard-red);

    box-shadow: var(--global-light-x) var(--global-light-y) 1vw black;

    background-image: url("ASSETS/wood_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;

    border: none;
    border-radius: 1vmax;

    transition: .2s;

    font-family: "Kirsty";
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.form-submit:hover {
    text-shadow: 0 0 2vmax var(--overboard-red);
    box-shadow: 0 0 1vw black;
}

.disabled {
    pointer-events: none;

    text-align: center;
    font-size: 3vmax;
    line-height: 5vmax;
    color: var(--overboard-red);

    box-shadow: inset var(--global-light-x) var(--global-light-y) var(--global-light) black;
    

    border: none;
    border-radius: 1vmax;
    background-image: url("ASSETS/wood_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: center;

    transition: .2s;

    font-family: "Kirsty";
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.cf-turnstile {
    margin-left: 1vmax;
    margin-top: 1vmax;
    width: fit-content;
    height: fit-content;
    padding: 0;
    border: none;
}

.header-page {
    height: 20vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

@media (orientation: landscape) {
    .howto-embed {
        border-radius: 1vmax;
        box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
        width: 60vw;
        height: 33vw;
        margin: 1vmax auto;
    }
}

@media (orientation: portrait) {
    .howto-embed {
        border-radius: 1vmax;
        box-shadow: var(--global-light-x) var(--global-light-y) var(--global-light) black;
        width: 90vw;
        height: 50vw;
        margin: 1vmax auto;
    }
}

.flex-horizontal {
	display: flex;
	flex-direction: row;
	justify-content: start;
}

.flex-horizontal-page {
    height: 80vh;
	display: flex;
	flex-direction: row;
	justify-content: start;
	width: 100%;
    margin: 0;
}

.flex-vertical {
    flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: start;
	height: 100%;
    transition: flex 0.2s;
	transition-timing-function: ease;
    margin: 0;
}

.margins {
    margin: 1vmax;
}

.spacer {
    flex: 0.5;
}

.flex-vertical:hover {
    flex:1.2;
}

.full-height {
	height: 100%;
}

.flex-parent-1 {
	flex: 1;
    pointer-events: none;
}

.flex-parent-2 {
	flex: 2;
    pointer-events: none;
}

.nowidth {
    display: contents;
    pointer-events: auto;
}

.unselectable {
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
}

.site-footer {
	height: 10vh;
	flex-direction: row;
	justify-content: center;
}

::selection {
	color: var(--overboard-red);
	text-shadow: 0 0 2vmax var(--overboard-red);
	background: none;
}