@font-face {
		font-family: 'Gotham-Medium';
		src: local('Gotham Medium'), local('Gotham-Medium'),
				url('../fonts/Gotham-Medium.woff2') format('woff2'),
				url('../fonts/Gotham-Medium.woff') format('woff');
		font-weight: normal;
		font-style: normal;
}

@font-face {
		font-family: 'Gotham-Bold';
		src: local('Gotham Bold'), local('Gotham-Bold'),
				url('../fonts/Gotham-Bold.woff2') format('woff2'),
				url('../fonts/Gotham-Bold.woff') format('woff');
		font-weight: normal;
		font-style: normal;
}

*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
}
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	-webkit-font-smoothing: antialiased;
	color: #004764;
	background-color: #cbe3d5;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}
input, button, textarea, select {
	font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}
ul {
	list-style: none;
	padding: 0;
}
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
	 scroll-behavior: auto !important;
	}
	*,
	*::before,
	*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
	}
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7vh;
	text-align: center;
	min-height: 100vh;
	background-image: url('../img/background.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5vh 10vw;
}

.brand-logo {
	max-width: 440px;
	width: 33vw;
}
.brand-baseline {
	font-family: 'Gotham-Bold';
	font-weight: normal;
	font-size: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
	text-transform: uppercase;
	letter-spacing: .2em
}
.brand-location {
	font-family: 'Gotham-Medium';
	font-weight: normal;
	font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}


.links-wrapper {
	order: -1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	justify-content: space-between;
	gap: 10%;
	text-align: center;
	width: 100%;
	max-width: 940px;
}

.link {
	position: relative;
	overflow: hidden;
	
	/* aspect-ratio: 1/1; */
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	
	background-image: var(--url-bg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	
	border-radius: 20%;
	
	
	box-shadow: 2px 2px 4px 0 rgba(255, 255, 255, 1) inset,
							-2px -2px 4px 0 rgba(0, 0, 0, 1) inset;
}
.link:before {
	content: '';
	display: block;
	width: 100%;
	padding-top: 100%;
}
.link .img,
.link > figcaption {
	position: absolute;
	inset: 0;
}
.nacara {
	background-image: url('../img/paris-la-seine.jpg');
}
.holt {
	background-image: url('../img/paris-tour-eiffel.jpg');
}
.la-maison {
	background-image: url('../img/nice-promenade-des-anglais.jpg');
}
.link .img {
	width: 100%;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	@media (max-width: 480px) {
		padding: .5em;
	}
}
.link.holt .img {
	padding: 1.5em;
	@media (max-width: 480px) {
		padding: 1em;
	}
}
.link .img:before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background: #000;
	z-index: -1;
	opacity: 0;
	border-radius: 20%;
	transition: opacity .5s;
}
.link:hover .img:before {
	opacity: .3;
}

.link a {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 2;
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

