/*
	Theme Name: Yellow Yoga
	Theme URI: https://yellow-yoga.com
	Version: 1.0.0
	Author: Modem Studio (@modem.studio)
	Author URI: https://modem.studio
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
:root {
  --accent: rgb(255, 255, 0);
  --yellow: #fced8b;
  --lightyellow: #faf0d6;
  --background: #fbf7e9;
  --text: #262626;
  --old-accent: #16dc8d;
  --old-background: #faf8f0;
  --old-lightyellow: #ffffd7;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
	background-color: var(--background);
	color: var(--text);
}
body {
	font-weight: 400;
	font-size: 22px;
	font-family: 'Crimson Text', sans-serif;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	max-height: 100%;
	height: auto;
	vertical-align: middle;
}
video:focus { 
	outline:none; 
}
a{
	color: var(--text);
	text-decoration: underline;
}
a.no-underline{
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:visited{
	color: var(--text);
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid var(--text);
}
.clear{
	clear: both;
}
.sans{
	font-weight: 400;
	font-size: 0.9em;
	line-height: 1.4em;
	margin-top: 0;
	font-family: 'Inter', sans-serif;
}
.sans .type-24{
	font-size: 1.4em;
}
.sans .small-type{
	line-height: 1.4em;
}
h3,
.button,
.label{
	font-weight: 400;
	margin-top: 0;
	font-family: 'Inter', sans-serif;
}
h1{
	font-size: 2.2em;
	font-weight: 400;
	font-style: normal;
	font-family: "Freizeit", serif;
}
h2{
	font-size: 1.5em;
	font-family: "Freizeit", serif;
	font-weight: 400;
	font-style: normal;
	margin-top: 0;
}
h2 a, 
a h2{
	text-decoration: none;
}
.big-title{
	font-size: 2em;
	line-height: 1.2;
	font-family:  "Freizeit", serif;
	font-weight: 400;
	font-style: normal;
	margin-bottom: 0;
	margin-top: 0;
}
.very-big-title{
	font-size: 3em;
	margin: 0;
}
.type-24{
	font-size: 1.2em;
}
figcaption,
.small-type{
	font-size: 0.7em;
}
.center{
	text-align: center;
}
.mono{
	font-family: 'Space Mono', monospace;
}
.accent{
	color: var(--accent);
}
.button{
	padding: 15px 20px;
	background-color: var(--text);
	color: var(--background);
	border-radius: 50%;
	text-decoration: none;
	display: inline-block;
	text-transform: uppercase;
}
.button:visited{
	color: var(--background);
}
.outline-button{
	padding: 10px;
	border: 1px solid var(--text);
	border-radius: 50%;
	text-decoration: none;
	display: inline-block;
}
.label{
	text-transform: uppercase;
	font-size: 0.6em;
}
.icon{
	margin-right: 4px;
}
.icon svg{
	width: 12px;
	margin-bottom: -2px;
	margin-right: 4px;
}


/*------------------------------------*\
    COOKIE CONSET
\*------------------------------------*/
.tpp__cook_msg{
	display:block;
	color:black;
	position:fixed;
	bottom:20px;
	left: 20px;
	padding: 10px;
	z-index:9999999;
	border: 1px solid var(--text);
	background-color: var(--background);
	border-radius: 20px;
	max-width: calc(100% - 40px);
}
.tpp__cook_msg #acceptCookie{
	background-color: var(--text);
	border-radius: 50px;
	padding:5px 10px;
	font-size:14px;
	border: none;
	color: var(--background);
}
.tpp__cook_msg #acceptCookie:hover{
	opacity: 0.5;
}
/*------------------------------------*\
	ANIMATIONS
\*------------------------------------*/
/* MOVE */
@keyframes moveleft {
  0% { padding-left: 10px; }
  50% { padding-left: 0px; }
  100% { padding-left: 10px; }
}


/* WIGGLE */
@-webkit-keyframes wiggle {
	0% { -webkit-keyframes-transform: rotate(10deg); }
   50% { -webkit-keyframes-transform: rotate(-10deg); }
  100% { -webkit-keyframes-transform: rotate(10deg); }
}
@-moz-keyframes wiggle {
	0% { -moz-keyframes-transform: rotate(10deg); }
   50% { -moz-keyframes-transform: rotate(-10deg); }
  100% { -moz-keyframes-transform: rotate(10deg); }
}
@keyframes wiggle {
	0% { transform: rotate(10deg); }
   50% { transform: rotate(-10deg); }
   100% { transform: rotate(10deg); }
}

/* SPIN */
@keyframes spin {
	from{ transform: rotateY(0deg);}
	to{ transform: rotateY(360deg);}
}
@-moz-keyframes spin {
	from{ -moz-transform: rotateY(0deg);}
	to{ -moz-transform: rotateY(360deg);} 
}
@-webkit-keyframes spin {
	from{-webkit-transform: rotateY(0deg);}
	to{ -webkit-transform: rotateY(360deg);}
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/
@font-face {
  font-family: 'Freizeit';
  src:  url('assets/fonts/FreizeitRegularWeb/Freizeit-Regular.woff') format('woff')
}
@font-face {
  font-family: 'Freizeit';
  src:  url('assets/fonts/FreizeitRegularWeb/Freizeit-Regular.woff2') format('woff2')
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper: padding-top for menu height */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
	padding-top: 52px;
}
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	border-bottom: 1px solid var(--text);
	margin-top: -500px;
	height: 500px;
	/* background: linear-gradient(-45deg, #ded8af, #d6abbc, #afcaa9, #aed1e9);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite; */
	background-color: var(--background);
}

.menu-button{
	position: fixed;
	top: 10px;
	left: 10px;
}
.nav {
  z-index: 999;
  padding: 60px 20px;
  text-align: center;
}
.nav a {
  text-decoration: none;
  color: var(--text);
}
.nav a:hover,
.nav .current-menu-item a::before{
	content: '→ ';
}
.nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav ul li{
	margin-bottom: 20px;
}
.languages ul li{
	display: inline-block;
	margin-left: 10px;
}
.languages ul li a{
	padding: 5px;
	border-radius: 50px;
	background-color: var(--text);
	color: var(--background);
	border: 1px solid var(--text);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 0.9em;
}
.languages ul li a:hover,
.languages .current-lang a{
	background-color: var(--background);
	color: var(--text);
}
.background{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-image: url("assets/img/background.jpg");
	z-index: -1;
	opacity: 0.5;
	/* Center and scale the image nicely */
    background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.background-1{
	display: none;
	position: fixed;
	z-index: -1;
	width: 500px;
	height: 500px;
	top: -100px;
	right: -50px;
	background: radial-gradient(circle closest-side, var(--lightyellow), var(--background));
	
}
.background-2{
	display: none;
	position: fixed;
	z-index: -1;
	width: 1200px;
	height: 1200px;
	bottom: -600px;
	right: -50px;
	background: radial-gradient(circle closest-side, var(--yellow), var(--background));
}

/* BURGER BUTTON */
.burger-button{
	display: none;
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 9999;
	cursor: pointer;
	display: block;
}
.burger-button .burger-bars{
	display: none;
	width: 30px;
	height: 30px;
	position: relative;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.burger-button .burger-bars span{
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: var(--text);
	border-radius: 0px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}
.burger-button .burger-bars span:nth-child(1) {
	top: 0px;
}
.burger-button .burger-bars span:nth-child(2),
.burger-bars span:nth-child(3) {
	top: 10px;
}
.burger-button .burger-bars span:nth-child(4) {
	top: 20px;
}
.burger-button .burger-bars.open span:nth-child(1) {
	top: 20px;
	width: 0%;
	left: 50%;
}
.burger-button .burger-bars.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.burger-button .burger-bars.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.burger-button .burger-bars.open span:nth-child(4) {
	top: 20px;
	width: 0%;
	left: 50%;
}

/* LAY OUT */
.columns{
	gap: 40px;
}
.border-top{
	border-top: 1px solid var(--text);
	padding-top: 20px;
}
.no-gap{
	gap: 0;
}
.gap-10{
	gap: 10px;
}
.sticky{
	position: -webkit-sticky;
	position: sticky;
	top: 60px;
	padding-top: 20px;
}
.overflow-hidden{
	overflow: hidden;
}
.brown{
	background-color: rgb(96, 61, 41);
	color: #db0052;
}
.middle{
	align-items: center;
}
.column-1{
	flex: 1;
	position: relative;
}
.column-2{
	flex: 2;
}
.width-1200{
	max-width: 1200px;
	margin: auto;
}
.width-900{
	max-width: 900px;
	margin: auto;
}
.section{
	padding: 50px 20px;
	margin-bottom: 50px;
}
.section-title{
	margin-bottom: 50px;
}
.padding-20{
	padding: 20px;
}
.rounded-border-img{
	overflow: hidden;
	border-radius: 10px;
}
/* SWIPER */
.swiper {
	display: none;
  max-height: 600px;
  padding-bottom: 30px;
}
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper img{
	width: auto;
	height: auto;
	max-height: 600px;
}
.new-swiper-navigation,
.swiper-pagination-bullets{
	display: none;
}
.swiper-pagination-bullet-active{
	background: var(--text) !important;
}
/* FOOTER */
.footer{
	margin-top: 50px;
}
.footer .column-1{
	margin-bottom: 20px;
}

/* TEACHERS ARCHIVE */
.teachers-list{
	margin: 0;
	padding: 0;
	margin-right: -10px;
	list-style: none;
}
.teachers-list li{
	width: 100%;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	padding-right: 10px;
}
.teacher-details{
	margin: 10px 0px;
}
.teacher-item-img{
	overflow: hidden;
}
.teacher-item-img img {
	 transition: all .3s ease;
}
.teacher-item:hover .teacher-item-img img{
	transform: scale(1.2);
}
/* TEACHERS SINGLE */
.website-link{
	margin-top: 20px;
}
.teacher-schedule ul{
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--text);
}
.teacher-schedule ul li{
	border-bottom: 1px solid var(--text);
}
.teacher-schedule #day,
.teacher-schedule #time,
.teacher-schedule #type,
.teacher-schedule #level,
.teacher-schedule #location{
	padding: 10px 0;
}
.teacher-schedule #day{
	max-width: 100px;
}

/* WORKSHOPS ARCHIVE */
.workshops-list{
	margin: 0;
	padding: 0;
	list-style: none;
}
.workshop-item{
	margin-bottom: 40px;
}
.workshop-item-img{
	overflow: hidden;
}
.workshop-item-img img {
	 transition: all .3s ease;
}
.workshop-item-img img:hover{
	transform: scale(1.2);
}
.workshop-details{
	padding: 20px 0;
}
/* WORKSHOPS SINGLE */


/* RETREATS ARCHIVE */
.retreats-list{
	padding: 0;
	margin: 0;
	list-style: none;
}
.retreat-thumb{
	margin-bottom: 20px;
}
/* RETREATS SINGLE */
.retreat-date{
	display: inline-block;
}
.retreat-date{
	margin-bottom: 20px;
}
.retreat-date p,
.retreat-date h2,
.retreat-teachers h2{
	margin-bottom: 0;
}
.retreat-teachers{
	margin: 0;
	padding: 0;
	list-style: none;
}
.retreat-theme{
	margin-top: 100px;
	margin-bottom: 100px;
	
}
.retreat-list ul{
	margin: 0;
	padding-left: 18px;
	list-style-type: '\2764';
}
.retreat-list ul li{
	padding-left: 10px;
}
.retreat-registration{
	margin-top: 20px;
}
/* ABOUT */
/* PRICES */
.table{
	padding: 0;
	margin: 40px 0;
	list-style: none;
	border-top: 1px solid var(--text);
}
.table li{
	border-bottom: 1px solid var(--text);
	padding: 10px;
}
.table-columns{
	display: flex;
	vertical-align: top;
}
.table-column-1{
	flex: 1;
	padding-right: 10px;
}
.table-column-6{
	flex: 6;
}
.faq{
	padding: 0;
	margin: 0;
	list-style: none;
	border-top: 1px solid var(--text);
}
.faq li{
	border-bottom: 1px solid var(--text);
}
.question{
	cursor: pointer;
	padding: 20px 0;
}
.question h2{
	margin-bottom: 0;
}
.answer{
	display: none;
	max-width: 950px;
}
.arrow{
	transition: all .3s;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
	border-top: 1px solid;
	border-right: 1px solid;
}
.arrow.rotate{
	transform: rotate(135deg);
	transition: all .3s;
}
.fold-arrow{
	max-width: 45px;
	margin-top: 8px;
	padding-left: 10px;
}
.question:hover .columns .fold-arrow{
	animation: moveleft .3s;
}

/* STUDIOS */
.schedule table{
	table-layout: fixed;
	text-align: left;
	border-spacing: 5px;
	border-collapse: separate;
	width: 100%;
}
.schedule table caption{
	display: none;
}
.schedule tr td{
	vertical-align: top;
}
.schedule td:not(:empty),
.schedule .cell-content {
	background-color: var(--lightyellow);
	border-radius: 5px;
	padding: 10px;
}
.schedule td[colspan]:not([colspan="1"]) {
	background: var(--old-lightyellow);
	text-align: center;
	font-style: italic;
}
.schedule .tablepress>:where(thead,tfoot)>*>th{
	background-color: transparent;
}
.tablepress>*+tbody>*>*, .tablepress>tbody>*~*>*, .tablepress>tfoot>*>* {
	border-top: none !important; 
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {
	.teachers-list li{
		width: 50%;
	}
}
@media only screen and (min-width:768px) {
	.burger-button{
		display: none;
	}
	.menu-button{
		display: none;
	}
	.big-title{
		font-size: 3em;
	}
	.very-big-title{
		font-size: 6em;
		margin: 0;
	}
	.header{
		margin-top: 0 !important;
		height: auto;
	}
	.nav{
		position: relative;
		z-index: 999;
		height: auto;
		margin-top: 0 !important;
		padding: 10px 20px;
	}
	.nav ul li{
		margin-bottom: 0;
	}
	.main-nav ul {
	  display: flex;
	  justify-content: space-between;
	}
	.main-nav ul li {
	  display: inline-block;
	  margin-right: 10px;
	  margin-bottom: 0;
	}
	.languages{
		text-align: right;
		max-width: 120px;
	}
	.columns{
		display: flex;
	}
	.footer .column-1{
		margin-bottom: 0;
	}
	.retreats-list{
		margin-right: -40px;
	}
	.retreats-list li{
		width: 25%;
		display: inline-block;
		vertical-align: top;
		padding-right: 40px;
	}
	.teachers-list li{
		width: 33.33%;
	}
}
@media only screen and (min-width:1024px) {
	.teachers-list li{
		width: 25%;
	}
}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {
	.big-title{
		font-size: 4em;
	}

}
@media only screen and (min-width:1480px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: var(--accent);
	color:var(--text);
	text-shadow:none;
}
::-webkit-selection {
	background: var(--accent);
	color:var(--text);
	text-shadow:none;
}
::-moz-selection {
	background: var(--accent);
	color:var(--text);
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
