﻿/*
Theme Name: Isla Brig Images
Theme URI: https://islabrigimages.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: 4 Build-0520
Author: <strong>hedley</strong> enterprises
Author URI: https://hedleyenterprises.co.uk

*/

:root {
    --main-color: #131313;
    --light: rgba(0, 0, 0, 0.5);
    --lgrey: rgba(0, 0, 0, 0.3);
    --black: rgba(0, 0, 0, 0.1);
	--clear: rgba(255, 255, 255, 0.5);
	--cream: #FDFBF9;
    --white: #ffffff;
    --fw-bold: bold;
}
html {
	scroll-behavior: smooth;
}
body {
	font-size:12pt;
    font-family: 'Montserrat', sans-serif;
	margin:0;
	padding:0;
    color: var(--main-color);
}
p::selection, h1::selection, h2::selection, h3::selection { background-color: #320101; color: #fff;}
p::-moz-selection, h1::-moz-selection, h2::-moz-selection, h3::-moz-selection { background-color: #320101; color: #fff; }

/* -------------------- Animation -------------------- */

section {
	opacity: 0;
}
.inverse, .show-menu, .feature, .feature-portrait, .feature-inside {
	animation: fade-in 0.3s forwards 0.3s linear;
}
@keyframes fade-in {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* -------------------- General Styles -------------------- */

.container {
    width: 95%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.entry {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
a {
  text-decoration: none;
}
h1 {
   font-size: 2.5rem;
}
h1, h2, h3, .slogan, .page-title-cta p, .price, .mobile-message {
    font-family: 'Marcellus SC', serif;
    text-transform: uppercase;
}
h2 {
	font-size: 2rem;
}
p {
	line-height:1.6em;
}
img {
	border-style: none;
}
.center {
	text-align:center;
}
.absol {
	position:relative;
}
/* -------------------- Mobile View -------------------- */

.desktop-view {
    display: none;
}
.mobile-view {
    display: grid;
}
/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:5em;
}
.mtb {
    margin-top: 5em;
    margin-bottom: 5em;
}
.ptb {
    padding-top: 5em;
    padding-bottom: 5em;
}

/* -------------------- Header -------------------- */
header {
	width: 100%;
    margin: auto;
    position: relative;
}
.logo-slogans {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    width: 90%;
    margin: 1em auto;
    text-align: center;
    color: var(--light);
}
.logo {
    align-self: center;
}
.logo img {
	width: 200px;
}
.slogan {
    align-self: center;
    display: none;
}
.big {
    font-size: 1.5rem;
}
.intro-text {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	max-width: 600px;
}
.mobile-message {
	display: block;
	text-align: center;
	color: var(--light);
}
/* -------------------- Feature Sections -------------------- */
.feature, .feature-portrait {
    height: 70vh;
}
.feature-inside {
    height: 30vh;
}
.feature, .feature-portrait, .feature-inside {
    display: flex;
    opacity: 0;
	justify-content: center;
	position: relative;
	background-color: var(--main-color);
}
.feature-background {
	background-size: cover;
	background-position: center;
	width: 100%;
	position: absolute;
	height: 100%;
	z-index: -1;
	opacity: 0.7;
}
.feature-grid {
	grid-template-columns: 1fr;
	grid-gap: 5px;
}
.mobile-view .category-image {
	height: 75vh;
}
.category-image {
    opacity: 0;
}
.category-image:nth-child(1),
.packages:nth-child(1) {
    animation: fade-in 0.3s forwards 0.3s linear;
}
.category-image:nth-child(2),
.packages:nth-child(2){
    animation: fade-in 0.3s forwards 0.4s linear;
}
.category-image:nth-child(3),
.packages:nth-child(3) {
    animation: fade-in 0.3s forwards 0.5s linear;
}
.category-image, .feature, .full-banner, .feature-inside {
    background-size: cover;
    background-position: center;
}
.feature-portrait {
	background-size: cover;
	background-position-x: center;
}
.category-link {
	display: flex;
	justify-content: center;
	flex-direction: column;
	height: 100%;
	opacity: 1;
	color: var(--white);
    transition: all 0.5s ease-in-out;
}
.category-link h2 {
    align-self: center;
}
.category-link p {
	text-align: center;
	margin: 0;
	opacity: 0;
	transition: opacity 1s;
	padding: 0 20px;
}
.category-link:hover p {
	opacity: 1;
}
.category-link:hover {
	background-color: var(--light);
}
.feature-link {
    align-self: center;
    text-align: center;
    color: var(--white);
}
/* -------------------- Navigation -------------------- */
.navigation, .sub-navigation {
    padding: 10px 0;
    border-bottom: solid thin var(--black);
}
.navigation {
    height: 40px;
}
.navigation nav {
    display: none;
}
nav ul, .sub-navigation ul, .top-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.top-social li {
	margin-right: 10px;
}
nav li, .sub-navigation li {
    padding: 10px;
}
nav li a, .sub-navigation li a {
    color: var(--light);
}
nav li a:hover, .sub-navigation li a:hover {
    color: var(--main-color);
}
.current_page_item a {
	font-weight: var(--fw-bold);
	color: var(--main-color);
}
.top-social {
	position: absolute;
	left: 1em;
	top: 1em;
}
.top-social li a {
	margin-right: 5px;
}
/* -------------------- Navigation Mobile -------------------- */
.navigation-mobile {
	width: 0;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}
#navoverlay {
	background-color: var(--white);
}
.mobile {
	display: none;
	opacity: 0;
}
.close-btn {
	display: block;
}
.menu-btn {
	cursor: pointer;
	width: 30px;
	position: absolute;
	top: 1em;
    right: 1em;
    color: var(--light);
}
.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;
}
.show-menu {
	opacity: 0;
	display: block;
}
ul.sub-menu {
	display:none;
}
.slideDown {
  display: block;
}
.menu-contents {
	display: flex;
	flex-wrap: wrap;
    height: 100vh;
    justify-content: center;
    text-align: center;
}
.nav .menu-main-container {
	font-size: 1.5rem;
	margin-bottom: 3em;
}
.nav ul, .contact-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav li, .contact-nav li {
	width: 100%;
	padding: 5px 0;
}
.nav {
	align-self: center;
	width: 100%;
}
.nav, .contact-nav {
	margin-bottom: 20px;
}
.nav li a, .contact-nav li a {
	color: var(--main-color);
}
/* -------------------- Hamburger Icon -------------------- */
#Rectangle_27, #Rectangle_28, #Rectangle_29,
#Rectangle_30, #Rectangle_31, #Rectangle_32 {
	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 -------------------- */
.page-title h1, .page-title h2, .page-title p {
    margin: 0;
}
.page-title p {
	font-size: 20px;
}
.page-title-cta p {
    color: var(--light);
}
/* -------------------- Back to top -------------------- */
.back-to-top {
	position: fixed;
	bottom: 0;
	right: 10px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.5s ease-out;
}
.show {
	opacity: 1;
	pointer-events: all;
}
.back-to-top:hover circle {
	fill: #4a4a4a;
}
.back-to-top:hover text,
.back-to-top:hover path {
	fill: #fff;
}
/* -------------------- Gallery / Banner -------------------- */

.banner img, .photo-grid img {
    width: 100%;
    height: auto;
}
.photo-grid {
    display: grid;
    grid-template-columns: 1fr;
	grid-auto-flow: dense;
	grid-gap: 20px;
}
.full-banner {
    width: 100%;
    height: 70vh;
}
.gallery, .grid, .links {
	display: flex;
	flex-wrap: wrap;
}
.space {
	justify-content: space-between;
}
.gallery-item {
	float: left;
	width: 40%;
	flex-grow: 1;
	margin: 5px;
}
.gallery-item img {
	width: 100%;
	height: auto;
}
.gallery-item img:hover {
	opacity: 0.6;
}
/* -------------------- Packages -------------------- */
.packages-grid {
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	height: auto;
	display: flex;
	list-style: none;
	padding: 0 0 50px 0;
}
.packages {
	flex: 0 0 auto;
	text-align: center;
    width: 75%;
    opacity: 0;
}
.packages {
	padding: 2em;
	border: solid thin var(--lgrey);
	position: relative;
	border-radius: 10px;
	padding-bottom: 5em;
	transition: all 0.5s ease-in-out;
}
.packages:hover {
	box-shadow: 0 0 1em var(--black);
}
.packages h2, .packages h3, .more-information h2, .more-information h3 {
    text-align: center;
    margin: 0;
}
.packages h3, .more-information h3 {
    color: var(--light);
    font-weight: normal;
}
.price {
    text-align: center;
    font-size: 2rem;
    margin: 1em 0;
    font-weight: var(--fw-bold);
}
.included ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}
.included li {
	line-height: 2em;
	margin-bottom: 1em;
}
.packages-button {
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
}
.more-information {
	padding: 2em;
}
.more-information-image img {
	width: 150px;
	height: 100px;
	margin: 0 auto 1em auto;
}
/* -------------------- Download Wedding Magazine -------------------- */
.cream-background {
	background-color: var(--cream);
}
.download-magazine {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 30px;
}
.download-magazine__form {
	align-self: center;
}
.download-magazine__image img {
	width: 100%;
	max-width: 600px;
}
.download-magazine__info {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 20px;
	margin-top: 2em;
}
.download-magazine__info input {
	box-sizing: border-box;
	width: 100%;
	padding: 10px 10px;
	margin-bottom: 5px;
	border: solid thin var(--black);
	border-radius: 10px;
	transition: all 0.5s ease-in-out;
}
.download-magazine__info label {
	margin-left: 5px;
}
div.wpcf7-response-output {
	padding: 10px !important;
	border-radius: 5px;
}
div.wpcf7-mail-sent-ok {
	background-color: #398f14;
	color: var(--white);
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
	background-color: #f7e700;
}
span.wpcf7-not-valid-tip {
	background-color: #ebcbcb;
	padding: 10px;
	border-radius: 5px;
}
/* -------------------- Button -------------------- */
.btn a {
	padding: 1em 2em;
	display: inline-block;
	border-radius: 3em;
}
.btn a:hover, .home .btn-main a {
	color: var(--white);
	background-color: var(--main-color);
}
.btn-clear a {
    color: var(--white);
    border: solid thin var(--white);
    background-color: var(--light);
}
.btn-main a {
	color: var(--main-color);
	border: solid thin var(--lgrey);
}
.packages-button a {
    color: var(--main-color);
    background-color: var(--white);
    border: solid thin var(--lgrey);
}
.btn-down {
    margin-top: 2em;
}
/* -------------------- Contact and Booking Form -------------------- */

.wpcf7-submit {
	width: 60%;
	cursor: pointer;
}
.wpcf7-submit:hover {
	background-color: #272727;
	color: #fff;
}
.bookingform {
	width: 80%;
	max-width: 600px;
	margin: 0 auto;
}
label {
	margin-left: 20px;
	display: inline-block;
	margin-bottom: 10px;
	font-weight: var(--fw-bold);
}
.bookingform input, .bookingform select, .bookingform textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 20px 20px;
	margin-bottom: 5px;
	border: solid thin var(--black);
	border-radius: 30px;
	transition: all 0.5s ease-in-out;
}
.bookingform input:focus, .bookingform select:focus, .bookingform textarea:focus, .download-magazine__info:focus {
	background-color: var(--black);
}
.bookingform hr {
	margin: 3em auto;
	border: solid thin var(--black);
	width: 100px;
}
/* -------------------- FAQ -------------------- */
.faq {
	padding: 20px 0;
}
/* New Updated Accordion */

.wrapper {
	min-height: 0;
	display: inline-block;
	position: relative;
  }
  .wrapper label {
	  display: none;
  }
  @media (max-width: 550px) {
	.wrapper {
	  box-sizing: border-box;
	  transform: translate(0, 0);
	  max-width: 100%;
	  min-height: 100%;
	  margin: 0;
	  left: 0;
	}
  }
  .wrapper h2 {
	  display: block;
	  margin: 0;
	  cursor: pointer;
	  font-size: 12pt;
	  align-self: center;
	  width: 100%;
	  padding: 10px 20px 10px 0;
	  margin-bottom: -20px;
	  font-weight: normal;
	  color: var(--main-color);
  }
  .wrapper h2::before {
	content: "Q. ";
	font-weight: bold;
}
.wrapper p {
	position: relative;
	overflow: hidden;
	max-height: 800px;
	opacity: 1;
	transform: translate(0, 0);
	margin-top: 3em;
	z-index: 2;
	padding: 0 3em 0 0;
	transition: all 500ms ease;
	color: var(--light);
	margin-bottom: 2em;
}
  .wrapper p,
  .wrapper ul li i:before,
  .wrapper ul li i:after {
	transition: all 0.25s ease-in-out;
  }
  .wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  .wrapper ul li {
	  position: relative;
	  padding: 0;
	  display: flex;
	  flex-wrap: wrap;
	  margin-bottom: 2em;
	  border-bottom: solid thin var(--black);
  }
  .wrapper ul li i {
	position: absolute;
	transform: translate(-20px, 0);
	margin-top: 9px;
	right: 0;
  }
  .wrapper ul li i:before,
  .wrapper ul li i:after {
	content: "";
	position: absolute;
	background-color: var(--main-color);
	width: 3px;
	height: 16px;
  }
  .wrapper ul li i:before {
	transform: translate(2px, 0) rotate(45deg);
  }
  .wrapper ul li i:after {
	transform: translate(2px, 0) rotate(-45deg);
  }
  .wrapper ul li input[type=checkbox] {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
  }
  .wrapper ul li input[type=checkbox]:checked ~ p {
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	transform: translate(0, 50%);
  }
  .wrapper ul li input[type=checkbox]:checked ~ i:before {
	margin-top: 9px;
	height: 9px;
	transform: translate(2px, 0) rotate(45deg);
  }
  .wrapper ul li input[type=checkbox]:checked ~ i:after {
	margin-top: 9px;
	height: 9px;
	transform: translate(-2px, 0) rotate(-45deg);
  }
  .wrapper ul li:nth-of-type(1) {
	border-top: none;
	animation-delay: 0.5s;
  }
  
  /* End of New Accordion */

/* -------------------- Item -------------------- */

.item {
	margin: 30px;
}
.item-image {
	height: 300px;
	width: 300px;
	margin: auto;
	overflow: hidden;
}

.item-name {
	text-align: center;
	font-weight: var(--fw-bold);
}
/* -------------------- Footer -------------------- */
footer {
	color: var(--light);
	margin-top: 3em;
	margin-bottom: 6em;
}
footer a {
	color: var(--light);
}
footer a:hover {
	color: var(--main-color);
}
.footer-logo img {
	width: 200px;
}
.footer-links ul {
    display: flex;
	justify-content: center;
	color: var(--main-color);
    margin-top: 2em;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li a {
    padding: 0 5px;
}
.copyright {
	font-size: 10px;
}

/*

	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) {

.navigation {
    height: auto;
}
.navigation nav {
    display: block;
}
.packages-grid {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
	flex-wrap: nowrap;
	overflow-x: auto;
	overflow-y: auto;
	height: auto;
	padding: auto;
}
.packages {
    flex: 0 0 auto;
    width: auto;
}
.gallery-item {
	width: 20%;
}
footer {
	margin-bottom: 0;
}

/* -------------------- Drop-Down -------------------- */
nav ul ul {
	display: none;
}
nav ul li:hover > ul {
	display: block;
}
nav ul {
	position: relative;
}
nav ul:after {
	content: ""; clear: both; display: block;
}
nav ul li:hover {
	background-color: var(--clear);
}
nav ul ul {
	background: var(--clear);
	position: absolute;
	top: 100%;
}
nav ul ul li {
	position: relative;
}
nav ul ul li a {
	padding: 10px;
}
nav ul ul li a:hover {
	color: var(--light);
}
nav ul ul ul {
	position: absolute; left: 100%; top:0;
}
ul.sub-menu li a {
	margin-left: -10px;
	padding: 0;
}

}


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

@media all and (min-width: 75em) {
.logo-slogans, .feature-grid {
    grid-template-columns: repeat(3, 1fr);
}
.feature-grid {
	height: 80vh;
}
.desktop-view {
    display: grid;
}
.mobile-view {
    display: none;
}
.slogan {
    display: block;
}
.logo-slogans {
    margin: 2em auto;
}
h1 {
    font-size: 3rem;
}
.photo-grid {
    grid-template-columns: repeat(3, 1fr);
}
.logo {
	border-left: solid thin var(--black);
	border-right: solid thin var(--black);
}
.logo img {
	width: 250px;
}
.download-magazine {
	grid-template-columns: 1fr 1fr;
}
.download-magazine__info {
	grid-template-columns: repeat(2, 1fr);
}
.mobile-message {
	display: none;
}
}

/*

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


*/


@media all and (max-height: 680px) {

.feature, .feature-portrait {
	height: 90vh;
}

}
