/*
Theme Name: GCA
Author: Seven Hills Creative
Author URI: https://www.sevenhillscreative.co.uk/
Description: Another custom theme for a happy customer!
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2025.1
Requires at least: 5.2
Requires PHP: 7.0
*/

html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}

/* BASE */
:root {
    --color-black: #0F1F40;
    --color-white: #fff;
    --color-green: #17BA66;
    --color-palegreen: #F0FAF5;
    --color-blue: #123B94;
    --color-darkblue: #0D1B35;
    --color-grey: #6A7282;
    --color-lightgrey: #F3F4F6;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    color: #0F1F40;
    box-sizing: border-box;
    font-family: "Noto Sans", sans-serif;
    outline: 1px solid red !important;
}

body {
    font-family: "Noto Sans", sans-serif;
    display: grid;
}


@media only screen and (max-width: 1100px) {}
@media only screen and (max-width: 960px) {}
@media only screen and (max-width: 760px) {}
@media only screen and (max-width: 660px) {}
@media only screen and (max-width: 560px) {}
@media only screen and (max-width: 460px) {}
@media only screen and (max-width: 360px) {}
@media only screen and (max-width: 320px) {
    body, header, main, section, footer {
    width: 320px;
    }
}



/* LAYOUT */
/* .page-gutenberg-content {
    display: grid;
    grid-column: 2/16;
    padding: 2em 0;
    gap: 1em;
} */


section, article, main, nav, header, #primary, footer {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-column: 1 / 17;
    justify-self: center;
    max-width: 2000px;
    width: 100%;
}


/* BUTTON LINKS */
.all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1em !important;
    font-weight: 700;
    cursor: Pointer;
    border-radius: 8px;
    justify-self: center;
    padding: 1em 2em;
}

.green-button {
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    color: var(--color-white);
}

.clear-button {
    background-color: transparent;
    border: none;
    color: var(--color-green);
    padding: 0;
}

.clear-white-button {
    background-color: var(--color-white-10, #FFFFFF1A);
    border: 1px solid var(--color-white-20, #FFFFFF33);
    color: var(--color-white);
}

.white-button {
    background-color: var(--color-white);
    border: 1px solid var(--color-azure-3330, #123B944D);
    color: var(--color-blue);
}


@media only screen and (max-width: 800px) {

    .all-button {
    }
}





/* TEXT */
h1, h2, h3, h4, h5, h6{
    font-family: "Noto Sans", sans-serif;
    font-weight: 700;
    line-height: 1.5;
}

h1{
    font-size: 4em;
}

h2{
    font-size: 2.5em
}

h3{
    font-size: 1.25em;
}

h4{
    font-size: 1em;

}

p, li{
    font-size: 1.125em;
    font-weight: 400;
    word-break: break-word;
}

label {
    font-size: 0.875em;
    font-weight: 400;
    letter-spacing: 0.35px;
}

img {
    width: 100%;
}

ul.main-nav{
  padding: 0;
}

li::marker {

}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

a {
  cursor: Pointer !important;
  text-decoration: none;
}



@media only screen and (max-width: 800px) {

    h1,  h1 span{
        font-size: 2.5em;
    }
    
    h2{
        font-size: 1.75em;

    }
    
    h3{
        font-size: 0.875em;
    
    }
    
    h4{
        font-size: 1.25em;
    }
        
    p , li{
        font-size: 1.125em;
    }   
    
    label {
        font-size: 0.875em;
    }

}

/* 404 PAGE */

section.error{
    min-height: 60vh;
    align-content: center;
    grid-column: 2 / 16;
}

section.error h1 {
    color: #0E2D4B;
    text-align: center;
    grid-column: 2 / 16;
}

section.error p {
    text-align: center;
    grid-column: 2 / 16;
}










/* MENU BAR DESKTOP VIEW */

.grid-header-section {
    display: grid;  
    grid-column: 1/17; 
    background-color:  var(--color-lightgrey);      
    padding: 0.5em 0;
    box-shadow: 0px 1px 12px 0px #00000014;
    border-bottom: 1px solid var(--color-grey-96, #F3F4F6);
}

.header-logo-img {
    max-width: 54px;
    display: grid;
}


@media only screen and (min-width: 1000px) {

    .grid-header-outer {
        display: grid;
        grid-template-columns: auto auto;
        grid-column: 2/16;
        align-items: center;
        z-index: 99;
    }

    .header-menu {
        display: flex;
        justify-content: space-between;   
        align-items: center;
    }

    .header-menu ul{
        display: flex;
        column-gap: 2em;
    }

    .menu-item a span{
        color: #4B5563;  
        font-weight: 400;
        font-size: 14px;
    }

    .header-menu .main-nav li.current-menu-item > a,
    .header-menu .main-nav li.current_page_item > a,
    .header-menu .main-nav li.current-menu-ancestor > a,
    .header-menu .main-nav li.current_page_ancestor > a,
    .header-menu .main-nav li.current-menu-item > a span,
    .header-menu .main-nav li.current_page_item > a span,
    .header-menu .main-nav li.current-menu-ancestor > a span,
    .header-menu .main-nav li.current_page_ancestor > a span {
        color: var(--color-green);
        font-weight: 700;
    }

    #hamburger-input, .overlay, #hamburger-menu, #sidebar-menu, .header-bar  {
        display: none;
    }

}


.contact-menu-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1em !important;
    font-weight: 700;
    cursor: Pointer;
    border-radius: 8px;
    justify-self: center;
    padding: 1em 2em;
    background-color: var(--color-green);
    border: 1px solid var(--color-green);
    color: var(--color-white);
}




/* RESPONSIVE MENU UNCLICKED */
@media only screen and (max-width: 1000px) {

    .grid-header-section {
        padding: 0;
    }

    .mobile-contact-menu-item {
        display: grid;
        justify-self: center;
    }

    .grid-header-outer {
        display: none;
    }

    .header-bar {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-column: 2 / 16;
        align-self: center;
        margin: 1em 0;
        z-index: 20;
        align-items: center;
    }

    .header-logo-img {
        max-width: 96px;
        margin: 0;
    }

    .responsive-menu {
        align-self: center;
        justify-self: end;
        display: flex;
        gap: 0.5em;
        align-items: center;
    }

    .menu-icon {
        width: 22px;
        height: 2px;
        border-radius: 1px;
        background-color: var(--color-black);
        margin: 2px 0;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s, visibility .35s, height .35s;
        overflow: hidden;
        background: var(--color-white);
    }
    
    #hamburger-input{
        display: none;
    }
    
    #hamburger-menu {
        display: flex;
        align-items: start;
        flex-direction: column;
    }

    #hamburger-menu #sidebar-menu {
        grid-template-columns: 1fr;
        visibility: hidden;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        box-sizing: border-box;
        z-index: 20;
    }

    .side-menu-inner {
        padding: 2em 0;
        background-color:  var(--color-lightgrey);
    }

    /* Scroll Side Menu */
    #sidebar-menu {
        overflow-y: auto;
        height: 100%;
    }

    /* Hide sub-menu by default */
    .sub-menu.hidden {
        display: none;
    }

    #hamburger-menu ul li ul,
    #hamburger-menu ul li ul li ul {
        height: auto;
    }

    #hamburger-menu li {
        list-style-type: none;
        justify-items: center;
        padding: 0.5em 0;
        display: grid;
    }

    #hamburger-menu a {
        text-decoration: none;
        transition: transform 0.5s;
        align-items: center;
        display: flex;
        text-transform: capitalize;
        justify-self: center;
        letter-spacing: 0;
    }

    .inner-mobile-header-logo {
        max-width: 96px;
        justify-self: center;
    }

    #hamburger-menu i {
        font-size: 18px;
    }

    #hamburger-menu a:active{
        -ms-transform: translateX(30px);
        -webkit-transform: translateX(30px);
        transform: translateX(3px);
    }

    #hamburger-input:checked + #hamburger-menu #sidebar-menu {
        visibility: visible;
        right: 0;
    }

    #side-nav li > a > span,
    #side-nav li > .menu-link-wrapper > a > span {
        color: var(--color-black);
        font-weight: 500;
    }

    .side-nav li a span {
        font-size: 16px;
        font-weight: 600;
        color: var(--color-black);
    }

    #side-nav {
        padding: 2em 1em;
        display: grid;
    }

}







/* FOOTER */

.footer {
    background-color: var(--color-darkblue);
    padding: 5em 0;
    position: relative;
}

.footer-areas {
    display: grid;
    grid-template-columns: 35% auto auto auto;
    grid-column: 2 / 16;
    gap: 2em;
    z-index: 2;
    padding: 0 0 2em 0;;
}

.footer-box {
    display: grid;
    align-content: start;
}

.footer-box p {
    color: rgb(243, 235, 214, 0.8);
}

.footer-box p strong {
   font-weight: 600;
}

.footer-box p i {
    color: var(--color-cream);
}

.footer-box p a {
    font-size: 16px;
    font-weight: 300;
    color: rgb(243, 235, 214, 0.9);
}

.footer-box h2 {
    font-weight: 400;
    font-size: 16px;
    color: rgb(243, 235, 214, 0.7);
    text-transform: uppercase;
}

.footer-nav-one,
.footer-nav-two,
.footer-nav-three {
    display: grid;
    gap: 0.5em;
    padding: 1em 0 0;
}


/* COL ONE  */
.footer-column-one {
    display: grid;
    gap: 1em;
}

.footer-column-one a img {
    max-width: 36px;
    width: 100%;
    object-fit: contain;
}

.social-details {
    display: flex;
    gap: 1em;
}






/* COL TWO  */
.footer-col-two {
    display: grid;
    grid-template-columns: 1fr;
}

.footer-box li a span {
    text-transform: none;
    font-weight: 500;
    font-size: 16px;
    color: rgb(243, 235, 214, 0.9);
    text-transform: capitalize;
}



/* COL THREE  */
.side-contact-details {
    display: grid;
    gap: 1em;
    padding-bottom: 1em;
}

.side-contact-details i {
    font-size: 16px;
}

.side-contact-details a,
.side-contact-details span {
    color: rgb(243, 235, 214, 0.9);
    display: flex;
    gap: 0.5em;
    align-items: center;
    font-size: 16px;
    word-break: break-all;
    text-transform: none !important;
    line-height: 1.3;
}

.side-contact-details a strong,
.side-contact-details strong {
    font-weight: 600;
    color: rgb(243, 235, 214, 0.9);
    display: flex;
    gap: 0.5em;
    align-items: center;
    font-size: 16px;
    word-break: break-all;
    text-transform: none !important;
    line-height: 1.3;
}

.side-contact-details a i,
.side-contact-details i,
.side-social-details i {
    color: rgb(243, 235, 214, 0.9);
    font-size: 18px;
    min-width: 30px;
}

.side-social-details {
    display: flex;
    gap: 1em;
    padding-bottom: 1em;
}

.side-social-details i {
   font-size: 24px;
   min-width: auto;
}


/* LOWER BAR CONTENT */

.lower-bar-content {
    display: flex;
    grid-column: 2/16;
    color: var(--color-orange-90, #F3EBD6);
    border-top: 1px solid var(--color-white-10, #FFFFFF1A);
    padding: 2em 0 0;
    justify-content: space-between;
    align-items: center;
}

.lower-bar-content .footer-nav-four {
    display: flex;
    gap: 1em;
}

.lower-bar-content .footer-nav-four a span {
    color: var(--color-orange-90, #F3EBD6);

}


/* COL FOUR */

.footer-floating-info-box {
    background: var(--color-white-5, #FFFFFF0D);
    padding: 12px;
    border-radius: 10px;
    margin: 2em 0 0 0;
    display: grid;
    gap: 0.5em;
    
}

.footer-floating-info-box h2 {
    margin-bottom: 0.5em;
}

@media only screen and (max-width: 1000px) {

    .lower-bar-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 1em;
    }

    .footer {
        padding: 3em 0;
    } 

    .footer-column-one,
    .footer-col-two {
        grid-template-columns: 1fr;
    }

    .footer-col-two {
       gap: 0;
    }

    .side-contact-details {
        justify-items: center;
    }

    .side-contact-details a {
        flex-wrap: wrap;
        justify-content: center;
    }

    .side-social-details {
        justify-content: center;
        padding-bottom: 2em;
    }

    .footer-areas {
        grid-template-columns: 1fr;
        gap: 2em;
        justify-content: center;
        text-align: center;
        justify-items: center;
        margin: 2em 0;
    }

}





/* HERO */

.gca-hero-block {
    position: relative;
}

.gca-hero-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 20, 34, 0.752) 0%, rgba(8, 20, 34, 0) 50%, rgba(8, 20, 34, 0) 100%);
    z-index: 1;
    pointer-events: none;
}


.gca-hero-block__inner {
    display: grid;
    grid-column: 2/16;
}

.gca-hero-block__content {
    display: grid;
    gap: 1em;
    max-width: 600px;    
}
