@import 'shared/colors.css';

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    color: var(--header-footer-grey-light);
    /* removes blinking cursor when it was clicked on an element */
    -webkit-user-select: none;
    user-select: none;
}

* {
	box-sizing:border-box;
}

.imgTop {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80%;
}

.textTop {
    color: var(--grey-dark);
    background-color: var(--grey-blue-light);
    text-align: center;
    padding: 1vw 2vw;
    text-align: justify;
}

h3 {
    letter-spacing: 0.8em;
    text-transform: uppercase;
    font: 1em "Lato", sans-serif;
    color: black;
}

.imgTitleBox {
    position: absolute;
    left: 0;
    top: 20%;
    width: 100%;
    text-align: center;
}

span.imgTitleText {
    background-color: black;
    opacity: 0.6;
    color: var(--logo-salmon);
    padding: 1vh;
    font-size: middle;
    letter-spacing: 1vh;
}

.imgTitleLink {
    color: inherit;
    text-decoration: none;
}

/* Carousel START */
.carouselContainer {
    position: relative;
    width: 100%;
    overflow: hidden;
	margin: auto;
}

.carouselSlide {
    display: none;
}

.carouselSlide img {
    width: 100%;
    height: auto;
}

.carouselSlideText {
	position: absolute;
	bottom: 1vh;
	color: white;
	font-size: 1em;
	padding: 1em;
	width: 100%;
	text-align: center;
}

.carouselSlideNumber {
	position: absolute;
	top: 0;
	color: white;
	font-size: 0.8em;
	padding: 1em;
	width: 100%;
}

.carouselPrev, .carouselNext {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	margin-top: -22px;
	padding: 16px;
	color: var(--logo-grey-dark);
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}

.carouselNext {
	right: 0;
	border-radius: 3px 0 0 3px;
}	

.carouselPrev:hover, .carouselNext:hover {
	background-color: rgba(0,0,0,0.8);
	color: white;
}

.carouselDotContainer {
    text-align: center;
}

.carouselDot {
    cursor: pointer;
    height: 0.7em;
    width: 0.7em;
    margin: 0 2px;
    background-color: var(--logo-grey-dark);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.carouselDot.active,
.carouselDot:hover {
    background-color: var(--logo-salmon);
}

.carouselFade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes carouselFade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1;
	}
}	

/* Carousel END */

.textMiddle {
    position: relative;
    color: var(--grey-dark);
    background-color: var(--grey-blue-light2);
    text-align: center;
    padding: 1vw 2vw;
    text-align: justify;
    font-size: small;
}

.email {
    color: var(--logo-salmon);
}

.parallax {
    min-height: 70%;
    background: no-repeat center center fixed;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.imgBottom {
    min-height: 100%;
}