/***********
HERO SECTION
***********/
.hero {
	color: #c5b692;
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.hero video {
	top: 50%;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}
.hero video[poster]{object-fit : initial}
.hero .bg-overlay { background-color: rgba(0,0,0,0.3); }
.hero .bg-overlay .container,
.hero .bg-overlay .container .row {height: 100%;}
.hero-title h2 {
	font-style: italic;
	font-size: 36pt;
}
.hero-title p { font-size: 18pt; }
.hero-title a {
	display:inline;
	font-size: 12pt;
}
@media only screen and (min-width: 576px) {
	/*.hero {	height: 66vh; } */
	.hero-title h2 { font-size: 44pt; }
	.hero-title p { font-size: 22pt; }
	.hero-title a { font-size: 14pt; }
}
@media only screen and (min-width: 768px) {
	/*.hero {	height: 75vh; } */
	.hero-title h2 { font-size: 52pt; }
	.hero-title p { font-size: 26pt; }
	.hero-title a { font-size: 16pt; }
}
@media only screen and (min-width: 992px) {
	/*.hero {	height: 100vh; } */
	.hero-title h2 { font-size: 60pt; }
	.hero-title p { font-size: 30pt; }
	.hero-title a { font-size: 18pt; }
}
@media only screen and (min-width: 1200px) {
	.hero-title h2 { font-size: 68pt; }
	.hero-title p { font-size: 34pt; }
	.hero-title a { font-size: 20pt; }
}
@media only screen and (min-width: 1400px) {
	.hero-title h2 { font-size: 72pt; }
	.hero-title p { font-size: 36pt; }
	.hero-title a { font-size: 24pt; }
}

/***********
SCROLL ICON
***********/
.mouse {
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: 36px;
	width: 20px;
	height: 36px;
	border: 1px solid #c5b692;
	border-radius: 24px;
	&::before {
		content: '';
		width: 4px;
		height: 4px;
		position: absolute;
		top: 4px;
		left: 50%;
		transform: translateX(-50%);
		background-color: #c5b692;
		border-radius: 50%;
		opacity: 1;
		animation: wheel 2s infinite;
		-webkit-animation: wheel 2s infinite;
	}
}
@keyframes wheel { to { opacity: 0; top: 24px; } }
@-webkit-keyframes wheel { to { opacity: 0; top: 24px; } }

/***********
EVENTS SECTION
***********/
.events .flex-fill { box-shadow: #484b5655 3px 3px 5px; }
.events .flex-fill.translateup {transform: translateY(0);}
.events .flex-fill.translatedw {transform: translateY(0);}
@media only screen and (min-width: 992px) {
    .events {margin-bottom: 180px;}
	.events .flex-fill.translateup {transform: translateY(-180px);}
    .events .flex-fill.translatedw {transform: translateY(180px);}
}


/***********
SLIDERS
***********/
.chateau-slider-wrapper,
.around-slider-wrapper {
	position: relative;
	width: 100%;
	padding: 0 5%;
}

.chateau-slider-wrapper .slider-prev,
.around-slider-wrapper .slider-prev {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 100;
	cursor: pointer;
}
.chateau-slider-wrapper .slider-next,
.around-slider-wrapper .slider-next {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 100;
	cursor: pointer;
}
.chateau-slider .flex-fill,
.around-slider .flex-fill { box-shadow: #484b5655 3px 3px 5px; }

/***********
ROOMS SECTION
***********/
.rooms a {
    text-decoration: none;
}
.rooms .flex-fill {
    position: relative;
    box-shadow: #484b5655 3px 3px 5px;
}
@media only screen and (min-width: 992px) {
	.rooms .flex-fill.translate {transform: translateY(-180px);}
}
.rooms .flex-fill .overlay {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.25s ease;
}
.rooms .flex-fill img {
    transition: all 0.25s ease;
}
.rooms .flex-fill .overlay span{
    display: inline-block;
    outline: none;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: inherit;
    color: #c5b692;
    border: #c5b692 solid 1px;
    transition: all 0.25s ease;
}
.rooms a:hover .flex-fill .overlay {
    background-color: rgba(0, 0, 0, 0.5);
}
.rooms a:hover .flex-fill .overlay span,
.rooms a:hover .flex-fill img {
    transform: scale(1.05);
}