@charset "utf-8";
/* CSS Document */

/* ---------- OVERALL STYLING ---------- */

body {
	padding-top: 110px;
}

section {
	padding-top: 40px;
}

h2 {
	color: #023859;
	border-bottom: 2px solid #04BFBF;
	max-width: 300px;
}

.gap::before {
	display: block;
	content: " ";
	margin-top: -175px;
	height: 175px;
	visibility: hidden;
	pointer-events: none;
}

/* ---------- NAVIGATION STYLING ---------- */

.nav-link:hover {
	border-bottom: 4px solid #04BFBF;
}

/* ---------- HERO STYLING ---------- */

.hero {
	background: url("images/lucky-lady.jpg") center center no-repeat;
    background-size: cover;
    height: 75vh;
    margin: 0 auto;
    padding-bottom: 100px;
    display: flex;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.hero:hover {
	background-color: #000;
	opacity: 0.6;
}

.header {
	margin: 0 auto;
}

.hero .header {
	background-color: rgba(4, 191, 191, 0.75);
	width: 75%;
	height: 5%;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

.hero:hover .header {
  opacity: 1;
}

/* ---------- IMAGE LIGHTBOX STYLING ---------- */

.img-color {
	background-color: #023859;
	padding-bottom: 10vh;
}

.main-box {
	margin-top: 20px;
	text-align: center;
}

.trans {
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	-webkit-transition: all 1s ease;
}

.top {
	margin-left: auto;
	margin-right: auto;
	padding-top: 5vh;
}

.top .img-row {
	width: 100%;
	height: 100%;
	z-index: 1;
	box-sizing: border-box;
}

.top .img-row figure {
	position: relative;
	overflow: hidden;
}

.top .img-row figure::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	content: '';
	color: white;
	opacity: 0.4;
	text-align: center;
	box-sizing: border-box;
	pointer-events: none;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.top .img-row figure:hover::before {
	opacity: 0;
	background-color: rgba(0,0,0,0.90);
}

.top .img-row figure img {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.lightbox {
	position: fixed;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.75);
	z-index: 999;
	opacity: 0;
	pointer-events: none;
}

.lightbox img {
	max-width: 90%;
	max-height: 80%;
	position: relative;
	top: -100%;
	/* Transition */
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	-webkit-transition: all 1s ease;
}

.lightbox:target {
	outline: none;
	top: 0;
	opacity: 1;
	pointer-events: auto;
	transition: all 1.2s ease;
	-moz-transition: all 1.2s ease;
	-ms-transition: all 1.2s ease;
	-o-transition: all 1.2s ease;
	-webkit-transition: all 1.2s ease;
}

.lightbox:target img {
	top: 0;
	top: 50%;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

figure .middle {
	background-color: rgba(4, 191, 191, 0.75);
	width: 200px;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
}

figure:hover .middle {
  opacity: 1;
}

/* ---------- CHARTER RATES STYLING ---------- */

.contact a:link {
	font-weight: bold;
	color: #04BFBF;
}

.contact a:visited {
	font-weight: bold;
	color: #04BFBF;
}

.contact a:hover {
	text-decoration: none;
	font-weight: bold;
	color: #023859;
}

.contact a:active {
	font-weight: bold;
	color: #04BFBF;
}

/* ---------- FOOTER STYLING ---------- */

footer {
	padding: 10px;
	margin-top: 5px;
	background-color: #023859;
}

.footer-text {
	text-align: right;
}
.footer-text a {
	padding-left: 5px;
	padding-right: 5px;
}

.footer-text a:link {
	color: rgba(255,255,255,.50);
}

.footer-text a:visited {
	color: #FFF;
}

.footer-text a:hover {
	text-decoration: none;
	color: rgba(255,255,255,1);
	border-bottom: 2px solid #04BFBF;
}

.footer-text a:active {
	color: #FFF;
}

.copywright {
	padding-top: 5px;
	font-size: 10px;
}

.clearfix {
	overflow: auto;
}
