@import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,400italic);

/* ===== CUSTOM TEXT SELECTION HIGHLIGHT ===== */
::selection {
  background-color: rgba(252, 163, 17, 0.3); /* Light orange with transparency */
  color: #14213d; /* Dark blue text for better readability */
}

::-moz-selection {
  background-color: rgba(252, 163, 17, 0.3); /* Light orange with transparency for Firefox */
  color: #14213d; /* Dark blue text for better readability */
}

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	font-size: calc(5px + 0.4vw);
}

body {
	font-family: 'Bodoni Moda', serif;
}

a {
	text-decoration: none;
}

.intro {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: row;
}

.left {
	width: 60%;
	padding: 3rem 3rem 3rem 5rem;
	display: table;
}

.left > div {
	display: table-cell;
	vertical-align: middle;
}

span {

	font-size: 14px;
	font-weight: bold;
	letter-spacing: 2px;
	display: inline-block;
	text-transform: uppercase;
	font-family: 'Bodoni Moda', serif;
	
}



/* === SLIDER AREA === */
.notara-slider {
	width: 40%;
	position: relative;
	height: 100%;
	overflow: hidden;
	border:#000;
    border-radius: 10px;
}

.notara-slider-list {
	list-style: none;
	padding: 0;
	margin: 0;
	height: 100%;
	width: 100%;
	position: relative;
}

.notara-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: clip 0.7s ease-in-out, z-index 0s 0.7s;
	clip: rect(0, 100vw, 100vh, 100vw);
	display: table;
}

.notara-slide-content {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	color: #b7a2a2;
	padding: 2rem;
	border:#000;
    border-radius: 10px;
}

h3 {
	font-size: 5rem;
	font-style: italic;
}

h3 + a {
	font-size: 1.6rem;
	display: inline-block;
	color: #fff;
	margin-top: 2rem;
}

h3,
h3 + a {
	opacity: 0;
	transition: opacity 0.7s 0s, transform 0.5s 0.2s;
	transform: translate3d(0, 50%, 0);
}

.notara-slide.current h3,
.notara-slide.current h3 + a {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition-delay: 1s;
}

.notara-slide.current {
	z-index: 1;
	clip: rect(0, 100vw, 100vh, 0);
}

.notara-slide.prev {
	clip: rect(0, 0, 100vh, 0);
}

/* === NAVIGATION DOTS === */
.notara-slider-nav-container .notara-slider-nav {
	position: absolute;
	bottom: 5%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 10;
}

.notara-slider-nav a {
	display: inline-block;
	border-radius: 50%;
	width: 1.2rem;
	height: 1.2rem;
	min-width: 12px;
	min-height: 12px;
	background: #fff;
	margin: 0 1rem;
	transition: transform 0.3s;
}

.notara-slider-nav a.current_dot {
	transform: scale(1.4);
}

/* === RESPONSIVE === */
@media screen and (max-width: 700px) {
  .intro {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .left {
    width: 100%;
    height: auto;
    padding: 2rem;
  }

  .notara-slider {
    width: 100%;
    height: auto;
    min-height: 300px;
    position: relative;
  }

  .notara-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    clip: auto !important;
  }

  .notara-slide-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 1rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
  }

  .notara-slider-nav-container .notara-slider-nav {
    position: static;
    padding: 1rem 0;
  }
}



