@charset "utf-8";
/* CSS Document */
/* Created by Dwiki Irianto and Boby Gunarso for Delizia Bakery and Cake Company */
/* All Rights Reserved */

html, body {
  overflow-x: hidden;
}
body {
  position: relative
}

h2,h3,h4,p,t{
	font-family: 'Barlow', sans-serif;
}

h1{
	font-family: 'Playfair Display', serif;
}

h1 span{
	color: var(--primary);
}

/* == NAVBAR HEADER == */

:root {
	--primary : #b71c1c;
	--light : #eeeeee;
	--dark : #212121;
}

nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background-color: var(--dark);
	padding: 10px 32px;
	border-bottom: 3px solid var(--primary);
	display: flex;

}

nav img{
	width: 90px;
	top: 5px;
	left: 5px;
	float: left;
}

nav ul li a{
	position: relative;
	color: white;
	text-decoration: none;
	padding: 5px 0;
}

nav ul li a:before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	height: 3px;
	width: 100%;
	background: var(--primary);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.1s linear;
}

nav ul li a:hover:before{
	transform: scaleX(1);
	transform-origin: left;
	color: var(--primary);
}

nav ul li a:hover, nav ul li a.is-active{
	color: var(--primary);
}

.column {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}
.btn {
  background-color: #b71c1c;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  opacity: 1;
  transition: 0.3s;
}

.btn:hover {opacity: 0.6}

.hamburger{
	display: block;
	position: relative;
	z-index: 1;

	user-select: none;

	top: 10px;
	float: right;
	border: none;
	outline: none;
	background: none;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;

	background-color: var(--light);
	border-radius: 6px;
	z-index: 1;

	transform-origin: 0 0;

	transition: 0.4s;
}

.hamburger:hover span:nth-child(2) {
	transform: translateX(10px);
	background-color: var(--primary);
}

.hamburger.is-active span:nth-child(1) {
	transform: translate(0px, -2px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
	transform: translateX(15px);
}

.hamburger.is-active span:nth-child(3) {
	transform: translate(-3px, 3px) rotate(-45deg);
}

.hamburger.is-active:hover span {
	background-color: var(--primary);
}

/*
.menu li a.is-active, .menu li a:hover {
	background-color: var(--primary);
	color: var(--light);
}
*/

@media (min-width: 768px) {

	nav .container {
		
		display: inline-block;

	}

	nav .container .menu {
		float: right;
		justify-content: left;
	}

	.hamburger {
		display: none;
	}


	.menu {
		display: block;
		
	}

	.menu li{
		display: inline-block;
		padding-top: 10px;
		color: var(--light);
	}

	.menu li a{
		color: var(--light);
		margin: 8px 16px;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 2px;
		transition:  0.4s;
	}
}

@media (max-width: 768px) {
	nav .menu{
		display: block;
	}

	.menu{
		position: absolute;
		top: 64px;
		left: -100%;
		z-index: 0;

		background: var(--dark);
		
		width: 100%;
		text-align: center;
		opacity: 1;
		transition: all 0.3s ease;
	}

	.menu.active{
		opacity: 1;
		left: 0;
		transition: all 0.3s ease;
	}

	nav ul li{
		padding: 15px;
		color: var(--light);
		list-style-type: none;
	}

	nav ul li a{
		color: var(--light);
		font-weight: 600;
		text-decoration: none;
		text-transform: uppercase;
		letter-spacing: 2px;
		transition: 0.4s;
		padding: 5px 0;
		margin: 8px 16px;
	}
}

.imgcontainer{
	position: relative;
  	text-align: center;
  	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  	margin-bottom: 40px;
  	border-radius: 4px;
}

.imggradient{
	position: absolute;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0) 19%,rgba(0,0,0,1) 100%);
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	border: none;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 4px;
}

.img-header{
	position: relative;
}

.img-full{
	
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.overlap-bottom-left{
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
}

.overlap-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlap-left{
  position: absolute;
  top: 50%;
  left: 300px;
  color: white;
  transform: translate(0, -70%);
}

.overlap-left a{
  
  color: white;
  
}

.display1{

}

.display2{
	margin-top: 150px;
}

.display3{
	margin-top: 300px;
}

@media(max-width: 768px){
	.display1{
		max-width: 70%;
	}

	.display2{
		margin-top: 0px;
		margin-left: auto;
		margin-right: auto;
		max-width: 70%;
	}

	.display3{
		margin-top: 0px;
		float: right;
		max-width: 70%;
	}
}

/* == OWL CAROUSEL == */



.owl-prev{
	left: -30px;
}

.owl-next{
	right: -30;
}

.owl-prev, .owl-next{
	position: absolute;
	top: 90px;
}

.owl-prev span, .owl-next span{
	font-size: 80px;
	color: var(--primary);
}

.owl-stage-outer { 
overflow: visible;
}

 .owl-item {
   opacity: 0;
   transition: opacity 500ms;
}
.owl-item.active {
  opacity: 1;
}

.owl-carousel .owl-stage-outer {
    height: calc(100% + 60px);
    margin: -30px;
    padding: 30px;
    width: calc(100% + 60px);
}


/* == END OF OWL CAROUSEL == */

/* == CARDBOX == */

.owl-carousel a{
	text-decoration: none;	
}

.cardbox{
		padding: 20;
		border: white 2px solid ;
		width: 100%;
		background-color: #eceff1;
		border-radius: 4px;
		transition-duration: 0.25s;

	}
	.cardbox:hover{
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
		transform: translate(0, -10px);
		border: #DB4848 2px solid;
	}
	.cardboximgc{
		width: 100%;
		border-radius: 4px 4px 0 0;
	}
	.cardboximg{
		width: 100%;
		border-radius: 4px 4px 0 0;
		overflow: hidden;
		transition-duration: 0.25s;
	}

	.cardboxinfo{
		padding: 10px;
		letter-spacing: 1px;
		text-align: left;
		text-decoration: none;
		color: var(--primary);
	}

	/* == END OF CARDBOX ==*/

	/* == UNIVERSAL BUTTON ==*/

	.universalbutton {
		position: relative;
		color: #212121;
		text-decoration: none;
		padding: 5px 0;

	}

	.universalbutton:before{
		position: absolute;
		content: '';
		left: 0;
		bottom: 0;
		height: 3px;
		width: 100%;
		background: var(--primary);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform 0.1s linear;

	}

	.universalbutton:hover:before {
		transform: scaleX(1);
		transform-origin: left;
		color: var(--primary);
	}

	.universalbutton:hover{
		color: var(--primary);
	}

	.universalbutton.is-active {
		color: var(--primary);

	}

	/* == END OF UNIVERSAL BUTTON == */

.lc{
	
	padding-left: 10px;
}



.brand,
.address-bar {
    display: none;
}

.buttonsdw{
	padding: 20px;
	margin-bottom: 10px;
	border-radius:5px;
	
	transition-duration: 0.1s;
}

.buttonsdw:hover{
	transform: translate(0, -10%);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/* == BOXBUTTON == */

.boxbutton{
	padding: 20px;
	margin-bottom: 20px;
	height: 250px;
	transition-duration: 0.25s;
	border: transparent 2px solid;
	border-radius: 5px;
	background-color: #eceff1;
	text-decoration: none;
	color: var(--dark);
	position: relative;
	
	/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
}
a{
	text-decoration: none;
}

.boxbutton:hover{
	border: #DB4848 2px solid;
	transform: translateY(-10px);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (max-width: 768px) {
	.boxbutton:hover{
	border: #DB4848 2px solid;
	transform: translateX(10px);
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	}
}

/* == END OF BOXBUTTON */

.dualtonebackground{
	background: linear-gradient(to right, #b71c1c 0%, #b71c1c 70%, transparent 70%, transparent 100%);
}

@media (max-width: 768px) {
	.dualtonebackground{
		background-color: #b71c1c;
	}
}

/* == FOOTER ==*/

.footerlogo {
	max-width: 70%;
}

@media (max-width: 768px){
	.footerlogo{
		max-width: 50%;
		padding-bottom: 30px;
	}
}

.footertext{
	color: var(--primary);
}

/* == END OF FOOTER == */

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

.revealx{
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: 1s all ease;
}

.revealx.active{
  transform: translateX(0);
  opacity: 1;
}

/* == MENU > FILTER ==*/

.filterbar{
	padding: 20px;
	border-radius: 4px;
	border: var(--dark) 2px solid;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	
}

.items.cardbox{
	margin-bottom: 20px;
}

/* == END OF FILTER ==*/

/* == PHOTO FRAME == */

.photoframe{
	max-width: 100%;
	border: white 2px solid;
	border-radius: 4px;
	transition: 0.25s all ease;
}

.photoframe:hover{
	border: var(--primary) 2px solid;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transform: translateY(-10px);
}

/* == END OF PHOTO FRAME == */