@import url(https://fonts.googleapis.com/css2?family=Marcellus&display=swap);
@charset "UTF-8";
/*
 Theme Name: HotPress
 Theme URI: https://www.bighousecreative.co.uk/
 Author: Big House Creative
 Author URI: https://www.bighousecreative.co.uk/
 Description: A Timber & Tailwind template for creating WordPress sites.
 Version: 1.0
 Tags:
 Text Domain:
 */
/* Import Fonts Here */
/* Styles */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
@media (min-width: 768px) {
  h1{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 1024px) {
  h1{
    font-size: 3rem;
    line-height: 1;
  }
}
h2{
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  h2{
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
h3{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media (min-width: 768px) {
  h3{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
h4{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
@media (min-width: 1024px) {
  h4{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
h5{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media (min-width: 1024px) {
  h5{
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
h6{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
p, a{
  font-size: 1rem;
  line-height: 1.5rem;
}
.header--container {
  position: relative;
}
.header--container:before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, rgba(67, 69, 84, 0.6), rgba(67, 69, 84, 0.6));
  z-index: 0;
  pointer-events: none;
}
.header--container > * {
  position: relative;
  z-index: 1;
}
/* ------------------------------
   Navigation Circle Menu Styles
   ------------------------------ */
:root {
  /* Brand Colours */
  --primary: #003473;
  --secondary: #009DE2;
  /* Greys / Neutrals */
  --grey-434554: #434554;
  --grey-F9F9F9: #F9F9F9;
  --grey-F2F2F2: #F2F2F2;
  --grey-494949: #494949;
  /* Legacy nav values updated to use design system */
  --nav-white: #FFFFFF;
  --nav-black: #000000;
  /* Replace these with your brand colours */
  --nav-primary-light: var(--secondary); /* #009DE2 */
  --nav-primary-dark: var(--primary); /* #003473 */
  --nav-grey: var(--grey-434554); /* #434554 */
}
/* When menu is open, lock page scroll */
html.nav-open,
body.nav-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}
/* Block: navigation */
.navigation {
  position: relative;
  z-index: 1000;
  /* Hide the checkbox toggle */
}
.navigation__checkbox {
  display: none;
}
.navigation__checkbox:checked {
  /* Checkbox checked → expand circle and reveal nav */
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: translateY(-50%) scale(80);
}
.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  visibility: visible;
}
.navigation__checkbox:checked {
  /* Checkbox checked → hamburger turns into X */
}
.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}
.navigation {
  /* Circular hamburger button (inline in header) */
}
.navigation__button {
  background-color: var(--nav-white);
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: auto;
  right: auto;
  z-index: 1001; /* above overlay */
  /* Hover wobble on icon lines */
}
.navigation__button:hover .navigation__icon::before {
  top: -0.6rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 0.6rem;
}
.navigation {
  /* Hamburger icon: 3 lines */
}
.navigation__icon {
  position: relative;
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  background-color: var(--nav-grey);
  transition: background-color 0.2s;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.75rem;
  height: 2px;
  background-color: var(--nav-grey);
  transition: all 0.2s;
}
.navigation__icon::before {
  top: -0.5rem;
}
.navigation__icon::after {
  top: 0.5rem;
}
.navigation {
  /* Expanding circular background behind the menu */
}
.navigation__background {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) scale(0);
  transform-origin: center;
  background-image: radial-gradient(var(--nav-primary-light), var(--nav-primary-dark));
  z-index: 900;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  pointer-events: none;
}
.navigation {
  /* Fullscreen overlay nav */
}
.navigation__nav {
  height: 100vh;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Allow overlay content to scroll */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Vertical stacked mobile-friendly nav */
}
.navigation__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: center;
  gap: 1rem;
  /* Nested dropdowns */
}
.navigation__nav ul ul {
  gap: 0.5rem;
}
.navigation__nav {
  /* Remove bullets */
}
.navigation__nav li {
  list-style: none;
}
.navigation__nav {
  /* Base link styles */
}
.navigation__nav a,
.navigation__nav a:link,
.navigation__nav a:visited {
  display: inline-block;
  font-size: 1rem;
  font-weight: 300;
  color: var(--nav-white);
  text-decoration: none;
  text-transform: uppercase;
  /* Remove gradient background animation for now */
  background: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navigation__nav {
  /* Desktop-only hover effect */
}
@media (min-width: 1024px) {
  .navigation__nav a:hover,
  .navigation__nav a:active {
    color: var(--nav-primary-dark);
    transform: translateX(0.5rem);
  }
}
.navigation {
  /* CTA button inside fullscreen menu */
}
.navigation__cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid var(--nav-white);
  color: var(--nav-white);
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}
.navigation__cta:hover {
  background: var(--nav-white);
  color: var(--nav-primary-dark);
  transform: translateY(-2px);
}
.navigation__cta:active {
  transform: translateY(0);
}
.footer--main:before {
  position: absolute;
  content: "";
  height: 271px;
  width: 265px;
  bottom: 0;
  left: 15%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 20%;
  z-index: 0;
  background-image: url("../dist/images/footer-icon.svg");
}
.footer--main > * {
  position: relative;
  z-index: 0;
}
@keyframes tab-slide-up {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-panel-active {
  animation: tab-slide-up 0.6s ease-out forwards;
}
.no-scrollbar {
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.contact--form input:not(.btn-aw), .contact--form textarea {
  width: 100%;
  border: 0.5px solid #111A39; /* Darker  when focused */
  outline: none;
  padding: 15px 10px;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  color: #242424;
  border-radius: 5px;
  background-color: rgb(193 167 140 / 0.2);
}
.contact--form textarea {
  height: 150px;
}
.contact--form input:focus, .contact--form select:focus, .contact--form textarea:focus {
  border: 2px solid #111A39; /* Darker  when focused */
  color: #111A39;
}
.contact--form ::-moz-placeholder {
  color: #242424;
}
.contact--form ::placeholder {
  color: #242424;
}
details[open] .plus {
  display: none;
}
details[open] .minus {
  display: inline;
}
.error--page * {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .error--page h1 {
    font-size: 100px;
  }
  .error--page h2 {
    font-size: 60px;
  }
}
.error--page:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.61);
}
