@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.1/font/bootstrap-icons.css");
html {
	padding: 0px;
	margin: 0px;
	min-width: fit-content;
}
body {
	font-family: 'Poppins', sans-serif;
	margin: 0px;
	padding: 0px;
	background: #0d0c0c;
	font-size: 1rem;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
ul li::before {
	content: "\200B";
}
li {
	list-style-type: none;
}
a:link {
	color: #291e04;
	text-decoration: none;
}
a:visited {
	color: #291e04;
}
a:hover {
	color: aqua;
}
/* Span Veraman */
.bolder-veraman {
	color: #379683;
	font-size: 2.5rem;
	font-weight: bolder;
}
.bold-veraman {
	color: #379683;
	font-size: 2rem;
	font-weight: bold;
}
.lighter-veraman {
	color: #379683;
	font-size: 1.5rem;
	font-weight: lighter;
}
/* Span Pink */
.bolder-pink {
	color: #c37a7a;
	font-size: 2.5rem;
	font-weight: bolder;
}
.bold-pink {
	color: #c37a7a;
	font-size: 2rem;
	font-weight: bold;
}
.lighter-pink {
	color: #c37a7a;
	font-size: 1.5rem;
	font-weight: lighter;
}
/* Span Text Grey */
.grey-bolder {
	color: #bbbbbb;
	font-weight: bolder;
	font-size: 2.5rem;
}
.text-grey {
	color: #bbbbbb;
}
.italic-grey {
	color: grey;
	font-style: italic;
}
.italic-white {
	color: white;
	font-style: italic;
}
/* TEXT PINK */
.text-pink {
	color: #c37a7a;
}
/* TEXT WHITE */
.text-white-bolder {
	color: #ffffff;
	font-weight: bolder;
	font-size: 1.5rem;
}
.text-white-bold {
	color: #ffffff;
	font-weight: bold;
	font-size: 1rem;
}
/* Navbar */
.navbar {
	position: fixed;
	width: 100%;
	max-width: 100%;
	background-color: #89999e;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	opacity: 0.8;
	font-size: 20px;
	padding: 0;
	top: 0;
	left: 0;
	z-index: 2;
}
/* Logo */
.logo {
	flex: 20%;
	display: inline-flex;
	align-items: center;
}
.logo-img {
	width: 50px;
	height: 50px;
}
.logo a {
	padding: 20px;
}
/* Nav List */
.nav-list {
	padding: 0 20px 0 0;
	margin: 0;
}
.list-item {
	display: inline-block;
	padding: 20px 10px;
}
.menu {
	display: none;
}
.menu-line {
	width: 20px;
	height: 3px;
	background-color: black;
	margin-bottom: 4px;
}
/* Header */
.header {
	position: relative;
	height: 100%;
	width: 100%;
	min-height: 100%;
	max-width: 100%;
	z-index: 0;
	padding-top: 3rem;
}
.parallax-image {
	position: fixed;
	height: 100%;
	width: 100%;
	min-height: 100%;
	max-height: 100%;
	max-width: 100%;
	top: 0;
	left: 0;
	background-image: url("/img/genoa.jpg");
	/* linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	z-index: -1;
}
.header-column {
	position: relative;
	display: flex;
	flex-direction: column;
	top: 20%;
	align-items: center;
}
.section-header {
	flex-direction: column;
	align-items: center;
	color: #c37a7a;
	font-size: 1.2rem;
	margin: 0 10px 0 10px;
	padding: 15px 15px 15px 15px;
	text-align: center;
}
.header-tag {
	width: 80%;
	padding: auto;
	margin: auto;
	color: black;
}
.buttons {
	display: flex;
	flex-direction: row;
}
.bu {
	border: none;
	text-align: center;
	text-decoration: none;
	font-size: 1.2rem;
	padding: 1rem;
	margin: 2rem 1rem;
	cursor: pointer;
	border-radius: 5px;
	color: white;
}
.button-book {
	background-color: #c37a7a;
}
.button-learn {
	background-color: #379683;
}
.icons {
	display: flex;
	flex-direction: row;
	padding: 1rem;
	text-align: center;
}
.bi-col {
	padding: 1rem 2rem;
}
.bi {
	font-size: 3rem;
	color: #33a15a;
}
/* About us */
.about-us {
	position: relative;
	display: flex;
	flex-direction: row;
	background-color: #000000;
	padding: 2rem;
	z-index: 1;
}
.about-desc {
	flex: 50%;
	padding: 2rem;
}
.about-img {
	flex: 50%;
	padding-top: 6rem;
	text-align: center;
}
.about-img > img {
	width: 480px;
	height: 300px;
}
@media (max-width: 950px) {
	.about-us {
		flex-direction: column;
	}
	.about-desc {
		flex: 100%;
	}
	.about-img {
		flex: 100%;
		padding: 0;
	}
}
/* Services and Special Events */
.services-col {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #232323;
	padding: 2rem;
	z-index: 1;
}
.services-header {
	text-align: center;
	width: 90%;
	margin: auto;
	padding: 2rem;
}
.services-cart {
	background-color: #353535;
	width: 90%;
	margin: auto;
	padding: 2rem;
	border-radius: 5px;
}
.cart-header-row {
	display: flex;
	flex-direction: row;
	padding: 0 1rem 0 1rem
}
.cart-desc {
	padding: 0 1rem 0 1rem;
}
.cart-sub {
	flex: 80%;
}
.cart-price {
	flex: 20%;
	text-align: right;
	padding-right: 1rem;
}
.cart1, .cart2 {
	margin-bottom: 2rem;
}
/* Our Fleet */
.fleet-col {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #353535;
	padding: 2rem;
	z-index: 1;
}
.fleet-header {
	padding: 2rem;
}
.fleet-header-span {
	text-align: center;
}
.fleet-row {
	display: flex;
	flex-direction: row;
	background-color: #353535;
}
/* TODO margin auto  */
.boat-col {
	flex-direction: column;
	width: 45%;
	margin: auto; 
	max-width: 100%;
	background-color: #232323;
	text-align: center;
}
.boat-col img {
	width: 540px;
	height: 719px;
	max-width: 100%;
	padding: 5%;
}
.fleet-desc {
	padding: 2rem;
}
.trademark {
	padding-bottom: 0.3rem;
}
.boat-name {
	font-family: 'Redressed', cursive;
}
/* CONTACT */
.contact-col {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #353535;
	padding: 2rem;
	z-index: 1;
}
.contact-header {
	text-align: center;
	padding-bottom: 2rem;
}
.contact-header-span {
	margin-bottom: 1rem;
}
.contact-header section {
	font-size: 1.5rem;
}
.contact-row {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.contact-email-col {
	flex-direction: column;
	flex: 30%;
	align-self: center;
	background-color: #232323;
	margin-right: 1rem;
	text-align: center;
	padding: 2rem;
	border-radius: 5px;
}
.contact-phone-col {
	flex-direction: column;
	flex: 30%;
	align-self: center;
	background-color: #232323;
	text-align: center;
	padding: 2rem;
	border-radius: 5px;
}
.contact-row .bi {
	font-size: 4rem;
	color: #c37a7a;
	font-weight: bolder;
}
.email-desc-header p, .phone-desc-header p {
	margin-top: 1rem;
}
/* TESTIMONIALS */
.reviews-col {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 2rem;
	background-color: #232323;
	z-index: 1;
}
.reviews-row {
	display: flex;
	flex-direction: row;
	text-align: left;
	padding: 2rem 2rem 0 2rem;
}
.review {
	flex: 40%;
	padding: 2rem;
	margin: 0;
}
.bi-gold {
	color: gold;
}
.review-name-avatar-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.avatar-name {
	padding-left: 1rem;
}
.reviews-more-row {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
/* LOCATIONS */
.locations-col {
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 2rem;
	background-color: #353535;
	z-index: 1;
}
.locations-row {
	display: flex;
	flex-direction: row;
	padding: 0;
}
.office-location {
	flex: 60%;
}
.boat-location {
	flex: 40%;
}
.loc a {
	color: pink;
}
.location-sub-header {
	color: #bbbbbb;
	font-weight: bolder;
	font-size: 1.5rem;
	padding: 1rem;
	text-align: left;
}
.anemos-loc, .sofiani-loc, .trip-tips-loc {
	padding: 1rem;
	text-align: left;
}
.bi-red {
	font-size: 1.5rem;
	color: red;
	padding: 1rem;
}
/* FOOTER */
.footer-row {
	position: relative;
	display: flex;
	flex-direction: row;
	background-color: #232323;
	color: white;
	z-index: 1;
	padding: 2rem;
}
.footer-links, .footer-info, .footer-social {
	flex: 30%;
	padding: 1rem;
}
.footer-col {
	display: flex;
	flex-direction: column;
}
.fo-pad {
	margin: 1rem 0.5rem 1rem 0;
}
.social-row {
	display: flex;
	flex-direction: row;
}
.bi-white {
	color: white;
	font-size: 2.5rem;
	margin-right: 0.5rem;
}
#consent-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem 1rem;
	background-color: #07a0e1;
	color: #ffffff;
	transition: opacity 1s ease;
	z-index: 1;
}
.hidden {
	pointer-events: none;
	opacity: 0;
}
.cookie-concent {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}
.cookie-img {
	padding: 0.6rem 0;
}
.cookie-img > img {
	width: 24px;
	height: 24px;
	color: blue;
}
.gdpr-info {
	padding: 0.3rem 1rem;
}
.gdpr-more-info > a {
	font-weight: bold;
	color: #ffffff;
	text-decoration: underline;
}
.gdpr-accept {
	background-color: #0780c0;
	color: #ffffff;
    padding: 0.7rem 3rem;
    border-radius: 21px;
	font-size: large;
	font-weight: bold;
	border-style: none;
}
@media all and (max-width: 827px)  {
	.navbar {
		flex-direction: column;
		padding: 0.5rem 0;
	}
	.logo {
		width: 100%;
	}
	.logo-img {
		padding: 0.5rem;
	}
	.logo a {
		padding: 10px;
	}
	.menu {
		display: block;
		position: absolute;
		top: 23px;
		right: 45px;
	}
	.nav-list .list-item {
		display: block;
		border-top: 1px solid white;
		padding: 10px;
	}
	.nav-list {
		width: 100%;
		text-align: center;
		padding-top: 10px;
		display: none;
	}
	.active {
		display: block;
	}
}
/* TODO max-width   */
@media all and (max-width: 1105px) {
	.fleet-row {
		flex-direction: column;
	}
	.boat-col {
		flex: 100%;
		width: 100%;
		max-width: 100%;
		text-align: center;
		padding-top: 1rem;
	}
	.bavaria {
		margin-bottom: 2rem;
	}
}
@media all and (max-width: 677px) {
	.contact-row {
		flex-direction: column;
	}
	.contact-email-col {
		width: 100%;
		max-width: 100%;
		margin: 0 0 1rem 0;
	}
	.contact-phone-col {
		width: 100%;
		max-width: 100%;
	}
	.cookie-concent {
		flex-direction: column;
		text-align: center;
	}
}
