/* 
	Theme Name: Beauteka
	Author: geomagas
*/

* {

	--primary-color: beige;
	--secondary-color: #333;
	--accent-color-dark: #5a5a5a;
	--accent-color-mid: #aaa;
	--accent-color-light: white;
	
	--bg-color: var(--primary-color);
	--fg-color: var(--secondary-color);
	
	--overlay-warm: rgba(30,20,0,0.5);
	
}

body {
	background-color: var(--bg-color);
	color: var(--fg-color);
	font-family: "Fira Sans", sans-serif;
	font-size: 0.8em;
}

h1, h2, h3, h4 {
	font-family: "Italiana";
	letter-spacing: 1px;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.5em;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: underline;
}

small {
	font-size: 0.7em;
}

.bg-accent-dark {
	color: var(--accent-color-light);
	background-color: var(--accent-color-dark);
}

.image-wrapper {
	overflow: hidden;
}

.image-wrapper.polaroid {
	background-color: white;
/*	border: 1px solid rgba(180,180,180,0.4); */
	padding: 20px 20px 80px;
	box-shadow: -5px 5px 25px rgba(150,150,150,0.8);
}

.thumbnail-wrapper {
	aspect-ratio: 4 / 3;
}

.thumbnail-wrapper img {
	object-fit: cover;
}

#page-top {
	position: relative;
/*	min-height: 140px; */
}

#page-top::after {
	display: block;
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--overlay-warm);
	z-index: 10;
/*	pointer-events: none; */
}

#page-top a {
	color: var(--bg-color);
}

#headers-wrapper {
	position: absolute;
	z-index: 100;
	color: var(--accent-color-light);
/*	background-color: rgba(0,0,0,0.3); */
}

#headers-wrapper a {
	color: var(--accent-color-light);
}

.navbar a:hover, .social-icons a:hover {
	opacity: 0.8;
}

.site-logo {
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 48px;
}
    
.site-logo a {
	color: var(--fg-color);
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
}
    
.call-to-action {
	font-weight: bold;
	letter-spacing: 4px;
}
    
.btn:hover {
	text-decoration: none;
}

.btn-outline-light:hover {
  background-color: var(--accent-color-light);
  color: var(--fg-color) !important; 
}

.social-icons a {
  color: var(--accent-color-light);
  margin: 0 10px;
  font-size: 1.5rem;
}

.h-separator.fill-bg svg {
	fill: var(--bg-color);
}

.h-separator {
	margin: -5px 0;
	overflow: hidden;
}

.h-separator.flip {
	transform: rotateX(180deg);
}

#page-top-separator {
	position: absolute; 
	bottom:0; 
	width: 100%;
	z-index: 25;
}

main {
	margin: 50px 0;
}

#bottom-widgets h2 {
	font-size: 1.7em;
}

#bottom-widgets {
  background: #000;
/*  border-top: 1px solid #fff;*/
  color: var(--accent-color-mid);
}

#bottom-widgets .social-icons a {
  font-size: 2.5rem;
}

#bottom-widgets a, #colophone a {
	color: var(--bg-color);
}

#colophone {
  background-color: var(--fg-color);
/*  border-top: 1px solid #fff;*/
  color: var(--accent-color-mid);
}

#hero .carousel-item {
	height: calc(100vh + 100px);
/*	
	width: 100vw; 
	top: 0;
	left: 0;
*/
/*	transition: transform 0s ease-in-out, opacity 0.6s ease-out; */
}

#hero .carousel-fade .carousel-item {
	transition: opacity 1.2s ease-in-out;
}

#hero .carousel-item img {
	object-fit: cover;
}

.hero-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 20;
	animation: fadeInCenter 2s ease;
}

@keyframes fadeInCenter {
  from {
    opacity: 0;
    transform: translate(-50%, -20%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero-caption h1 {
	font-size: 2.5rem;
	font-weight: 300;
}

.home main {
	margin: 0;
}

.home main section {
	font-size: 1.25em;
}

.home main section.boxed {
  padding: 100px 0;
/*  border-bottom: 1px solid #333; */
}

.home main section h1 {
	font-size: 3.5em;
}

.home main section h2 {
	font-size: 3em;
}

.home main section img {
	transition: transform 0.4s ease;
}

.home main section img:hover {
/*	transform: scale(1.03); */
}

.home main section#body {
	background-color: black;
	color: var(--bg-color);
}

.home main section#face .images {
	position: relative;
	min-height: 500px;
}

.home main section#face .image-wrapper.polaroid {
	width: 60%;
	position: absolute;
}

.home main section#face .image-wrapper.polaroid:nth-child(1) {
	transform: rotate(-5deg);
}

.home main section#face .image-wrapper.polaroid:nth-child(2) {
	top: 100px;
	left: 200px;
	transform: rotate(3deg);
	box-shadow: -10px 10px 25px rgba(150,150,150,0.8);
}

.home main section#news .post-tile {
	position: relative;
	overflow: hidden;
}

.home main section#news .post-tile a {
	display: block;
}

.home main section#news .post-tile a:hover {
	text-decoration: none;
}

.home main section#news .post-tile h4 {
	height: 100px;
}

.home main section#news .post-data {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
	color: var(--accent-color-light);
	background-color: var(--overlay-warm);
	transition: height 0.4s ease-in-out;
}

.home main section#news .post-tile:hover .post-data {
	height: 100%;
}

iframe.map {
	display: block;
  width: 100%;
  height: 500px;
  border: 0;
  filter: grayscale(70%);
  box-shadow: 0 -5px 15px Grey;
}

#featured-image {
	max-height: 70vh;
	overflow: hidden;
}

#featured-image img {
	object-fit: cover;
}

body:not(.home) main a {
	font-weight: bold;
}

.post-tile {
/*	width: 300px; */
}

/* ///////////////////// */

.post-tile {
/*  border: 1px solid #333; */
/*  transition: all 0.3s ease; */
/*  height: 100%; */
}

.post-tile img {
/*  filter: grayscale(100%); */
}

.post-tile:hover {
  border-color: var(--accent-color-light);
/*  transform: translateY(-5px); */
}

.post-tile:hover img {
/*  filter: grayscale(0%); */
}



