/*
Theme Name: PhotoFocus Child Theme
Theme URI: https://www.accend4web.co.uk
Description: A child theme for x.
Author: Accend Web Solutions
Author URI: https://www.accend4web.co.uk
Template: photofocus
Text Domain: photofocus-child
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

@font-face {
  font-family: 'AlegreyaSansSC-Bold';
  src: url('https://www.heicio.co.uk/wp-content/themes/photofocus-child/AlegreyaSansSC-Bold/AlegreyaSansSC-Bold.ttf');
}

@font-face{
  font-family:"JoannaSans";
  src:
    url("Joanna-Sans-Font/JoannaSansNovaRegular.woff2") format("woff2"),
    url("Joanna-Sans-Font/JoannaSansNovaRegular.woff") format("woff"),
    url("Joanna-Sans-Font/JoannaSansNovaRegular.TTF") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face {
  font-family: 'Montserrat-Variable';
  src: url('https://www.heicio.co.uk/wp-content/themes/photofocus-child/Montserrat-Font/Montserrat-VariableFont_wght.ttf');
}

@font-face {
  font-family: 'Montserrat-Italic';
  src: url('https://www.heicio.co.uk/wp-content/themes/photofocus-child/Montserrat-Font/Montserrat-Italic-VariableFont_wght.ttf');
}

@font-face {
  font-family: 'Montserrat-Black';
  src: url('https://www.heicio.co.uk/wp-content/themes/photofocus-child/Montserrat-Font/Montserrat-Black.ttf');
}

html, body {
	font-family: "JoannaSans", sans-serif !important; background-color: #000000 !important;
    -webkit-font-smoothing: antialiased;   /* Chrome/Safari */
    -moz-osx-font-smoothing: grayscale;    /* mainly macOS Firefox */
    text-rendering: optimizeLegibility;
}

.page.no-sidebar .content-area {
	max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
.modula-item-content > a {
	cursor: pointer !important;
}

/* container setup */
.modula-item-content {
    position: relative;
    overflow: hidden; 
}

/* make sure the image is the bottom layer */
.modula-item-content img{
  display: block;
  position: relative;
  z-index: 0;
}

/* dark overlay */
.modula-item-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* title text layer */
.workPageWrapper .modula-item-content::before {
    content: attr(title);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'JoannaSans' !important;
    color: #fff;
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 1rem;

    opacity: 0;
    transform: translateY(40px); /* start 40px below centre */
    transition: opacity 0.4s ease, transform 0.4s ease;

    z-index: 2;
    pointer-events: none;
}

/* hover state */
/* hover triggers (use both to be safe across browsers / plugin skins) */
.modula-item:hover .modula-item-content::after,
.modula-item:hover .modula-item-content::before,
.modula-item-content:hover::after,
.modula-item-content:hover::before{
  opacity: 1;
}

.modula-item:hover .modula-item-content::before,
.modula-item-content:hover::before{
  transform: translateY(0);
}

transition: opacity 0.35s cubic-bezier(.4,0,.2,1),
            transform 0.35s cubic-bezier(.4,0,.2,1);

text-shadow: 0 2px 8px rgba(0,0,0,0.6);


.modula-item-content img {
    transition: transform 0.3s ease;
}

.modula-item:hover img {
    transform: scale(1.05);
}

.scroll-down {
	display: none;
}

.page.absolute-header.navigation-default .main-navigation a, .page.absolute-header.navigation-default .main-navigation a:visited, .page.absolute-header.navigation-default .main-navigation a:active, .page.absolute-header .site-title a {
	color: #ffffff !important;
}

.site-title a {
	font-family: "JoannaSans", sans-serif !important;
}

.aboutWrapper, .workWrapper {
	margin-top: 100px;
}

.workPageWrapper {
	margin-top: 150px;
}

.dash {
	font-size: 2rem; line-height: 2rem; color: #ffffff; font-weight: 300;
}

.projectFullPage .projectTextFull {
	margin-top:30px;
	display: block;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 300;
}

.projectFullPage .projectThumbs {
	margin-top: 50px;
}

.projectTextFull p {
	text-align:justify;
}

.site-footer #site-generator.one {
	display: none;
}

/* Lee */
/*
.modula-gallery{
  margin-left: 50px;
  padding-right: 150px;
  padding-left: 100px;
  margin-top:50px;
}*/

.page-id-233 .modula-gallery, .page-id-94 .modula-gallery, .page-id-25 .modula-gallery {
  padding-left: 0px;
  margin-top: 50px;
}

.modula-gallery{
  padding-left: 50px;
}

.netherbyGallery .modula-gallery{
  margin-left: 0;
  margin-right: 0;
  margin-top:-50px;
}

/* Fullscreen intro overlay (homepage only) */
.home .hero-intro-overlay{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,1.0); /* tweak or remove if you want no tint */
  opacity: 1;
  pointer-events: none; /* so it never blocks clicks */
  animation: heroIntroFadeOut 1.8s ease forwards;
  animation-delay: 2.7s; /* how long it stays visible */
}

.home .hero-intro-overlay__inner{
  transform: translateZ(0);
}

.home .hero-intro-title{
  opacity: 0;
  transform: translateY(10px);
  /*animation: heroTitleFadeIn 0.7s ease forwards;*/
  animation: heroTitleFadeIn 1s cubic-bezier(.4,0,.2,1) forwards;
  animation-delay: 0.7s; /* 0.7 second delay */
}

@keyframes heroTitleFadeIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce){
  .home .hero-intro-title{
    animation: none;
    opacity: 1;
    transform: none;
  }
}


@media (prefers-reduced-motion: reduce){
  .hero-intro-title{
    animation: none;
    opacity: 1;
    transform: none;
  }
}



/* Overlay fades away */
@keyframes heroIntroFadeOut{
  to{
    opacity: 0;
    visibility: hidden;
  }
}

/* Optional: slightly “nicer” logo fade/scale */
@keyframes heroIntroLogoFade{
  to{
    opacity: 0;
    transform: scale(0.98);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .home .hero-intro-overlay,
  .home .hero-intro-overlay__logo{
    animation: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

.netherbyWrapper {
	max-width: 1280px;
    width: 100%;
    margin: 100px auto !important;
}

.netherbyGallery {
	max-width: 1280px;
    width: 100%;
    margin: 0 auto !important;
}



/* Gareths site CSS Below */
.navigation-default .nav-menu .sub-menu, .navigation-default .nav-menu .children {
  background-color: #ffffff;
}

.home #content, .home footer {
	display: none;	
}

.home a:link {
	color: white;	
}

.page-template .custom-header, .page-template-default:not(.home) .custom-header{
	display: none;	
}

.page-template-default .wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.site-header-menu {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

.site-branding {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.page-template-default .wrapper header {
	display:none;	
}

.page-template-default .section {
	padding: 0;
}

.page-template-default .site-content > .wrapper {
  padding: 20px 30px;
}



.page-template-default:not(.home) .menu-inside-wrapper .main-navigation .sub-menu li a:hover {
    color: #d98e4a;
}

.page-template-default .menu-inside-wrapper #primary-menu li a:hover {
	text-decoration: none;
}

.navigation-default #primary-search-wrapper .menu-toggle {
  display: none;
}

.navigation-default .menu-inside-wrapper .main-navigation > ul > .current-menu-item > a::after {
	display: none;
}

#homeFooterInfoWrapper {
   position: absolute;
   bottom: 0.2%;
   width: 100%;
   height:40px; 
   z-index:999;
   left:0%;
   color: white;
   display:block;
}

#homeFooterInfoLeft {
	position: relative;
	float:left;
	width: auto;
	padding: 0 30px;
}

#homeFooterInfoRight {
	position: relative;
	width: 100%;
	padding: 0;
	text-align: center;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 1000;
  cursor: pointer;
}

#overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}

.homeCover span {
	font-size: 0.6em !important;
	letter-spacing:0.025em;	
}

#overlay p {
  position: fixed;
  top: 65%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  text-transform:uppercase;
}

#breadcrumbWrapper {
	display: none;
}

.workWrapper h1, .pageWrapper h1 {
	font-family: 'JoannaSans' !important;
	font-size: 1.7rem;
}

.workWrapper h3, .pageWrapper h3 {
	font-family: 'JoannaSans' !important;
	font-size: 2rem;
	color: #ffffff !important;
}

.projectFullPage h4 {
	font-size: 1.5em;
}

.projectFullPage h5 {
	font-size: 1.2em;
}

.projectFullPage h4, .projectFullPage h5, .menu-inside-wrapper, .aboutWrapper p, .aboutWrapper span {
	font-family: 'JoannaSans' !important;
}

.absolute-header .site-header, .site-header-main {
  position:absolute;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 99;
  border-bottom: solid #565656 0px;
}

/*
.home .absolute-header .site-header, .home .site-header-main {
  background: rgba(247,247,247, .2);
}*/

.workWrapper h1, .pageWrapper h1, .projectFullPage h4, .projectFullPage h5 {
	color: #ffffff !important;
    font-weight: 500;
}


/*.has-header-text.home .custom-header-media {
  height: calc(100vh - 128px);
}

.home.admin-bar .custom-header {
  height: calc( 100vh - 135px );
}*/

.aboutWrapper {
  width: 100%;
  display: table;
  table-layout: fixed;
  height: 50vh;
  padding: 0;
}

.aboutHeaderImage {
	  padding-bottom: 1rem 0;	
}

.aboutWrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.aboutSectionsLeft,
.aboutSectionsRight {
  width: 50%;
  display: table-cell;
  vertical-align: middle;
}
.aboutSectionTextBlocksRight {
  width: 100%;
  margin: auto;
  padding: 2rem 0 2rem 4rem;
}
.aboutSectionTextBlocksLeft {
  width: 100%;
  margin: auto;
  padding: 2rem 4rem 2rem 0;
}

.aboutSectionTitle {
	font-weight: 600;
}

.absolute-header .menu-toggle {
  color: #fff;
}

.main-navigation a {
  color: #ffffff;
}

.videojs6318fc347f458-dimensions.vjs-fluid {
  padding-top: 0 !important;
}

.site-header-main .site-header-menu .menu-inside-wrapper .main-navigation .sub-menu {
	border-color: #ffffff;
}

.entry-content a:not(.more-link):not(.button):not(.wp-block-button__link):not(.readmore) {
	text-decoration: none;
}
.grid-plus-container .grid-post-item .hover-inner .title {
	text-transform: uppercase; }

.grid-plus-container .grid-post-item .hover-inner .title a {
	font-weight: 500 !important;
}

.contactDetailsWrappers {
	margin-bottom: 30px;
}

.contactDetailsIntroText {
	max-width: 480px;
	text-align: justify;
}

.contactDetailsWrappers  span {
	font-size: 1rem;
}

.fa {
	color: #212529;
}

.projectDesignTeamText p {
	font-size: 0.8rem;
	margin-top: 40px;
}

.projectThumbs .col-lg-3 {
	margin-top: 20px;
}

.icon {
  fill: #fff;
}

.menu-toggle:hover .menu-label, button {
	color: #000000;
}

.menu-inside-wrapper .mobile-social-search {
	display: none;
}


.talkToUs {
	font-size: 1.5rem;
}

#wpforms-1211-field_2 {
	max-width: 480px;
}

.wpforms-confirmation-container-full, div[submit-success] > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: #000000;
  border: 1px solid #f7f7f7;
  box-sizing: border-box;
  color: #fff;
}

.jonesrobbinstobinMon {
	font-family:'AlegreyaSansSC-Bold';
	font-weight: 400;
	letter-spacing: 0.1rem;
	margin: 10px 0 20px 0;
	font-size: 1.599rem;
}

.footer-contact-info {
	font-size: 0.9rem;
}

.site-info a {
	color: #ffffff;
	text-decoration: underline;
}

.home-hero-text {
	width: 100%;
	position: absolute;
	left: 1.5%;
	bottom: 10%;
	padding: 20px;
	box-sizing: border-box;
    z-index: 99;
    outline: 2px solid transparent;
    outline-offset: 2px;
    font-size: 2.5rem;
    letter-spacing: -.005em;
    line-height: 1.3;
    color: #ffffff;
    font-weight:500;
}

.home-hero-text p {
	margin: 0;
}
.page-id-365 .fluid-image-top {
   display: none;
  }
@media (max-width: 1400px) {
.home-hero-text {
    font-size: 2.3rem;
    }
}

@media (max-width: 1100px) {
.home-hero-text {
    font-size: 2.1rem;
    }
}

@media (max-width: 900px) {
.home-hero-text {
    font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
	.home-hero-text {
		width: 100%;
		position: absolute;
		left: auto;
		bottom: auto;
		padding: 15px 0;
        bottom: 15%;
        left: 1.5%;
        font-size: 1.6rem;
	}
      #wp-custom-header img {
    content: url('https://heicio.co.uk/wp-content/uploads/2026/03/Header-MF26-mobile.jpg');
  }
  .custom-mobile-nav {
  	position: relative;
    margin-top:60px;
  }
  .page-id-365 h1, .page-id-365 .dash, .page-id-365 .fluid-image-side {
  	display: none;
  }
  .page-id-365 .contentPages {
    padding-top: 20px;
  }
  .page-id-365 .fluid-image-top {
   display: inline-block;
  }
 
}


.site-branding {
	width: auto !important;
    margin:0;
    max-width:auto;
}

/*
@media screen and (min-width: 64em) {
.site-branding {
  margin: 0 auto 0 20px;
}
}*/


.workWrapper, .why-we-work {
	margin-left: 100px;
	margin-right: 100px;
}

.workPageWrapper {
	margin-left: 0;
	margin-right: 50px;
}


	.absolute-header.navigation-default .main-navigation a:hover, .page-template-default:not(.home) .menu-inside-wrapper .main-navigation li a:hover {
		color: #707477;
	}
}

@media only screen and (min-width: 75em) {
.absolute-header.navigation-default .sub-menu a{
  color: #ffffff;
  text-transform: uppercase;
}
}

@media only screen and (max-width: 982px) {
/*.work-text-wrapper {
	margin-top:40px;
}*/
	#breadcrumbWrapper {
	padding: 0 31px;
}
	.workWrapper h1, .pageWrapper h1 {
	font-size: 1.4rem;
}
		.workWrapper p, .pageWrapper p {
	font-size: 0.9rem;
}
	.projectDesignTeamText p {
		font-size: 0.7rem;
	}
}

@media only screen and (max-width: 500px) {
#homeFooterInfoWrapper {
   bottom: 13%;
}
}

@media only screen and (max-width: 1200px) {
.aboutSectionsLeft,.aboutSectionsRight {
  width: 100% !important; display:block;
}
.aboutWrapper img {
  display:block;
  object-fit: cover;
}
.aboutSectionTextBlocksRight, .aboutSectionTextBlocksLeft {
  width: 100%;
  margin: auto;
  padding: 4rem 0;
}
.workWrapper, .why-we-work {
	margin-left: 10px;
	margin-right: 10px;
}
.modula-gallery{
  margin-left: 10px;
  margin-right: 10px;
  margin-top:30px;
  padding-left: 0;
  padding-right: 0;
}
}