/**
 * Fonts
 */
/* windsong-regular - latin */
@font-face {
    font-family: 'WindSong';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/WindSong/windsong-v1-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/WindSong/windsong-v1-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/WindSong/windsong-v1-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/WindSong/windsong-v1-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/WindSong/windsong-v1-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/WindSong/windsong-v1-latin-regular.svg#WindSong') format('svg'); /* Legacy iOS */
}

/* montserrat-regular - latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Montserrat/montserrat-v18-latin-regular.eot'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Montserrat/montserrat-v18-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/Montserrat/montserrat-v18-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/Montserrat/montserrat-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/Montserrat/montserrat-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/Montserrat/montserrat-v18-latin-regular.svg#Montserrat') format('svg'); /* Legacy iOS */
}

body {
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/**
 * Primary Navigation
 **/

.primary-nav {
    width: 100%;

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

    position: fixed;
    top: 0;
    left: 0;

    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);

    z-index: 1000;

    overflow-x: auto;
}

.primary-nav__list {
    width: 100%;
    max-width: 1024px;
    list-style-type: none;
    display: flex;
    justify-content: stretch;
    margin: 0 auto;
}

.primary-nav__list-item {
    display: inline-block;
    flex-grow: 1;
    text-align: center;
    padding: 0 0.25em;
}

.primary-nav__link {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 1em 0.5em;
    box-sizing: border-box;

    text-decoration: none;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;

    transition: color 0.25s ease,
                background-color 0.25s ease;
}

.primary-nav__list .primary-nav__list-item:first-child {
    padding-left: 0;
}

.primary-nav__list .primary-nav__list-item:last-child {
    padding-right: 0;
}

.primary-nav__link:hover {
    color: #fff;
    background: rgba(152, 28, 65, 0.8);
}

/**
 * Header
 **/
.header {
    margin-top: 50px;
}

/**
 * Content
 **/

.section {
    position: relative;
    min-height: 100vh;
    align-items: center;
    justify-content: center;

    text-align: center;

    margin-top: -3em;
    padding: 3em 0;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}

.title-section {
    padding-top: 0;
    margin-top: 0;
}

.section__content--static-bg {
    background: #fff;
}

.section__content {
    width: 100%;
    height: 100%;
    max-width: 1024px;

    margin: 0 auto;
    flex-grow: 1;
}

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

.one-column,
.two-column {
    display: flex;
    text-align: left;
    flex-grow: 1;
}

.one-column__full {
    position: relative;
    flex-grow: 1;
    padding: 1em;
    width: 100%;
    box-sizing: border-box;
}

.one-column__half {
    position: relative;
    flex-grow: 0;
    padding: 1em;
    width: 50%;
    box-sizing: border-box;
}

.two-column__left,
.two-column__right {
    position: relative;
    flex-grow: 1;
    padding: 1em;
    width: 50%;
    box-sizing: border-box;
}

.two-column__left:after {
    content: '';
    display: block;

    position: absolute;
    right: 0;
    top: 0.5em;
    bottom: 0.5em;
    width: 1px;

    background: #000;
}

/**
 * Headers
 **/
h1 {
    font-family: "WindSong", cursive, serif;
    font-size: 70pt;
    margin-top: 0.5em;

    position: relative;

    display: inline-block;
}

h2 {
    font-family: "WindSong", cursive, serif;
    font-size: 50pt;
    margin-top: 0.5em;

    position: relative;

    display: inline-block;

    margin-left: -0.5em;
}

h3 {
    font-family: "WindSong", cursive, serif;
    font-size: 25pt;
}

h3 ~ h3 {
    margin-top: 1em;
}

.title-container {
    margin-top: 3em;
}

.title-amp,
.title {
    text-shadow: 0 0 10px #000;
    margin-top: 0;
    font-size: 70pt;
}

.title {
    line-height: 1.5;
    margin-left: -1em;
}

.title-amp {
    text-decoration: none;
    display: block;
}

/**
 * Parallax Scrolling
 **/

.parallax {
    position: relative;
    height: 100vh;
    
    overflow-x: hidden;
    overflow-y: hidden;

    color: #fff;
    background: #333;
}

.parallax::before {
    content: '';

    transform: scale(1.2);

    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
}

@supports (-webkit-overflow-scrolling: touch) {
    .parallax::before {
        background-attachment: scroll;
    }
}


.bg1::before {
    background-image: url('../img/bg1.jpg');
}

.bg2::before {
    background-image: url('../img/bg2.jpg');
}

.bg3::before {
    background-image: url('../img/bg3.jpg');
}

/**
 * Map
 */
.map-container {
    display: flex;
    justify-content: stretch;
}

.map {
    width: 100%;
    height: 100%;
    flex-grow: 1;
}

/**
 * Links
 **/
.main a[href] {
    color: black;
}

/**
 * Alignment
 **/
.center-vertical {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.center-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/**
 * Misc
 **/
abbr[title] {
    border-bottom: none !important;
    cursor: inherit !important;
    text-decoration: none !important;
}

.svgFilter {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    width: 1px;
    position: absolute;
}

.simple-list {
    list-style: disc;
    margin-left: 1em;
}

p {
    margin: 1em 0;
    line-height: 1.2;
}

.about-pic__container {
    display: flex;
    flex-direction: column;
}

.about-pic {
    background: url(../img/about/ring1.jpg);
    background-position-x: 30%;
    background-size: cover;
    width: 100%;
    height: 100%;
    flex-grow: 1;
}

cite {
    font-style: italic;
}