/*

	Theme Name: Hello Elementor Child

	Theme URI: https://orb.solutions

	Description: Hello Elementor Child Theme

	Author: ORB Solutions

	Author URI: https://orb.solutions

	Template: hello-elementor

	Version: 1.1.13

	License: GNU General Public License v2 or later

	License URI: http://www.gnu.org/licenses/gpl-2.0.html

	Text Domain: hello-elementor-child

*/

@font-face {
font-display:swap;
  font-family: "Montserrat";
  src: url('/wp-content/themes/hello-elementor-child/./assets/fonts/Montserrat-VariableFont_wght.ttf');
}

:root {
  /* Most brands will use 3-4 colors, 6 are used for the demo theme */

  --brand-color-1: #081930;		/* Primary Color - PUP Navy*/
  --brand-color-2: #326CB3;		/* Highlight Color - PUP Blue */
  --brand-color-3: white;		/* Light Neutral - Full White */
  --brand-color-4: #CED7DA;		/* Dark Neutral/Accent 1 - PUP Gray */
  --brand-color-5: black;		/* Mid Neutral/Accent 2 - True Black */
  --brand-color-6: #cccccc;		/* Mid Neutral - C Gray */
  --drop-shadow: 1px 1px 3px rgba(0, 0, 0, 0.69);
  --mega-height: 300px;					/* Adjust the height depending on amount of links */
  --mega-top: 150px;					/* Adjust the top to align with the bottom of the header */
  --mega-slide: left 0.8s ease;
}

/* SITE HEADER */

#orb-site-header {
  display: flex;
  position: sticky;
  top: 0;
  padding: 20px 10px;
  z-index: 100;
  align-items: center;
  font-family: Montserrat;				/* Brand Font */
  background-color: var(--brand-color-1);		/* Main Header Color */
  border-bottom: 3px solid var(--brand-color-2);	/* Highlight Color to divide header from content */
  transition: top ease 0.2s;
}

#orb-site-header.orb-sticky-effect {
	/* Add styles to change the header after scrolling down */
	/* Update the transition property to all if necessary */
}

#orb-site-header a {
  text-decoration: none;
}

#orb-site-logo {
  display: flex;
  width: 7%;
  transition: width ease 0.2s;
}

@media screen and (min-width: 1025px) {
	#orb-site-header.orb-sticky-effect {
		--mega-top: 120px;
	}
	
  #orb-site-header.orb-sticky-effect #orb-site-logo {
    width: 5%;
  }
}

  #orb-site-logo img {
    width: 100%;
    max-width: 150px;
  }

#orb-social-links {
  display: flex;
  width: 10%;
  margin: 0 20px;
  column-gap: 15px;
}

.orb-social-button {
  display: flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  fill: var(--brand-color-2);				/* Social Media Icon - Contrast with Header */
  transition: fill ease 0.2s;
}

.orb-social-button:hover {
  fill: var(--brand-color-4);				/* Icon On Hover - Change from base color, but still contrast with Header */
}

#orb-site-navigation {
  display: flex;

  align-items: center;
  justify-content: flex-start;
  column-gap: 20px;
  font-size: 20px;
  font-weight: bold;
}

a.orb-header-link {					/* Specificity used to override Elementor */
  color: var(--brand-color-3);				/* Navigation Link Color - Contrast with Header */
  transition: color ease 0.2s;
}

a.orb-header-link:hover, .orb-header-link.active {	/* Also overrides Elementor */
  color: var(--brand-color-4);				/* Link On Hover/Current Page - Change from base color, contrast with Header */
}

  .orb-header-link svg {
    width: 0.8em;
    height: 0.8em;
    fill: var(--brand-color-3);				/* Dropdown Arrow Color - Match Link Color */
    transition: fill ease 0.2s;
  }

  .orb-header-link:hover svg {
    fill: var(--brand-color-4);				/* Arrow On Hover - Match Link On Hover */
  }

#orb-header-cta {
  display: flex;
  margin-left: auto;
  padding: 15px;
  justify-content: center;
  column-gap: 10px;
  color: var(--brand-color-3);				/* CTA Text Color - Contrast with CTA Background */
  font-size: 24px;
  font-weight: 700;
  text-shadow: var(--drop-shadow);
  background-color: var(--brand-color-2);		/* CTA Background Color - Contrast with Header */
  border-radius: 10px;
  transition: background-color ease 0.2s;
}

#orb-header-cta:hover {
  background-color: var(--brand-color-4);		/* CTA On Hover - Change from base color, contrast with Header, possibly add color property if new color does not contrast with text color */
}

  #orb-header-cta svg {
    width: 24px;
    fill: var(--brand-color-3);				/* CTA Icon Color - Match CTA Text */
    filter: drop-shadow(var(--drop-shadow));
  }

.orb-header-dropdown {
  position: relative;
  z-index: 3;
}

#orb-mega-background, #orb-mega-overlay {
  display: block;
  position: fixed;
  top: var(--mega-top);
  left: -110%;
  width: 100%;
  height: var(--mega-height);
  box-shadow: 0 5px 10px black;
  transition: var(--mega-slide);
}

#orb-mega-background {
  z-index: 1;
  background-image: url('/?seraph_accel_gi=wp-content%2Fuploads%2F2024%2F10%2FPaver-Sealing-Contractors-Driveway-Florida-PUP-Pavers-and-Turf.png.webp&n=PRjZJeszddWYz4lnrV22Uw');
  background-size: cover;
  background-position: center;
}

#orb-mega-overlay {					/* Include if background image is a simple photo */
  z-index: 2;
  background-color: var(--brand-color-3);		/* Overlay Color - Contrast with menu background color */
  opacity: 0.50;
}

#orb-mega-lightbox {
  display: block;
  position: fixed;
  top: 0;
  left: -110%;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: var(--mega-slide);
}

#orb-mega-background.orb-toggled, #orb-mega-overlay.orb-toggled, #orb-mega-lightbox.orb-toggled {
  left: 0;
}

.orb-header-menu {
  display: flex;
  position: fixed;
  top: var(--mega-top);
  left: -110%;
  height: var(--mega-height);
  z-index: 3;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: var(--brand-color-5);		/* Dropdown Background Color - Contrast with Header or define strong border */
  border-top: 3px solid var(--brand-color-2);		/* Dropdown Highlight Accent - Contrast with Header, change to full border if necessary */
  overflow: hidden;
  transition: var(--mega-slide);
}

  .orb-header-menu .orb-header-link {
    display: block;
    padding: 10px;
	font-size: 16px;					/* Decrease font size to allow more links to fit */
    transition: background-color ease 0.2s;
  }

  .orb-header-menu .orb-header-link:hover, .orb-header-menu .active {
    background-color: var(--brand-color-1);		/* Dropdown Link On Hover/Current Page - Contrast with Dropdown Background */
  }

.orb-header-column {
  display: flex;
  height: calc(var(--mega-height) - 60px);		/* Adjust depending on the height of the headings */
  flex-direction: column;
  flex-wrap: wrap;
  border-right: 1px solid var(--brand-color-1);		/* Divider Line Color - Choose a subtle neutral color different than the Dropdown Background */
}

.orb-header-link.orb-header-heading {
  font-size: 24px;
  font-weight: 700;
}

.orb-dropdown-toggle {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.orb-header-dropdown.orb-toggled .orb-header-menu {
  left: 0;
}

.orb-header-dropdown.orb-toggled .orb-dropdown-toggle {
  left: 90%;
}

.orb-header-dropdown.orb-toggled svg {
    transform: rotate(180deg);
}

#orb-mobile-toggle {
  display: none;
}

@media screen and (min-width: 1025px) {
  #orb-contact-menu {
    width: 100%;
    height: calc(var(--mega-height) * 0.7);
    margin-top: calc(var(--mega-height) * 0.15);
    padding: 50px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 50px;
    border-bottom: 3px solid var (--brand-color-2);	/* Dropdown Highlight Accent - Match the top border if it exists */
  }
}

.orb-contact-logo {
  max-width: 250px;
}

#orb-header-info a {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
  color: var(--brand-color-3);				/* Contact Info Color - Contrast with menu background */
  transition: color ease 0.2s;
}

#orb-header-info a:hover {
	color: var(--brand-color-1);				/* Contact Info Color On Hover - Contrast with menu background */
}

  #orb-header-info a span {
    max-width: 90%;
  }

#orb-header-info svg {
  width: 16px;
  fill: var(--brand-color-3);				/* Contact Icon Color - Highlight Color or match text */
  transform: rotate(0);
}

/* SITE FOOTER */

#google-reviews {
  max-width: 1420px;
  margin: auto;
  padding: 10px;
}

#orb-site-footer {
  padding: 50px 10px;
  font-family: Montserrat;				/* Brand Font */
  background-color: var(--brand-color-1);		/* Main Footer Color */
  color: var(--brand-color-3);				/* Footer Text Color - Contrast with Footer */
}

  #orb-site-footer h2 {
    margin: 0 0 20px;
    font-weight: bold;
  }

  #orb-site-footer img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
  }

  #orb-site-footer iframe {
    width: 100%;
    border-radius: 10px;
  }

  #orb-site-footer p {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  #orb-site-footer a {
    color: var(--brand-color-3);			/* Footer Link Color - Match Text Color to override defaults */
    text-decoration: none;
  }

  #orb-site-footer a:hover, #orb-site-footer .active {
    color: var(--brand-color-2);			/* Link On Hover - Change from base color, contrast with Footer */
  }

.orb-container {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
}

.orb-footer-column {
  display: flex;
  width: 25%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.orb-footer-column:first-of-type {
  align-items: start;
}

.orb-footer-column:last-of-type {
  width: 50%;
}

#orb-footer-info a, .orb-footer-number {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  column-gap: 10px;
}

  #orb-footer-info a span {
    max-width: 90%;
  }

#orb-footer-info svg {
  width: 16px;
  fill: var(--brand-color-2);				/* Footer Icon Color - Highlight Color or match text */
}

#orb-social-footer {
  display: flex;
  width: 100%;
  margin-top: 20px;
  column-gap: 15px;
}

#orb-social-footer .orb-social-button:hover {
  fill: var(--brand-color-3);				/* Social Media Icon On Hover - Change from base Footer Icon, contrast with Footer */
}

.orb-footer-link {
  display: block;
  margin-bottom: 20px;
  font-size: 150%;
  font-weight: bold;
}

/* RESPONSIVE STYLES */

@media screen and (max-width: 1570px) {			/* Adjust this value at the point the largest menu peaks from off page */
							/* Compensate for the horizontal scroll bar with +20 pixels */
  :root {
    --mega-height: 320px;
  }

  .orb-header-menu {
    max-width: 100%;
    overflow-x: scroll;
  }

  .orb-header-column {
    height: calc(var(--mega-height) - 80px);
  }
}

@media screen and (max-width: 1560px) {
  /* Adjust the top of the mega menu when the header height increases from responsive styles */

  :root {
    --mega-top: 205px;
  }
	
  #orb-site-header {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 20px;
  }
	
	#orb-site-header.orb-sticky-effect {
		--mega-top: 142px;
	}

  #orb-site-logo, #orb-social-links, #orb-header-cta {
    order: 0;
    width: 32%;
    margin: 0;
  }

  #orb-site-navigation {
    order: 1;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/* MOBILE STYLES */

@media screen and (max-width: 1024px) {
  #orb-site-header.orb-hidden {
    top: -135px;
  }
	
  #orb-mega-background, #orb-mega-overlay, #orb-mega-lightbox {
    display: none;
  }

  #orb-site-logo, #orb-social-links {
    width: 100%;
    justify-content: center;
  }

  #orb-site-navigation {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    max-height: 100%;
    z-index: 1;
    order: 1;
    overflow: scroll;
    background-color: var(--brand-color-1);		/* Mobile Dropdown Background Color */
    border-bottom: 3px solid var(--brand-color-2);	/* Dropdown Accent - Matches Header Accent, change to work with divider style */
    transition: height ease 0.2s;
  }

  #orb-site-navigation.orb-toggled {
    height: 100%;
  }

  .orb-header-menu {
    display: none;
    position: static;
    width: 100%;
	height: initial;
    border: none;
    box-shadow: 0 0 10px black inset;
    flex-wrap: nowrap;
  }
	
  .orb-header-column {
    height: initial;
    flex-wrap: nowrap;
    border-right: none;
    border-bottom: 1px solid var(--brand-color-3);	/* Move divider line from the left to the bottom */
  }

  .orb-header-link svg {
    position: absolute;
    top: 0.8em;
    right: 0.5em;
  }

  #orb-header-cta {
    width: fit-content;
    font-size: 20px;
  }

  #orb-mobile-toggle {
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-color-2);		/* Mobile Dropdown Toggle Button - Contrast with Header */
    border-radius: 10px;
  }

    #orb-mobile-toggle svg {
      width: 1.5em;
      height: 1.5em;
      fill: var(--brand-color-3);			/* Hamburger/X Icon Color - Contrast with Toggle Button Background */
    }

  #orb-toggle-close {
    display: none;
  }

  #orb-mobile-toggle.orb-toggled {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 2;
    background-color: var(--brand-color-4);		/* Mobile Dropdown Toggled - Change from base color to highlight as toggled */
  }

    #orb-mobile-toggle.orb-toggled #orb-toggle-open {
      display: none;
    }

    #orb-mobile-toggle.orb-toggled #orb-toggle-close {
      display: block;
    }

  .orb-header-link {
    display: block;
    padding: 15px;
  }
	
  .orb-header-dropdown.orb-toggled .orb-header-menu {
    display: block;
  }
	
  .orb-contact-logo, #orb-header-info {
    display: none;
  }

  .orb-footer-column {
    width: 45%;
    justify-content: start;
  }

  .orb-footer-column:first-of-type {
    align-items: center;
    width: 100%;
  }

  .orb-footer-column:nth-of-type(2) {
    align-items: start;
    width: 30%;
  }

  .orb-footer-column:last-of-type {
    width: 70%;
  }

  #orb-social-footer {
    justify-content: center;
  }

  #orb-site-footer p {
    order: 2;
  }
}

@media screen and (max-width: 500px) {
  .orb-footer-column:nth-of-type(2), .orb-footer-column:last-of-type {
    align-items: center;
    width: 100%;
  }
}