/*
Theme Name: OceanWP Child
Theme URI: https://oceanwp.org/
Description: OceanWP WordPress theme example child theme.
Author: Nick
Author URI: https://oceanwp.org/
Template: oceanwp
Version: 1.0
*/

/* Parent stylesheet should be loaded from functions.php not using @import */

/* GOOGLE FONTS */
@font-face {
	font-family: 'Open Sans';
	src: url('https://art-n-coffee.pro/wp-content/uploads/fonts/open_sans/OpenSans-Regular.ttf');
}
@font-face {
	font-family: 'Raleway';
	src: url('https://art-n-coffee.pro/wp-content/uploads/fonts/raleway/Raleway-Light.ttf');
}
/* LINKS */
a {
    text-decoration: none!important;
	color: #f58220;
}
a:focus {
    outline:none !important;
}
.single-page-article a:hover {
    text-decoration: underline!important;
    font-weight: 300!important;
}
body.single-post .entry-content a:hover {
    text-decoration: underline!important;
}
.blog-entry.post .blog-entry-header .entry-title a {
    font-weight: 300;
}
.site-breadcrumbs a {
    color: #333;
}
/* RESERVATION FORM BUTTON */
.rtb-booking-form .rtb-form-submit button {
    font-weight: 300;
}
.rtb-booking-form .rtb-form-submit button:hover {
    color: #F58220;
    text-decoration: none;
	border: 2px solid #F58220;
	background-color: #FFFFFF;
}
/* Contact Form 7 */
.wpcf7-submit {
    font-weight: 300!important;
}
.wpcf7-submit:hover {
    color: #F58220!important;
    text-decoration: none!important;
	border: 2px solid #F58220;
	background-color: #FFFFFF!important;
}
/* FIXED HEADER */
#site-header {
    position: fixed;
	z-index:1000;
	top:0;
	width: 100%;
}
#main {
	margin-top: 74px;
}
/* ADJUST LINKS ANCHORS */
.anchor:before {
	content: "";
	display:block;
	height: 74px; 
	margin: -74px 0 0; 
	visibility: hidden;
	pointer-events: none;
}
/* NO BREADCRUMBS ON MOBILE */
@media (max-width: 1024px) {
	.site-breadcrumbs {
		display: none;
	}
}
/* GLIGHTBOX */
@media only screen and (min-width: 769px) {
    .gprev svg, .gnext svg {
        width: 48px!important;
    }
}
@media only screen and (max-width: 768px) {
    .glightbox-clean .gnext {
        top: 50%!important;
        right: 10px!important;
    }
}
@media only screen and (max-width: 768px) {
    .glightbox-clean .gprev {
        top: 50%!important;
        left: 10px!important;
    }
}
/* SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html{
    scroll-behavior: auto;
  }
}
/* reCAPTCHA v3 badge */
.grecaptcha-badge {
	visibility: collapse !important;  
}
/* Hide post meta updated */
.void-grid .cat-links, .void-grid .tags-links, .void-grid .updated-on {
    display: none;
}
.void-grid .posted-on {
    display: none;
}
/* Responsive Image Grid */
.img-row {
    display: flex;
    flex-wrap: wrap;
	max-width: 1200px;
    justify-content: center;
    margin: 0 auto;
}
.img-column {
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}
.img-column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}
@media screen and (max-width: 800px) {
    .img-column {
        flex: 50%;
        max-width: 50%;
    }
}
@media screen and (max-width: 600px) {
  .img-column {
    flex: 100%;
    max-width: 100%;
  }
}
/* Widget */
.display-posts-listing.image-top .listing-item {
	padding-bottom: 2em;
    margin-bottom: 1em;
	border-bottom: 1px solid #d6d6d6;
}
.display-posts-listing.image-top .listing-item .title {
	display: block;
	font-size: 1.5em;
    padding: 0.4em 0;
}
.display-posts-listing.image-top .listing-item .excerpt-dash {
	display: none;
}
/* Grid style */
.display-posts-listing.grid {
	display: grid;
	grid-gap: 16px;
	margin: 3% 0;
}
.display-posts-listing.grid .title {
	display: block;
	padding: 3% 0;
    font-size: 1.5em;
}
.display-posts-listing.grid img { 
	display: block; 
	max-width: 50%; 
	height: auto; 
}
.display-posts-listing.grid .excerpt-dash {
	display: none;
}
@media (min-width: 600px) {
	.display-posts-listing.grid {
		grid-template-columns: repeat( 2, 1fr );
	}
}
@media (min-width: 1024px) {
	.display-posts-listing.grid {
		grid-template-columns: repeat( 3, 1fr );
	}
}
/* HOME */
.anc-center {
	text-align: center;
}
.anc-spacer {
	height: 150px;
}
.anc-padding-on-sites {
	padding: 0 20px;
}
.anc-padding-bottom-twenty {
	padding-bottom: 20px;
}
.anc-padding-bottom-forty {
	padding-bottom: 40px;
}
.anc-max-width {
	max-width: 1200px;
	margin: auto;
}
.title h2 {
	color: #443f3f;
	font-size: calc(2em + 0.390625vw);
	font-weight: 300;
	text-transform: uppercase;
	text-align: center;
	padding: 50px 15px 0 15px;
}
.title h3 {
	color: #443f3f;
	font-size: calc(1.2em + 0.390625vw);
	font-weight: 300;
	padding-top: 20px;
	padding-bottom: 10px;
}
.light-gray {
	background-color: #F5F5F5;
}
/* HOME-DIVIDERS */
.short-divider {
	width:75px;
	border-top: 1px solid #F58220;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
/* HERO */
.anc-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
	height: auto;
    display: flex;
    justify-content: center;
    align-items: center;	
}
.anc-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://art-n-coffee.pro/wp-content/uploads/2020/11/Galerie-a-kavarna-Art-n-Coffee-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-size:100%;
    filter: brightness(40%);
}
.anc-hero-content {
    position: relative;
    text-align: center;
    margin: 0.625rem;
}
.anc-hero-title {
    font-size: 6.0vw;
    font-weight: 500;
    color: #fff;
    line-height: 12vw;
    margin-bottom: 0;
}
@media (max-width: 1048px) {
    .anc-hero-title {
        font-size: 8.0vw;
        font-weight: 500;
        color: #fff;
        line-height: 14vw;
        margin-bottom: 0;
    }
}
.anc-hero-divider {
    width: 25.0vw;
	border-top: 0.5vh solid #F58220;
	margin: auto;
}
.anc-hero-arrow  {
	margin-top: 5vw;
}
.bounce {
  -moz-animation: bounce 3s infinite;
  -webkit-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}
 
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
/* ARROWS HOMEPAGE*/
.arrow {
	position: absolute;
	left: 50%;
	transform: translate(-50%,-50%);
	
}
.arrow span{
    display: block;
    width: 4vw;
    height: 4vw;
    border-bottom: 0.3vw solid #ffffff;
    border-right: 0.3vw solid #ffffff;
    transform: rotate(45deg);
    margin: -25px;
    animation: animate 2s infinite;
}
.arrow span:nth-child(2){
    animation-delay: -0.2s;
}
.arrow span:nth-child(3){
    animation-delay: -0.4s;
}
@keyframes animate {
    0%{
        opacity: 0;
        transform: rotate(45deg) translate(-20px,-20px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: rotate(45deg) translate(20px,20px);
    }
}
/* Cafe closed */ 
.we-are-closed {
    font-size: calc(1em + 0.390625vw);
    text-align: center;
	display: block;
	padding: 0 15px 20px 15px;
}
/* AKCE */
.a-date {
    text-align: right;
}
@media (max-width: 599px) {
	.a-date {
        text-align: left;
        font-weight: 600;
    }
	.a-text {
        margin-bottom: 20px;
    }
    .akce table th, table td { 
        display: block;
        padding: 2px 0px;
    }
}
/* HOME-CO NABIZIME */
.flex {
	display: flex;
	justify-content: center;
	width: 1200px;
	max-width: 100%;
	margin: auto;
	padding-top: 20px;
}
.flex-col {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: 400px;
	margin: 1em;
	text-align: center;
}
@media (max-width: 900px) {
	.flex {
		flex-wrap: wrap;
	}
}
.icon-box {
  margin-bottom:20px;
}
.icon {
    font-size:26px;
	padding:18px;
	border-radius: 50%;
	color:#f58220;
	border: 1px solid #f58220;
}
.icon i {
	width: 36px;
}
.fa-coffee:before {
    content: "\f0f4";
}
.fa-landmark:before {
    content: "\f66f";
}
.fa-birthday-cake:before {
    content: "\f1fd";
}
/* HOME-OPENNIG HOURS */
.flex-open {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 900px;
	max-width: 100%;
	margin: auto;
	padding-top: 20px;
}
.flex-open-col {
	display: flex;
	flex-direction: column;
	flex-basis: 400px;
	margin: 1em;
	text-align: center;
}
.open {
    font-size: 20px;
    font-weight: 300;
	text-align: center;
}
.bt-link a {
    color: #FFFFFF;
	font-size: 14px;
	border: 2px solid #F58220;
	padding: 10px 15px;
	background-color: #F58220;
	transition: all 0.4s ease-in-out 0s
}
.bt-link a:hover {
    color: #F58220;
	font-weight: 600;
    text-decoration: none!important;
    background: #FFFFFF;
	border: 2px solid #F58220;
	background-color: #FFFFFF;
}
/* HOME-EVENT */
.event {
    align-items: center;
    border: 1px solid #efefef;
    border-radius: 10px;
    display: flex;
    margin-top: 40px;
	margin-bottom: 20px;
}

.event .thumb {
    flex-basis: 50%;
    position: relative;
}
.event .thumb a img {
    width: 100%;
}
.event .content {
    flex-basis: 50%;
    padding-left: 27px;
}
@media (max-width: 991px) {
    .event .content {
        padding-left: 0;
    }
}
.event .thumb .event-date {
    background: #f58220 none repeat scroll 0 0;
    color: #fff;
    padding: 6px 0;
    position: absolute;
    right: -25px;
    text-align: center;
    top: -15px;
    width: 120px;
}
.event .thumb .event-date span {
    display: block;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
}
.event .content h4 {
    color: #443f3f;
	font-size: 22px;
	font-weight: 300;
    margin-bottom: 15px;
    margin-top: 0;
}
.event .content ul.event-time {
    display: flex;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.event .content ul.event-time li {
    color: #444444;
    font-size: 14px;
	font-weight: 600;
}
.event .content ul.event-time li i {
    color: #f58220;
    padding-right: 10px;
}
.event .content p {
    font-family: "Open Sans",sans-serif;
	color: #444444;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
}
.event .content .event-btn a {
    color: #ffffff;
	border: 2px solid #F58220;
    font-size: 13px;
    font-weight: 400;
	background-color: #F58220;
    padding: 5px 12px;
}
.event .content .event-btn a:hover {
    color: #F58220;
	font-weight: 600;
    text-decoration: none!important;
    background: #FFFFFF;
	border: 2px solid #F58220;
}
.event .content ul.event-time li + li {
    margin-left: 15px;
    padding-left: 15px;
    position: relative;
}

.event .content ul.event-time li + li::before {
    background: #666666 none repeat scroll 0 0;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 28%;
    width: 2px;
}
.fa.fa-clock-o:before {
    content: "\f017";
}
.fa.fa-map-marker:before {
    content: "\f3c5";
}
@media (max-width: 991px) {
  .event {
    display: block;
  }
  .event .thumb {
    margin-bottom: 40px;
  }
}
/* POSTS */
/* hide meta info */
.single-post.content-max-width ul.meta {
    display: none;
}
.blog-entry.post ul.meta {
    display: none;
}
/* KONTAKTY */
.contacts {
    margin-bottom: 40px;
}
.contacts a {
    color: #F58220;
}
.contacts p {
    font-size: 1.1em;
}
.contacts main {
    display: flex;
}
.contacts article {
    flex: 75%;
    padding-right: 40px;
}
.contacts aside {
    flex: 25%;
}
@media screen and (max-width: 768px) {
    .contacts main {
    flex-direction: column;
    flex-wrap: wrap;
	}
}
.contacts ul {
    list-style: none; 
    margin: 0;
}
/* RUBRIKA CLANKY */
.blog-entry-readmore a {
	color: #FFFFFF;
    font-size: 14px!important;
    text-transform: uppercase!important;
    border: 2px solid #F58220!important;
    padding: 10px 15px!important;
    background-color: #F58220;
}
.blog-entry-readmore a:hover {
	color: #F58220!important;
	text-transform: uppercase!important;
    background-color: #FFFFFF;
	border: 2px solid #F58220!important;
}
/* FOOTER */
.textwidget {
    color: #F5F5F5; 
}
#footer-widgets .footer-box a {
    color: #F58220;
}
/* HLEDAME BARISTU */
.flex-container {
    display: flex;
    max-width: 860px;
    margin: 0 auto;
}
.flex-item-img {
    width: 50%;
    opacity: 0.9;
}
.flex-item-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%; 
    padding: 2rem 3rem 1rem 3rem; 
    max-height: 399px;
    background-color: #fbfbfb;
    border-left: 1px solid #cacaca;
    border-right: 1px solid #cacaca;
    border-bottom: 1px solid #cacaca;
    border-top: 1px solid #cacaca;
}
.flex-item-text p { 
    font-family: Raleway;
    font-weight: 400;
    font-size: 18px;
}
@media all and (max-width: 972px) {
	.normal-screen {
		display: none;
	}
	.flex-container {
		flex-direction: column;
	}
	.flex-item-img {
		width: 100%;
		max-width: 972px;
		margin: 0 auto;
	}
	.flex-item-text {
		width: 100%;
		max-width: 972px;
		margin: 0 auto;
	}
}
@media all and (min-width: 973px) {
	.small-screen {
		display: none;
	}	
}
/* SHARE BUTTONS */
.sm-share {
	padding-top: 30px;
    border-top: 1px solid #d6d6d6;
}
@media only screen and (max-width: 959px) {
	.sm-share {
		padding-bottom: 30px;
		border-bottom: 1px solid #d6d6d6;
	}
}	
.sm-share-text {
	color: #444444;
	letter-spacing: 1.3px;
}
.sm-share a {
	display:-ms-inline-flex;
	display:-ms-inline-flexbox;
	display:inline-flex;
	-ms-flex-align:center;
	align-items:center;
	-ms-flex-pack:center;
	justify-content:center;
	position:relative;
	width:40px;
	height:40px;
	line-height:1;
	border-radius:30px;
	border: solid 1px #bbb;
	overflow:hidden;
	margin-left: 10px;	
}
.sm-share a:hover {
	color:#000;
	border-color:#000;
}
.sm-share a svg {
	fill:#bbb;
	width:16px;
	height:16px;
	transition:all 0.3s ease
}
.sm-share a svg:hover {
	fill:#000;
}
/* FACEBOOK */
.fb-page,
.fb-page span,
.fb-page span iframe[style] {
    max-width: 100% !important;
}
