/*!
Theme Name: bizet
Theme URI: http://underscores.me/
Author: Rosiest Design
Author URI: https://rosiest.design/
Description: Built on Underscores
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: bizet
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

bizet is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# CSS reset
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# CSS Reset
--------------------------------------------------------------*/

/* I've replaced the default Underscores Normalize normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css
with this modern CSS reset by Andy Bell github.com/hankchizljaw/modern-css-reset */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	width: 90vw;
	margin: 0 auto 1.5em;
	max-width: 1200px;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
	clear: both;
	font-family: 'Playfair Display', serif;
	font-weight: bold;
	margin-bottom: 1rem;
}

h1, h2 {
	text-transform: uppercase;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote {    
	margin-bottom: 2em;
	padding: 0 2em;
	/*border-left: 2px solid #707070;*/
	text-align: center;
}

blockquote p{
	color: #707070;
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.25em;
	letter-spacing: 0.01em;
	margin-bottom: 0;
}

blockquote cite{
	font-style: normal;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3.75%;
	padding-left: 3.125%;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

figure.wp-block-audio {
	width: 80%;
	margin: 0.5em auto 1em;
}

.wp-block-audio figcaption{
	text-align: center;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-radius: 0;
	background: #DF0D4D;
	color: #ffffff;
	font-size: 1rem;
	line-height: 1;
	padding: .6em 1em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background-color: #B10136;
	transition: background-color .3s;
	cursor: pointer;
}

button:active, button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	background-color: #B10136;
	border: 1px dotted gray;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
	max-width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.wp-block-button {
	padding-bottom: 1.5em;
}

.rg-btn .wp-block-button__link{
	background-color: #df0d4d;
	color: #ffffff;
}

.rg-btn .wp-block-button__link:hover{
	background-color: #B10136;
	transition: background-color .3s;
}


/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #DF0D4D;
}

a:hover, a:focus, a:active {
	color: #B10136;
	transition: color .3s;
}

a:focus {
	outline: thin dotted;
}

a:hover, a:active {
	outline: 0;
}

/* Cookie banner */

a.cli-plugin-main-link{
	font-weight: normal;
	text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: inline-block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	margin: 0 1em;
	text-transform: uppercase;
	line-height: 2.5em;
	letter-spacing: 0.1em;
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: #404040;
}

.main-navigation a:hover {
	color: #DF0D4D;
	transition: color .3s;
}

/* Small menu. */
button.menu-toggle{
	display: inline-block;    
	background: transparent;
	color: #404040;
	border: none;
	font-size: 2em;
	padding: 0;
}
.main-navigation.toggled ul {
	display: flex;
	flex-flow: column;
	justify-content: center;
}

@media screen and (min-width: 37.5em) {
	button.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: flex;
		flex-flow: row nowrap;
		justify-content: center;
	}
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Header & Footer
--------------------------------------------------------------*/

#masthead{
	text-align: center;
	margin-bottom: 1em;
}

h1.site-title{
	margin-bottom: 0;
}
.site-title a{
	text-decoration: none;
	color: #404040; 
	font-size: 3rem;
	letter-spacing: 0.05em;
}

.site-title span{
	font-weight: normal;
}

/* Footer */

section.cta {
  text-align: center;
  font-size: 1.2em;
	border-top: 1px solid;
	border-bottom: 1px solid;
	padding: 1em 0;
}

section.cta button a, 
section.cta button a:hover {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.5;
}

section.cta, section.cta button {
	font-family: 'Playfair Display', serif;
	font-style: italic;
}

#colophon {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

#colophon section {
	flex: 1 1 50%; 
}

.social-menu,
.site-info {
	min-width: 200px;
	font-size: 0.85rem;
}

#menu-social {
  display: flex;
  justify-content: flex-end;
}

#menu-social a {
  text-decoration: none;
  color: #404040;
}

#menu-social li {
  margin: 0 4px;
  font-size: 1.2rem;
}


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


.entry-header.wp-block-cover::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	opacity: .3;
	z-index: 1;
}

.entry-header.wp-block-cover h1{
	color: #fff;
	z-index: 2;
}

/*--------------------------------------------------------------
### Home
--------------------------------------------------------------*/

.home .entry-content > * {
	margin-bottom: 3rem;
}

.home blockquote{
	border: none;
}

p.intro{
	font-family: 'Playfair Display', serif;
	font-style: italic;
	font-size: 1.25em;
	letter-spacing: 0.01em;
	border-top: 1px solid;
	border-bottom: 1px solid;
	padding: 1em 0;
}

.shadow .wp-block-column {
	box-shadow: 0 0 6px #ddd;
	padding: 8px 16px;
}

/* align 'more info' buttons at bottom of CTA boxes */

.wp-block-column.cta-box {
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 1em;
	align-items: flex-start;
}
.wp-block-column.cta-box > * {
    flex: 0 0 100%;
}

.cta-box .wp-block-button.rg-btn{
	align-self: flex-end;
}

/*--------------------------------------------------------------
### About
--------------------------------------------------------------*/

@media (min-width:600px) {
	.founder .wp-block-column:first-child {
		flex-basis: calc(75% - 16px);
	}
	.founder .wp-block-column:last-child {
		flex-basis: calc(25% - 16px);
	}
}

/*--------------------------------------------------------------
### Weddings
--------------------------------------------------------------*/

ul.musicians {
  display: flex;
  margin-bottom: 1em;
  justify-content: center;
  flex-flow: row wrap;
}

ul.musicians li {
  background-color: #DF0D4D;
  padding: 1em;
  margin: 0.75em;
  flex: 0 0 165px;
  text-align: center;
}

ul.musicians li:hover {
	background-color: #B10136;
	transition: background-color .3s;
}

ul.musicians li a, ul.musicians li a:hover, ul.musicians li a:active, ul.musicians li a:focus{
	color: #fff;
	text-decoration: none;
	padding: 1em 0;
}

.order-of-service{
	text-align: center;
}

.order-of-service p{
	margin-bottom: 0;
}

.order-of-service .wp-block-column{
	border: 1px solid;
	padding: 1em;
}

/* Reposition Bands & Jazz header image */
.post-1233 .entry-header.wp-block-cover {
    background-position: center top;
}
/* Reposition String Quartets header image */
.post-734 .entry-header.wp-block-cover {
    background-position: center bottom;
}

/*--------------------------------------------------------------
### Corporate
--------------------------------------------------------------*/

.wp-block-gallery.clients {
  width: 80%;
  margin: auto;
}

.wp-block-gallery.clients figure {
  align-items: center;
}

.wp-image-1407 {
	background-color: #de584d; /* background colour for Hever Castle logo */
}

/*--------------------------------------------------------------
### Error
--------------------------------------------------------------*/
.error404 .search-form {
    margin-bottom: 2em;
}
/*--------------------------------------------------------------
### Search
--------------------------------------------------------------*/
.search img.size-post-thumbnail {
    width: 250px;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}
/*
.wp-block-audio {
	max-width: 500px;
}

.wp-block-audio figcaption{
	text-align: left;
}

/* Make YouTube videos responsive */

.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  xpadding-top: 35px;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
