/*
Theme Name: Adrian Price
Theme URI: 
Author: Marius Cautis
Author URI: 
Description: 
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
Text Domain: adrian-price
Tags: 



Table of Contents
- Globals
- Jumping modules - Homepage 
- Custom List - Gutenberg Element
- Service Tiles - Gutenberg Element
- Homepage Slider - Gutenberg Element
- Homepage Template
- Footer
- Contact Page
- Hero Block Styles
- Editor Styling
- Single Blog Template
*/






/* Globals Start  */



html {
	scroll-behavior: smooth;
}
a:focus,
a:focus-visible{
    outline: none !important;
}

:root {
    --beige: #F9EFE5;
    --brown : #5f3034;
    --darkGreen : #354945;
    --lightGreen : #50998B;
    --paleGreen : #CBCCC6;
}

.monochrome-image{
    filter: grayscale(100%);
}
.container{
    max-width: 1600px;
    width: 100%;
    margin: auto !important;
}


.container-medium{
    max-width: 1200px;
    width: 100%;
    margin: auto !important;
}


.green-btn a{
    transition: 0.3s;
}
.green-btn a:hover{
    background-color: var(--lightGreen) !important;
    color: #fff !important;
    transition: 0.3s;
}
.full-width{
    min-width: 100%;
    display: flex;
}
.centered{
    margin: auto !important;
}

.position-unset{
    position: unset !important;
}
.max-width-100{
    max-width: 100px;
}
.max-width-200{
    max-width: 200px;
}
.max-width-300{
    max-width: 300px;
}
.max-width-400{
    max-width: 400px;
}
.max-width-500{
    max-width: 500px;
}
.max-width-600{
    max-width: 600px;
}
.max-width-700{
    max-width: 700px;
}
.max-width-800{
    max-width: 800px;
}
.max-width-900{
    max-width: 900px;
}
.max-width-1000{
    max-width: 1000px;
}
.centered{
    margin: auto !important;
}
.heade-area{
    transition: 0.3s !important;
}
.header-area.scrolled{
    background-color: var(--darkGreen);
    min-height: unset !important;
    transition: 0.5s !important;
}
.btn-pale-green a{
    border: 2px solid transparent;
    border-radius: 50px;
}
.btn-green a{
    border: 2px solid transparent;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-pale-green a:hover,
.btn-green a:hover{
    cursor: pointer;
}
.btn-green:hover a{
    background-color: var(--paleGreen) !important;
    transition: 0.3s;
    color: var(--darkGreen) !important;
    border-color: var(--darkGreen) !important;
    cursor: pointer;
}
.btn-pale-green:hover a{
    background-color: var(--darkGreen) !important;
    transition: 0.3s;
    color: var(--paleGreen) !important;
    border-color: var(--paleGreen) !important;
    cursor: pointer;
}
@media screen and (min-width: 800px){
    .hide-on-desktop{
        display: none !important;
    }    
}

@media screen and (max-width: 800px){
    .hide-on-mobile{
        display: none !important;
    }
}

@media screen and (max-width: 781px){
    body{
        overflow: scroll !important;
    }
    .panel{
        height: auto !important;
        min-height: auto !important;
    }
    .panel:nth-child(1){
        height: auto !important;
        min-height: 100vh !important;
    }
    .header-area{
        padding: 20px 20px !important; 
        min-height: unset !important;
      
    }
    #navRight{
        display: none !important;
    }
    #scrollIndicator{
        display: none;
    }

}



/* Globals End */






/* Jumpin Modules - Homepage Start  */



body { 
    margin: 0;
    padding: 0;
}
body.home{
    overflow: hidden;
}
.container {
    position: relative;
    transition: 1s ease-out;
    -webkit-transition: 1s ease-out;
}

.panel { 
    height: 100vh;
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: white;
}


/* Right Navigation Styles */
.nav-right {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.nav-dot.active {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 1px 5px 0px rgba(0,0,0,0.75);
}

.nav-dot::after {
    /* content: attr(data-label);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease; */
}

.nav-dot:hover::after {
    opacity: 1;
}
/* Scroll Chevrons */
.scroll-indicator {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.chevron {
    width: 50px;
    height: 8px;
    position: relative;
    margin: 6px 0;
    cursor: pointer;
}

.chevron::before,
.chevron::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: white;
    border-radius: 2px;
    top: 50%;
    transform-origin: center;
}

.chevron::before {
    left: 0;
    transform: translateY(-50%) rotate(45deg);
}

.chevron::after {
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
}

/* Opacity levels for each chevron */
.chevron:nth-child(1) {
    opacity: 1;
}

.chevron:nth-child(2) {
    opacity: 0.66;
}

.chevron:nth-child(3) {
    opacity: 0.33;
}

/* Pulsating animation */
@keyframes pulse {
    0% {
        transform: translateX(-50%) translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) translateY(5px);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(0px);
        opacity: 0.8;
    }
}

.scroll-indicator {
    animation: pulse 2s ease-in-out infinite;
}

/* Individual chevron animations with delays */
@keyframes chevron-pulse-1 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes chevron-pulse-2 {
    0%, 100% { opacity: 0.66; }
    50% { opacity: 0.4; }
}

@keyframes chevron-pulse-3 {
    0%, 100% { opacity: 0.33; }
    50% { opacity: 0.2; }
}

.chevron:nth-child(1) {
    animation: chevron-pulse-1 1.5s ease-in-out infinite;
}

.chevron:nth-child(2) {
    animation: chevron-pulse-2 1.5s ease-in-out infinite 0.2s;
}

.chevron:nth-child(3) {
    animation: chevron-pulse-3 1.5s ease-in-out infinite 0.4s;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .nav-right {
        right: 10px;
        gap: 10px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
    
    .nav-dot::after {
        display: none;
    }

    .scroll-indicator {
        bottom: -100px;
    }

    .chevron {
        width: 40px;
        height: 6px;
        margin: 4px 0;
    }

    .chevron::before,
    .chevron::after {
        height: 2px;
    }
}

@media screen and (max-width: 781px){
    .panel.content-image .wp-block-column img{
        max-height: 200px;
        width: auto;
    }
    .panel.content-image h1{
        text-align: center !important;
        font-size: 20px !important;
        margin: auto !important;
        margin-bottom: 20px !important;
    }
    .panel.content-image figure{
        justify-content: center;
        display: flex;
        text-align: center;
        width: 100%;
    }
    .panel.content-image figure.hero-logo-img img{
        max-width: 150px;
    }
    .centered-on-mobile{
        text-align: center !important;
        display: flex;
        justify-content: center;
    }
    .panel-two h2{
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    .panel-two p{
        margin-bottom: 10px !important;
        font-size: 16px !important;
    }
    .panel-two p.bold-paragraph{
        max-width: unset !important;
        margin-bottom: 10px !important;
        font-size: 16px !important;
    }
    .panel-two .custom-list p{
        margin-bottom: 0px !important;
        font-size: 12px !important;
    }
}




/* Jumping modules - Homepage End */



/* - Custom List - Gutenberg Element Start  */

.custom-list p{
    text-align: left;
    position: relative;
    width: 90%;
}
.custom-list p::after{
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--brown);
}

/* - Custom List - Gutenberg Element End  */




/* Service Tiles - Gutenberg Element Start  */

#service-tiles .wp-block-columns{
    justify-content: center;
    flex-wrap: nowrap !important;
}
#service-tiles .wp-block-columns{
    margin-bottom: 30px !important;
}
#service-tiles .wp-block-column{
    min-height: 220px;
    border: 1px solid transparent;
}

#service-tiles .wp-block-column:hover{
    background-color: #fff !important;
    border-color: var(--darkGreen) !important;
}
#virtual-director,
#place-based-strategy,
#insight-influence,
#board-executive-advice {
    scroll-margin-top: 100px; /* Adjust the value as needed */
}

/* 1. Center images and elements within the service tiles */
#service-tiles .wp-block-tiptip-hyperlink-group-block {
    display: flex !important;
    flex-direction: column;
    align-items: center; /* Centers items horizontally in flex */
    text-align: center;
}

#service-tiles .wp-block-tiptip-hyperlink-group-block img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
}

/* 2. Remove underlines from text elements within the blocks */
#service-tiles .wp-block-tiptip-hyperlink-group-block,
#service-tiles .wp-block-tiptip-hyperlink-group-block a,
#service-tiles .wp-block-tiptip-hyperlink-group-block a:hover,
#service-tiles .wp-block-tiptip-hyperlink-group-block *:not(button) {
    text-decoration: none !important;
    box-shadow: none !important; /* Some themes use box-shadow for underlines */
}

/* Ensure headings and paragraphs specifically don't show underlines */
#service-tiles .wp-block-tiptip-hyperlink-group-block h3,
#service-tiles .wp-block-tiptip-hyperlink-group-block p {
    text-decoration: none !important;
}


@media screen and (max-width: 450px){
    #service-tiles.wp-block-cover{
        padding: 10px;
    }
    #service-tiles .wp-block-column{
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}
/* Service Tiles - Gutenberg Element End  */



/* Homepage Slider - Gutenberg Element Start  */

#flexi-slider .wp-block-gslider-blocks-flexi-content-item{
    border-radius: 10px;
}

/* Homepage Slider - Gutenberg Element End  */



/* - Homepage Template Start  */

.home footer{
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
}
.home #testimonials-area{
    position: relative;
    z-index: 1;
}
.home #testimonials-area .wp-block-cover__inner-container{
    position: unset;
}

@media screen and (max-height: 800px){
    .content-image.panel-two p{
        margin-bottom: 0px !important;
    }
    .content-image.panel-two img,
    #hero-block .wp-block-image img{
        max-height: 70% !important;
        max-width: 70% !important;
    }
    #service-tiles .wp-block-column{
        min-height: 180px !important;
    }
    #service-tiles .wp-block-image img{
        max-height: 50px;
    }
    #hero-block .content-column figure{
        display: flex;
    }
    #service-tiles h3{
        font-size: 18px;
    }
    #service-tiles .wp-block-column{
        padding: 5px 20px !important;
    }
    #service-tiles p{
        font-size: 16px !important;
    }
    .testimonials .testimonial-content{
        margin-bottom: 10px !important;
    }
    #service-tiles h2,
    #testimonials-area h2{
        margin-bottom: 10px !important;
    }
    #service-tiles{
        padding-top: var(--wp--preset--spacing--70) !important;
    }
    #flexi-slider{
        padding-top: 50px !important;
    }
    #flexi-slider .icons-slider-block .icons-slider,
    #flexi-slider .icons-slider-block h2{
        margin-bottom: 30px;
    }
    .home .testimonials{
        margin-bottom: 200px !important;
    }
    .testimonials .testimonial-item{
        padding : 20px 50px !important;
    }
}

@media screen and (max-width: 781px){
    .home .testimonials{
        margin-bottom: unset !important;
    }
    .home footer{
        position: relative;
        padding: 0px;
    }
    .home .panel{
        padding: 50px 10px !important;
    }
    .home .panel .icons-slider-block{
        border: 10px solid var(--paleGreen);
        border-radius: 20px;
        padding: 20px !important;
    }
    .icons-slider .owl-prev{
        left: 0px !important;
        font-size: 75px !important;
    }
    .icons-slider .owl-next{
        right: 0px !important;
        font-size: 75px !important;
    }
    .testimonials .owl-nav .owl-prev span{
        left: 10px;
        font-size: 70px !important;
    }
    .testimonials .owl-nav {
        height: 0px;
    }
    .testimonials .owl-nav .owl-next span{
        right: 10px;
        font-size: 70px !important;
    }
    .testimonials .testimonial-item{
        border: 10px solid #fff;
        border-radius: 20px;
    }
    #footer-contact-banner{
        margin-bottom: -30px !important;
    }
    #footer-contact-banner .wp-block-group{
        border-radius: 10px 10px 0px 0px !important;
    }
}
/* - Homepage Template End  */




/* Footer Start  */

footer .footer-menu{
    gap: 15px;
}

#footer-contact-banner{
    margin-bottom: -50px;
    height: 100px;
}
#footer-contact-banner .wp-block-column{
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer-contact-banner .wp-block-group{
    background: var(--paleGreen);
    max-width: 1200px;
    border-radius: 15px;
    z-index: 5;
    position: absolute;
    width: 100%;
    height: 70px;
}
#footer-contact-banner .wp-block-button{
    display: flex;
}
#footer-contact-banner h3{
    color: var(--darkGreen);
    font-weight: 900;
    margin-right: 20px;
}
footer .wp-block-social-links{
    gap: 20px;
}
footer .x-social svg,
footer .linked-in-social svg{
    display: none;
}
footer .linked-in-social a{
    width: 25px;
    height: 25px;
    background-image: url('/wp-content/themes/adrian-price/assets/images/white-li.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
footer .x-social a{
    width: 25px;
    height: 25px;
    background-image: url('/wp-content/themes/adrian-price/assets/images/white-twitter.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x,
:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{
    background-color: transparent !important;
}
@media screen and (max-width: 600px){
    footer{
        padding: 60px 0px;
    }
}
/* Footer End  */



/* - Contact Page Start */

#contact-hero {
    position: relative;
}
#contact-hero .contact-hero-img{
    position: absolute;
    left: 0px;
    /* bottom: 0px; */
    top: 100px;
}
#contact-hero .wp-block-cover__inner-container{
    position: unset !important;
}
#contact-hero .wp-block-column{
    position: relative;
}
#contact-form .gform_body input:focus,
#contact-form .gform_body input:focus-visible,
#contact-form .gform_body textarea:focus,
#contact-form .gform_body textarea:focus-visible{
    outline: none;
}
#contact-form .gform_body input{
    border: unset;
    background-color: var(--paleGreen);
    border-radius: 50px;
    padding: 10px 30px;
}
#contact-form .gform_body textarea{
    border: unset;
    background-color: var(--paleGreen);
    border-radius: 20px;
    padding: 10px 30px;
}
#contact-form .gform_button.button{
    background-color: var(--darkGreen);
    color: var(--paleGreen);
    padding: 5px 20px;
    border-radius: 50px;
    margin: auto;
    text-transform: uppercase;
    transition: 0.3s;
}
#contact-form .gform_button.button:hover{
    color: var(--darkGreen);
    background-color: var(--paleGreen);
    transition: 0.3s;
    cursor: pointer;
}
@media screen and (max-width: 1000px){
    #contact-hero .wp-block-columns{
        display: flex;
        justify-content: center;
    }
    #contact-hero .wp-block-columns h1{
        padding-top: 10px;
    }
    #contact-hero .wp-block-column {
        background-color: rgba(203, 204, 198, 0.75); /* 0.75 = 75% opacity */
        border-radius: 15px;
        border: 1px solid var(--darkGreen);
        position: absolute;
        max-width: 80%;
        bottom: 20px;
    }
    #contact-hero .wp-block-column > *{
        max-width: 90%;
        margin: auto;
    }
    #contact-hero .contact-hero-img{
        top: unset;
        bottom: 0px;
    }
    
}

@media screen and (max-width: 600px){
    #contact-hero{
        min-height: 600px !important;
    }
}
@media screen and (max-width: 500px){
    #contact-hero{
        min-height: 550px !important;
    }
    #contact-hero h1{
        font-size: 18px !important;
    }
    #contact-hero p{
        font-size: 14px;
    }
}
@media screen and (max-width: 400px){
    #contact-hero{
        min-height: 450px !important;
    }
}
/* - Contact Page End */




/* - Hero Block Styles Start  */
#hero-block {
    background-color: #354B47 !important;
}
#hero-block .wp-block-cover__image-background {
    object-fit: contain !important;
}
.page-template-wp-custom-template-homepage #container{
    max-width: unset !important;
}
/* - Hero Block Styles End  */




/* - Editor Styling Start  */


.editor-visual-editor .icons-slider img{
    max-width: 150px !important;
}



/* - Editor Styling End  */




/* - Single Blog Template Start  */
#single-blog-content-area *{
    max-width: unset;
}
#other-blogs-area {
    border-radius: 25px;
}

#other-blogs-area ul li:last-child div{
    border-bottom: unset;
}

/* - Single Blog Template End  */