@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Domine:wght@400..700&display=swap');

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
}

header {
	background-color: #0C3A44;
	width: 100%;
	padding: 12px 0;
}

#header-content {
	width: 78.43%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

#header-content img {
	height: 146px;
}

nav {
	width: 100%;
}

nav ul {
	display: block;
	text-align: right;
	list-style-type: none;
}

nav li {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25em;
	text-align: center;
}

nav li:last-child {
	padding-right: 0;
}

nav a:link {
	text-decoration: none;
	color: #D2C39A;
	padding: 10px 2.083%;
}

nav a:hover {
	background-color: #245292;
	color: #fff;
	padding: 10px 2.083%;
}

#wrapper-white {
	width: 78.43%;
	background-color: #fff;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 0;
	overflow: hidden;
}

.bg-body-tertiary {
	background-color: #0C3A44 !important;
}

.navbar-toggler {
	background-color: #D2C39A;
}

.navbar .nav-link {
	white-space: nowrap;
	justify-content: right;
}

main {
	padding: 486px 2.083% 2.083%;
}

h1 {
	color:#0C3A44;
	font-family: "Cormorant Garamond", serif;
	font-size: 3em;
	font-weight: bold;
	text-align: center;
}

h2 {
	color:#0C3A44;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
}

p {
	font-size: 1.1em;
	color: #0C3A44;
	font-family: "Domine", serif;
	margin-bottom: 16px;
	line-height: 180%;
}

.navbar-nav a {
	color: #D2C39A
}

.img-row {
	display: flex;
	gap: 20px;
}

.img-row img {
	width: 50%;
	height: auto;
}

.transition-img img {
	transition: transform 0.5s ease;
}

.transition-img img:hover {
	transform: scale(1.05);
}

.single-img {
	width: 60%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.large-input {
	width: 80%;
	height: 60px;
	padding: 10px;
	font-size: 20px;
}

.btn,
#button input {
	width: 80%;
	max-width: 260px;
	min-width: 160px;
	display: block;
	margin: 0 auto;
	padding: 10px 10px;
	background-color: #0C3A44;
	color: #D2C39A;
	font-size: 1.25em;
	font-weight: bold;
	font-family: "Cormorant Garamond", serif;
	border: #000 solid 3px;
}

.btn:hover,
#button input:hover {
	background-color: #D2C39A;
	color: #000;
	border: #000 solid 3px;
}

#wrapper-form {
	width: 80%;
	background-color: #D2C39A;
	margin: 0 auto;
	text-align: center;
}

label {
	font-weight: bold;
	align-items: center;
	color:#0C3A44;
}

#wrapper-main {
	width: 100%;
	padding: 60px 0;
	background-color: #D2C39A;
	overflow: hidden;
}

#wrapper-content h2 {
	text-align: center;
	font-family: "Cormorant Garamond", serif;
	font-size: 2.25em;
	font-weight: bold;
}

#wrapper-content img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
}

#wrapper-content p {
	font-family: "Domine", serif;
	font-size: 1em;
	text-align: center;
	padding: 10px 20px;
}

.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.accommodation-grid > .accommodation:nth-child(odd):last-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 520px;
}

.accommodation {
  display: flex;
  align-items: center;
  gap: 1.5em;
  padding: 1.5em;
  background-color: #D2C39A;
  border: solid 5px #000;
  border-radius: 25px;
  flex-direction: column;
  text-align: center;
}

.accommodation img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.accommodation img:hover {
	transform: scale(1.05);
}

.accommodation-details h3 {
  font-family: "Cormorant Garamond", serif;
  color:#0C3A44;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 1rem;
}

.accommodation-details p {
  margin: 0.2rem 0;
  line-height: 1.4;
}

.accommodation-details .description {
  margin-top: 0.75rem;
}

#accommodation-info h2 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  font-size: 3em;
  color:#0C3A44;
  margin: 2.5rem 0 2.5rem;
}

footer {
	padding: 40px 0 30px;
	width: 100%;
	font-size: 0.75em;
	overflow: hidden;
	position: relative;
	background-color: #fff;
}

footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../images/forest.jpg");
	background-size: cover;
	background-position: center;
	z-index: 0;
	opacity: 0.2;
}

footer h3 {
	font-family: "Cormorant Garamond", serif;
	color: #0C3A44;
	text-transform: uppercase;
	font-size: 1.5em;
	font-weight: bold;
}

footer p {
	font-family: "Domine", serif;
	font-weight: bold;
	color: #0C3A44;
	opacity: .80;
	z-index: 1;
	font-size: 1.1em;
}

#footer-content {
	width: 78.43%;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

/* -------------- SLIDESHOW -------------- */

#slideshow-wrapper {
	width: 100%;
	height: 441px;
	overflow: hidden;
}

#slideshow {
	width: 100%;
	height: 441px;
	overflow: hidden;
	white-space: nowrap;
}

#slideshow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background-color: #D2C39A;
}

.circle {
	display: inline-block;
	background-color: lightgrey;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	margin-right: 1.5625%;
}

#circle-nav {
	margin-top: -50px;
	text-align: center;
}

/* -------------- MOBILE -------------- */

@media (max-width: 900px) {
  .accommodation-grid {
    grid-template-columns: 1fr;
  }
}