﻿/*
Theme Name: Torta by Katalin
Theme URI: https://tortabykatalin.co.uk
Description: WordPress theme built by <a href="http://www.hedleyenterprises.co.uk">hedley enterprises</a>. <strong>Web design</strong> starts with a coffee and a chat...
Version: 1 Build:052020
Author: <strong>hedley</strong> enterprises
Author URI: https://hedleyenterprises.co.uk

*/
:root {
	--main-color: #707070;
	--red: #DF2B27;
	--blue: #00B6E4;
	--orange: #EC7023;
	--green: #09B189;
	--purple: #D23366;
	--lgrey: rgba(112, 112, 112, 0.5);
    --cream: #EFEBE4;
    --white: #ffffff;
  	--black: rgba(0, 0, 0, 0.1);
}
@font-face {
    font-family: Audrey;
    src: url("fonts/Audrey-Normal.otf");
}
@font-face {
    font-family: AudreyBold;
    src: url("fonts/Audrey-Bold.otf");
}

html {
	scroll-behavior: smooth;
}
body {
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
    color: var(--main-color);
	background-repeat: repeat-y;
    background-size: cover;
    position: relative;
}
p::selection, h1::selection, h2::selection, h3::selection { background-color:#00B6E4; color: #fff;}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection { background-color: #00B6E4; color: #fff; }


/* -------------------- Backgrounds -------------------- */

.cake-banner {
	height: 80vh;
	width: 100%;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	z-index: -1;
}
.sway {
	position: absolute;
	width: 100%;
	bottom: -20px;
}
.sway svg {
	width: 200%;
	height: auto;
}
/* -------------------- Transitions -------------------- */
section {
	opacity: 0;
}
.inverse {
	animation: fade-in 0.3s forwards 0.3s linear;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.grad {
	background: -webkit-linear-gradient(-45deg, #df2b27, #00b6e4, #ec7023, #09b189, #b32673);
	background: linear-gradient(-45deg, #df2b27, #00b6e4, #ec7023, #09b189, #b32673);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}
@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}
 
@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}
 
@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

/* -------------------- General Styles -------------------- */

.container {
    width: 95%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.easy-reading {
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
a {
  text-decoration: none;
}
h1 {
   font-size: 3rem;
}
h1 {
    font-family: 'Audrey', Poppins, sans-serif;
	font-weight: normal;
}
h2 {
	font-size: 2rem;
}
p {
	line-height:1.6em;
}
img {
	border-style: none;
}
.center {
	text-align:center;
}
.absol {
	position:relative;
}

/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:5em;
}
.move {
    margin-top: 10em;
}
.drop {
	margin-top: 3em;
}
.bring-up {
	margin-top: -4em;
}
.alignright {
	float:right;
	padding-left: 20px;
	padding-bottom: 20px;
}
.alignleft {
	float:left;
	padding-right: 20px;
	padding-bottom: 20px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
/* -------------------- unordered list -------------------- */
.social-icons ul, .navigation ul, .footer-icons ul, .footer-logos ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.social-icons ul, .navigation ul, .footer-icons ul, .footer-logos ul {
    display: flex;
}
.footer-icons ul {
	justify-content: center;
}

/* -------------------- Header -------------------- */
header {
	width: 100%;
    margin: auto;
    position: relative;
}
.logo {
    text-align: center;
    margin: auto;
    background-image: url('svg/top-wide.svg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    height: 125px;
}
.logo img {
    width: 100%;
    max-width: 270px;
    align-self: center;
}
/* -------------------- Header Assets -------------------- */
.social-icons, .corner-circles {
    position: absolute;
}
.corner-circles {
    top: 0;
    left: 0;
}
.social-icons {
	left: 10px;
    top: 10px;
	display: none;
	z-index: 11;
	fill: var(--purple);
}
.social-icons li a, .footer-icons li a {
	fill: var(--purple);
}
.social-icons li, .footer-icons li {
    padding: 5px;
}
.social-icons li a:hover, .footer-icons li a:hover {
	fill: var(--orange);
}
/* -------------------- Navigation -------------------- */
.navigation {
    display: none;
    margin-top: 3em;
}
.navigation ul {
    justify-content: center;
}
.navigation li a {
    padding: 10px;
    color: var(--main-color);
}
.current_page_item a {
	font-weight: bold;
}
/* -------------------- Navigation Mobile -------------------- */
.navigation-mobile {
	width: 0;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}
#navoverlay {
	background-color: var(--cream);
}
.mobile {
	display: none;
	opacity: 0;
}
.close-btn {
	display: block;
}
.menu-btn {
	cursor: pointer;
	width: 30px;
	position: absolute;
	top: 1em;
	right: 1em;
	color: var(--purple);
}
.mobile {
	position: fixed;
	padding: 2em;
	width: calc(100vw - 4em);
	height: calc(100vh - 4em);
	z-index: 200;
}
.close-btn {
	width: 28px;
	cursor: pointer;
	position: absolute;
	right: 30px;
	top: 10px;
	color: var(--purple);
}
.close-btn:hover {
	transform: rotate(180deg);
}
.show-menu {
	opacity: 1;
	display: block;
}
ul.sub-menu {
	display:none;
}
.slideDown {
  display: block;
}
.menu-contents {
	display: flex;
	flex-wrap: wrap;
	height: 100vh;
	justify-content: center;
}
.nav {
	font-size: 1.5rem;
	text-align: center;
	align-self: center;
}
.nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.nav li a {
	color: var(--purple);
}
/* -------------------- Hamburger Icon -------------------- */
#Rectangle_27, #Rectangle_28, #Rectangle_29,
#Rectangle_30, #Rectangle_31, #Rectangle_32, .close-btn {
	transition: all 0.5s ease-in-out;
}
#Rectangle_27 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 30px);
}
#open-menu:hover #Rectangle_27 {
	transform: translate(332px, 30px);
}
#Rectangle_28 {
	transition: all 0.5s ease-in-out;
	transform: translate(334px, 36px);
}
#open-menu:hover #Rectangle_28 {
	transform: translate(326px, 36px);
}
#Rectangle_29 {
	transform: translate(334px, 42px);
}
#open-menu:hover #Rectangle_29 {
	transform: translate(316px, 42px);
}

/* -------------------- Page Title / CTA -------------------- */
/* ----- Colours ----- */
.bluetxt {
    color: var(--blue);
}
.orangetxt {
    color: var(--orange);
}
.greentxt {
    color: var(--green);
}
.purpletxt {
    color: var(--purple);
}
.page-title h2, .page-title p {
	margin: 0;
}
.page-title svg {
	width: 100px;
}
/* -------------------- Circle Image / Outline -------------------- */
.circle-image-outline {
    width: 290px;
    height: 290px;
}
.circle-image-outline__testimonial {
    width: 200px;
    height: 200px;
}
.circle-image-outline, .circle-image-outline__testimonial {
    border-radius: 50%;
    margin: auto;
    background-color: var(--cream);
	background-size: cover;
	border: solid 10px var(--cream);
    animation: scale 0.3s forwards 0.3s linear;
}
@keyframes scale {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1)
    }
}
.ellipse {
	position: absolute;
	left: -50px;
    top: 10%;
    width: 150px;
	display: none;
}
.ellipse img {
    width: 100%;
    max-width: 239px;
}
.light-circle {
	position: absolute;
	bottom: 0;
    right: 0;
    width: 80px;
    opacity: 0;
    animation: fade-in 0.3s forwards 0.9s linear;
}
.light-circle img {
    width: 100%;
    max-width: 126px;
}
.circle-image-outline__testimonial .light-circle {
    width: 56px;
}
.split {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}
.split .circle-image-outline {
    align-self: center;
}
.split .description {
	width: 90%;
	margin: auto;
}
.description {
    align-self: flex-end;
}
/* -------------------- Background Shapes -------------------- */
.side-blue {
    background-image: url('images/side-circle.png');
    background-repeat: no-repeat;
    background-position-x: -200px;
}
.swoosh {
	background-image: url('svg/swoosh.svg');
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 5em;
	background-position-y: 100px;
}
.contact-background {
    overflow: hidden;
}
.contact-blob {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.contact-blob-right {
	position: absolute;
	top: 30%;
	right: 0;
	z-index: -1;
}
/* -------------------- Side Images -------------------- */
.side-image-left {
	position: absolute;
	z-index: -1;
	left: 10%;
}
.side-image-right {
	position: absolute;
	right: 10%;
	top: 20%;
}
/* -------------------- Enquiry Form -------------------- */
.torta-enquiry {
    padding: 30px;
    border-radius: 50px;
    background-color: var(--white);
    box-shadow: 0 0 1em var(--black);
    margin-bottom: 10em;
    margin-top: 5em;
}
.calendly iframe {
	width: 100%;
	border: 0;
	min-height: 800px;
}
/* -------------------- Gallery / Banner -------------------- */
.gallery, .grid, .links {
	display: flex;
	flex-wrap: wrap;
}
.space {
	justify-content: space-between;
}
.gallery-item {
	float: left;
	width: 20%;
	flex-grow: 1;
	margin: 5px;
	overflow: hidden;
	border-radius: 20px;
	background-color: black;
	border: solid 5px var(--white);
	transition: border 0.5s ease-in-out;
	max-height: 350px;
}
.gallery-item:hover {
	border: solid 5px var(--cream);
}
.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.5s ease-in-out;
}
.gallery-item img:hover {
	opacity: 0.6;
}

.blog:nth-child(1) {
	width: 100%;
	text-decoration: underline;
}
/* -------------------- Button -------------------- */
header .btn {
    position: absolute;
    display: none;
}
.btn a {
	padding: .5em 3em;
	display: inline-block;
	border-radius: 30px;
	font-weight: 700;
}
.btn-main a {
	color: var(--white);
	background-color: var(--purple);
	border: solid 5px transparent;
	transition: all 0.1s ease-in-out;
}
.btn a:hover {
	background-color: var(--purple);
	border: solid 5px var(--purple);
	box-shadow: 0 0 0.5em 3px var(--purple);
}
.btn-filter a {
	color: var(--main-color);
	border: solid thin var(--black);
}
/* -------------------- Party Layout -------------------- */
.party {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--white);
    box-shadow: 0 0 1em var(--black);
    border-radius: 30px;
    width: 100%;
    margin-left: auto;
    grid-gap: 10px;
    padding-bottom: 40px;
    margin-bottom: 280px;
}
.party:nth-child(1) {
	padding-top: 80px;
}
.party-image {
    width: 200px;
    height: 200px;
    background-size: cover;
    border-radius: 30px;
    box-shadow: 0 0 1em var(--black);
    margin: -100px auto 0 auto;
}
.party-title-price {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
}
.party-title, .party-price {
	align-self: center;
	text-align: center;
}
.party-description, .party-extra {
	text-align: center;
}
.party-title h2, .party-price h3, .party-price p {
    margin: 0;
    color: var(--blue);
}
.party-description p, .party-extra p {
    color: var(--lgrey);
    margin: 0;
}
.party-description ul {
    display: flex;
    flex-wrap: wrap;
    list-style: circle;
    justify-content: space-between;
}
.party-description li {
    width: 100%;
    flex-grow: 1;
    line-height: 2em;
    text-align: left;
}
.party-price {
    justify-content: center;
  }
.party-price {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: right;
    grid-gap: 5px;
    margin: 1em 0;
}
.party-price h3 {
    font-size: 2em;
    font-weight: 700;
}
.small {
    font-size: 14px;
    width: 50px;
    text-align: left;
    line-height: 1;
    align-self: center
}
.party-book {
	position: absolute;
	bottom: -20px;
	right: 20px;
}
/* -------------------- Price List -------------------- */
.price-list {
    box-shadow: 0 0 1em var(--black);
    padding: 30px;
	border-radius: 30px;
	margin-bottom: 5em;
	background-color: var(--white);
	text-align: center;
}
.price-list h2 {
	color: var(--purple);
	margin: 0;
}
.price-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.price-list hr {
    width: 200px;
    border: dashed 1px var(--purple);
    margin: 3em auto;
}
/* -------------------- Testimonials -------------------- */
.testimonial {
    margin-bottom: 10em;
}
.testimonial__name {
    text-align: center;
}
.testimonial__comment {
    width: 100%;
    max-width: 600px;
    margin: auto;
}
/* -------------------- Booking Form -------------------- */
.wpcf7-submit {
	width: 200px;
	cursor: pointer;
	background-color: var(--purple);
	color: var(--white);
}
.wpcf7-submit:hover {
	background-color: var(--main-color);
	color: var(--white);
}
.bookingform input, .bookingform select, .bookingform textarea,
.split-form input, .split-form select, .split-form textarea {
	box-sizing: border-box;
	padding: 20px;
	margin-bottom: 5px;
	border: solid thin #dfdfdf;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
}
.booking-small input, .booking-small select, .booking-small textarea, 
.full-width input, .full-width select, .full-width textarea {
	width: 100%;
}
.split-form input, .split-form select, .split-form textarea {
	width: 100%;
}
.bookingform input:focus, .bookingform select:focus, .bookingform textarea:focus {
	border: solid thin var(--orange);
}
.booking-small hr {
	width: 100px;
	margin: 20px auto;
	border: solid thin var(--lgrey);
}
.bookingform hr {
	width: 100px;
	margin: 1em auto;
	border: var(--white);
}
/* -------------------- Split Form - Additional Information -------------------- */
.full-width, .split-form {
	width: 100%;
	font-weight: 700;
}
.additional-info label {
	display: inline-block;
	padding: 10px 0;
}
.additional-book hr {
	width: 100px;
	margin: 5em auto;
	border: solid thin var(--lgrey);
}
.additional-info .wpcf7-submit {
	width: 200px;
	padding: 10px;
	display: inline-block;
	border-radius: 20px;
	color: var(--white);
	text-align: center;
	border: solid 2px transparent;
	transition: all 0.5s ease-in-out;
	background-color: var(--blue);
	color: var(--white);
}
.additional-info .wpcf7-submit:hover {
	background-color: var(--brown);
	color: var(--main-color);
}
/* -------------------- Footer Icons -------------------- */
.baking-icons {
	position: absolute;
	width: 100px;
	z-index: -1;
}
.pleft {
	top: 5em;
	left: 10%;
}
.pmiddle {
	top: 0;
	left: 40%;
	animation: wiggle 2s infinite 5s ease-in-out;;
}
.pright {
	top: 0;
	right: 10%;
	animation: wiggle 2s infinite 2s ease-in-out;
}
@keyframes wiggle {
	0% {
		top: 0;
		transform: rotate(0deg);
	}
	50% {
		top: 1em;
		transform: rotate(10deg);
	}
	100% {
		top: 0;
		transform: rotate(0deg);
	}
}
.baking-icons img {
	width: 100%;
}
/* -------------------- Back to top -------------------- */
.back-top {
	margin-bottom: 5em;
}
.back-top a {
	color: var(--main-color);
}
.back-top a:hover {
	stroke: var(--purple);
	color: var(--orange);
}
.up {
	animation: top 5s infinite 1s ease-in-out;
}
.back-top:hover .up {
	animation-play-state: paused;
}
@keyframes top {
	0% {
		top: 0;
		transform: translateY(50px);
		opacity: 0;
	}
	50% {
		top: 1em;
		transform: rotate(180deg);
		transform: translateY(0px);
		opacity: 1;
	}
	100% {
		top: 0;
		transform: rotate(0deg);
		opacity: 0;
	}
}
/* -------------------- Footer -------------------- */
.instagram-feed {
	margin-top: 3em;
}
footer {
	text-align: center;
	font-size: 14px;
}
footer ul {
    justify-content: center;
}
footer li {
	margin: 5px;
	align-self: center;
}
.footer-icons img,
.footer-icons svg {
	width: 30px;
}
.footer-logo-findhorn {
	display: none;
}
.findhorn .footer-logo-findhorn {
	display: block;
}
.findhorn .footer-logo {
	display: none;
}
.footer-logo img, .footer-logo-findhorn img {
	width: 200px;
	height: auto;
}
.footer-logos img {
	width: auto;
	height: 60px;
}
.copyright a {
	color: var(--main-color);
}
.copyright a:hover {
	color: var(--purple);
}

/* -------------------- Findhorn April 2022 -------------------- */

.split-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
}
.split-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices


*/

/* -------------------- 800 -------------------- */

@media all and (min-width: 50em) {
.home, .partybk {
	background-image: url('images/background-circles.webp');
}
/* -------------------- Navigation -------------------- */
.navigation {
	display: block;
}
.menu-btn {
	display: none;
}
.navigation-mobile {
	display: none;
}
header .btn {
    top: 10px;
    right: 10px;
    display: block;
}
.social-icons {
    display: block;
}
.logo {
    background-size: contain;
    height: 200px;
}
.split .description {
	width: 60%;
}
.torta-enquiry {
    padding: 50px;
}
.party-description ul {
	margin: 10px 0 0 0;
	padding: 0;
}
.party-description li {
    text-align: center;
}
}


/* -------------------- 1200 -------------------- */

@media all and (min-width: 75em) {
body {
    background-size: initial;
}
header .btn {
    top: 60px;
    right: 80px;
}
h1 {
    font-size: 5rem;
}
.move {
    margin-top: 20em;
}
.logo img {
    width: 100%;
    max-width: 370px;
    align-self: center;
}
.social-icons {
    left: 80px;
    top: 70px;
}
.circle-image-outline {
    width: 500px;
    height: 500px;
}
.ellipse {
	position: absolute;
	left: -100px;
    top: 10%;
    width: 239px;
}
.light-circle {
    width: 126px;
}
.split {
    grid-template-columns: 1fr 2fr;
}
.swoosh .description {
	width: 100%;
	margin: initial;
}
.description-small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
.party {
    grid-template-columns: 120px 1fr 1fr;
    width: 90%;
    margin-bottom: 120px;
}
.party-price {
    text-align: right;
}
.party-title, .party-description, .party-extra {
    text-align: left;
}
.party-description {
	grid-column: 2 / span 2;
}
.party-extra {
    grid-column: 2 / -1;
}
.party-title-price {
    grid-column: 2 / -1;
    grid-template-columns: 2fr 200px;
}
.party-image {
    position: absolute;
    left: -100px;
    top: 30px;
    margin: initial;
}
.split-form {
	width: 48%;
}
.party-description ul {
	margin: 20px;
	padding: 0;
}
.party-description li {
    width: 46%;
    text-align: left;
}
.party:nth-child(1) {
	padding-top: 0;
}
.sway svg {
	width: 100%;
}
}

/*

	Author:				hedleyenterprises.co.uk - web design starts with a coffee and a chat...
	Description:	CSS Stylesheet for Desktop Devices with bigger screens


*/


