
@font-face {
    font-family: 'Fogtwo';
    src: url('../fonts/Fogtwo/FogtwoNo5.woff2') format('woff2');
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Lexend';
    src: url('../fonts/Lexend_Exa/LexendExa-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Melodrama-Regular';
    src: url('../fonts/Melodrama/Melodrama-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Melodrama-Medium';
    src: url('../fonts/Melodrama/Melodrama-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Melodrama-Semibold';
    src: url('../fonts/Melodrama/Melodrama-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
    font-style: normal;
}
@font-face {
    font-family: 'Melodrama-Bold';
    src: url('../fonts/Melodrama/Melodrama-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

:root {
    --current-tab-accent: #063579;

    --main-accent-color: #063579;
    --dark-blue-accent: #021527;

    --header-color: #ffffffc4;
    --background-color: white;
    --footer-background: black;
    --text-color: black;
    --text-color-dim: rgb(108, 108, 108);
    --text-color-inverse: white;

    --contrast-item-background: #bfbfbf;
    --contrast-item-color: rgb(0, 0, 0);

    --main-content-background: white;
    --blur-background: rgb(255, 255, 255, 0.8);
}
 

:root {
    --accent-font-light: Melodrama-Light;
    --accent-font-regular: Fogtwo;
    /* --accent-font-regular: Lexend; */
    --accent-font-bold: Melodrama-Bold;
	--header-height: 80px;
	--header-tucked-height: 60px;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
    background-color: var(--main-content-background);
}

/* Header */
header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: var(--header-height);
	color: var(--text-color);
	position: fixed;
	top: 0;
	z-index: 1000;
	transition: height 0.3s;
	width: 100%;
    font-size: 0.8rem;
    letter-spacing: .1em;

}
header {
  user-select: none;
}


.header-bg {
	background-color: var(--header-color);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
    transition: background-color .4s;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
}

header.hidden {
    height: var(--header-tucked-height);
}

.header-content {
	width: calc(100% - 40px);
	max-width: 1400px;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-right-section {
	height: 100%;
	display: flex;
	align-items: center;
}
.header-cta {
	height: 32px;
	width: 130px;
	border: 2px solid black;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	color: black;
    transition: border .2s, color .2s, background-color .2s;
}
.header-cta:hover {
    background-color: black;
    color: white;
}

.header-logo-a {
    height: 100%;
    display: flex;
    align-items: center;
    border-bottom: none !important;
    position: absolute;
	right: 50%;
	transform: translateX(50%);
}

.header-logo-and-nav {
    display: flex;
    align-items: center;
    margin-left: 50px;
    gap: 30px;
}

.logo {
    height: calc(100% - 20px);
    transition: height 0.3s;
}

.mobile-nav-only {
    display: none !important;
}

#nav-list {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 100%;
}

#nav-list-collapse {
    font-size: 25px;
    margin-left: 10px;
    top: 10px;
    position: absolute;
    color: var(--text-color);
    cursor: pointer;
}

#nav-list ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    list-style-type: none;
    padding-left: 0;
    text-align: center;
    list-style-type: none;
    margin: 0;
    height: 100%;
}


#nav-list ul li {
    height: 100%;
	display: flex;
	align-items: center;
}

/* Base link style */
nav ul li a {
	color: #000000;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	font-family: var(--accent-font-regular);
	font-weight: 600;
	color: #444;
    font-size: 1.2rem;
    transition: box-shadow .2s;
    box-shadow: inset 0px 0 0 #a5a5a5;
    -webkit-user-drag: none;
    user-select: none;
}

/* Hover effect — soft background and lift */
nav ul li a:hover {
	color: black;
    box-shadow: inset 0px -3px 0 #a5a5a5;
}

/* Current (active) tab */
nav ul li a.current {
	color: black;
    box-shadow: inset 0px -3px 0 var(--main-accent-color);
}


.mobile-only {
    display: none;
}

#hamburger-icon {
    cursor: pointer;
	margin-right: 10px;
}

.hamburger-line {
	stroke: #444;
    stroke-width: 2;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Default (Hamburger) State */
.hamburger-line.nav_top {
    transform-origin: center;
}

.hamburger-line.nav_middle {
    opacity: 1;
}

.hamburger-line.nav_bottom {
    transform-origin: center;
}

/* Active (X) State */
#hamburger-icon.nav_active .hamburger-line.nav_top {
    transform: translateY(6px) translateX(-6px) rotate(45deg);
}

#hamburger-icon.nav_active .hamburger-line.nav_middle {
    opacity: 0;
}

#hamburger-icon.nav_active .hamburger-line.nav_bottom {
    transform: translateY(-6px) translateX(-6px) rotate(-45deg);
}

.favourites-head-button {
	width: 50px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.favourites-head-button svg {
    height: 30px;
	width: fit-content;
    aspect-ratio: 1;
}

.favourites-head-button {
    position: relative;
}

.favourites-badge {
	position: absolute;
	bottom: 0;
	left: 6px;
	height: 20px;
	font-family: system-ui;
	font-weight: 200;
	background: var(--main-accent-color);
	color: #fff;
	font-size: 14px;
	border-radius: 10px;
	display: flex;
	aspect-ratio: 1;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	transform: scale(0);
    letter-spacing: normal;
    line-height: 1;
	opacity: 0;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.favourites-badge.active {
    transform: scale(1);
    opacity: 1;
}


/* End of Header */

/* ~~~~~~~~~~~~~ */

/* Start of Body */

body {
    font-family: var(--accent-font-regular);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    color: #000000;
    background-color:  white;
}

.modal-open {
    overflow: hidden !important;
}

main {
    transition: filter 0.3s;
}

body.modal-open main {
    filter: brightness(0.6);
    pointer-events: none;
}


main {
    margin-top: var(--header-height);
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    background: var(--main-content-background);
    min-height: calc(100vh - var(--header-height));
    transition: filter 0.3s, margin-top 0.3s;
}

main.hidden {
    margin-top: var(--header-tucked-height);
}


.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1000px;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 20px;
}


h1,
h2 {
    font-family: var(--accent-font-regular);
    margin: 0
}

h2 {
    font-weight: 500;
}
span,
h2,
h3,
h4,
h5 {
    letter-spacing: .1em;
}

span {
    line-height: 1.6;
    font-size: 1rem;
	font-weight: 500;
	font-size: 0.8rem;
}

a {
    text-decoration: none;
    letter-spacing: .1em;
	font-size: 0.9rem;
    font-weight: 500;
    color: #444;
}

.tiny-divider {
	width: 80px;
	height: 1px;
	border: none;
	background-color: #cecece;
}
.thin-span {
    font-weight: 300;
	letter-spacing: unset;
	font-size: 1rem;
    font-family: system-ui;
}
.thin-p {
    letter-spacing: unset;
	font-weight: 200;
	font-size: 0.9rem;
	color: #444;
	line-height: 1.6;
}

.main-section-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}
.main-section-title {
	margin-bottom: 1.5rem;
	line-height: 1.1;
}
.main-section-p {
	margin-bottom: 0;
	opacity: 0.85;
	letter-spacing: .04em;
	font-weight: 300;
	line-height: 1.6;
}

.set-apart-section {
    width: calc(100% - 40px);
	max-width: 1140px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
    padding: 30px 0;
    gap: 1rem;
}

.set-apart-section a,
.set-apart-button {
    text-decoration: none;
    padding-bottom: 4px;
    box-shadow: inset 0px -3px 0 var(--main-accent-color);
    width: fit-content;
    color: #444;
	letter-spacing: .1em;
	font-size: 1rem;
    transition: box-shadow .3s, color .3s;
	cursor: pointer;
}
@media (min-width: 768px) {
    .set-apart-section a:hover,
	.set-apart-button:hover {
        color: white;
        box-shadow: inset 0px -25px 0 var(--main-accent-color);
    }
}
.set-apart-section h2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
}
.set-apart-section .h5 {
    font-weight: 600;
	font-size: 1rem;
}
.set-apart-summary {
	max-width: 560px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

@media (max-width:768px) {
    .set-apart-section {
        flex-direction: column;

    }

    .set-apart-section h2 {
        font-size: 1.3rem;
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

.secondary-section-title-and-desc {
	margin-bottom: 20px;
	width: calc(100% - 40px);
} 

.hero {
    width: 100%;
    position: relative;
    height: calc(100dvh - var(--header-height));
    overflow: hidden;
}

.hero video,
.hero img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}


.hero-text-overlay {
    text-transform: uppercase;
    font-family: var(--accent-font-regular);
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.5rem, 5vw, 4rem);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .25));
}

.hero-title {
	font-size: clamp(3rem, 6vw, 7rem);
	font-weight: 100;
	line-height: 1.05;
	color: #fff;
	max-width: 15ch;
}

.hero-subtitle {
    margin-top: 0.75rem;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 200;
    color: rgba(255, 255, 255, .9);
    max-width: 38ch;
    letter-spacing: .1em;
}

.hero-title,
.hero-subtitle {
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-action-buttons {
    position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 1rem;
    z-index: 1;
}

.hero-action-buttons a,
.hero-action-buttons button {
	text-decoration: none;
	color: white;
	padding: 14px 20px;
    background-color: transparent;
    font-family: var(--accent-font-regular);
	border: 3px solid white;
    font-size: 1.3rem;
    transition: background-color .2s, border-color .2s;
    letter-spacing: .1em;
    cursor: pointer;
    font-weight: 500;
}

.hero-action-buttons a:hover,
.hero-action-buttons button:hover {
    background-color: var(--main-accent-color) !important;
    border-color: var(--main-accent-color);
    color: white !important;
}
@media (max-width:768px) {
    .hero-action-buttons {
	    flex-direction: column;
    }
    .hero-action-buttons a, .hero-action-buttons button {
	    text-align: center;
        padding: 10px 16px;
        font-size: 1.2rem;
    }
}

.href-action-button {
    height: 40px;
	width: fit-content;
	box-shadow: inset 0 0 0px 2px var(--main-accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
    transition: box-shadow .2s, color .2s;
    background-color: transparent;
    text-decoration: none;
	letter-spacing: .1em;
	font-size: 1rem;
	font-weight: 500;
	color: #444;
    border: none;
    cursor: pointer;
    font-family: var(--accent-font-regular);
}
.href-action-button:hover {
    box-shadow: inset 0 0 0px 21px var(--main-accent-color);
    color: white;
}
/* End of Body */

/* ~~~~~~~~~~~~~ */

.no-select {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.no-select img {
    pointer-events: none;
    -webkit-user-drag: none;
}

.el_fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  will-change: opacity, transform;
}

.el_fade-in.is-active {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1200px) {

    :root {
        --header-height: 70px;
        --header-tucked-height: 60px;
    }

    .mobile-nav-only {
        display: flex !important;
    }

    #nav-list.show {
		max-width: 300px;
    }

    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: flex;
    }

    .header-cta {
       	height: 34px;
        width: 40px;
        border: none; 
    }
    .header-cta:hover {
        background-color: transparent;
        color: black;
        border: none;
    }
    .header-cta svg {
        height: 24px;
		width: 24px;
    }

    .header-logo-and-nav {
        margin-left: 0px;
    }

    .hamburger-menu {
        display: block;
    }
    /* Mobile menu */
    #nav-list {
		z-index: 1000;
		height: 100%;
		border-radius: 0;
		position: fixed;
		top: var(--header-height);
		right: 0;
		transform: unset;
		transition: top .3s, max-width 0.4s ease;
		left: 0;
		width: 300px;
		background: white;
		overflow: hidden;
		max-width: 0;
    }

    header {
        transition: background-color .4s, height .4s;
        background-color: transparent;
    }
    .header-bg.nav-open {
        background-color: white;
    }

    #nav-list ul {
		flex-direction: column;
		margin: 20px 60px;
		align-items: flex-start;
		height: fit-content;
		gap: 24px;
    }
    nav ul li a {
	    font-size: 1.5rem;
    }

    #tucked-header.hidden #nav-list {
        top: var(--header-tucked-height);
    }
}


@media (max-width: 768px) {
    .language-switcher {
    	right: 40px;
    }

    :root {
        --header-height: 65px;
        --header-tucked-height: 65px;
    }
    .header-bg {
        background-color: white;
        backdrop-filter: unset;
        -webkit-backdrop-filter: unset;
    }
    header {
        box-shadow: 0 2px 4px 0px #00000024;
    }

    #nav-list ul {
        margin: 20px;
    }

    .logo {
        max-width: 250px;
        object-fit: contain;
    }
} 


#snackbar {
	position: fixed;
	bottom: -200px;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px 20px;
	background-color: var(--main-accent-color);
	color: white;
	border-radius: 20px;
	transition: bottom .3s;
	width: fit-content;
	max-width: calc(100% - 80px);
	white-space: nowrap;
}

#snackbar.show {
	bottom: 20px;
}