/*
Theme Name: Frost
Theme URI: https://frostwp.com/
Author: WP Engine
Author URI: https://wpengine.com/
Description: With its clean, minimal design and powerful feature set, Frost enables agencies to build stylish and sophisticated WordPress websites. Frost is a masterpiece of design and functionality. It features a range of valuable patterns, including hero and portfolio sections, prominent call-to-action buttons, and customer testimonials. Whether you’re building a website for your business, personal brand, or creative project, Frost is perfect for anyone looking to launch quickly and efficiently.
Tags: block-patterns, block-styles, custom-colors, custom-logo, custom-menu, editor-style, full-site-editing, one-column, template-editing, threaded-comments, translation-ready, wide-blocks
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.2
Version: 1.0.10
License: GNU General Public License v3
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: frost
*/

/* Defaults
---------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a,
button,
input:focus,
input[type="button"],
input[type="submit"],
textarea:focus,
.wp-element-button {
  transition: all 0.2s ease-in-out;
}

a,
a:focus,
a:hover,
a:not(.wp-element-button) {
  text-decoration-thickness: 1px;
}

b,
strong,
th {
  font-weight: var(--wp--custom--font-weight--medium);
}

mark {
  background: linear-gradient(
    90deg,
    var(--wp--preset--color--primary) 0%,
    var(--wp--preset--color--primary) 100%
  );
  background-position: 0 85%;
  background-repeat: repeat-x;
  background-size: 100% 15%;
}

/* -- Forms -- */

input,
select,
textarea {
  background-color: var(--wp--preset--color--base);
  border: 1px solid var(--wp--preset--color--contrast);
  border-radius: 0;
  color: var(--wp--preset--color--contrast);
  font-family: var(--wp--preset--font-family--primary);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--font-weight--light);
  line-height: var(--wp--custom--line-height--body);
  padding: 10px 20px;
  width: 100%;
}

input:focus,
textarea:focus {
  background-color: var(--wp--preset--color--neutral);
  outline: none;
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
  width: auto;
}

input[type="button"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="text"],
textarea {
  -webkit-appearance: none;
}

::placeholder {
  color: var(--wp--preset--color--contrast);
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.5;
}

/* Blocks
---------------------------------------- */

/* -- Code -- */

*:not(.wp-block-code) > code {
  background-color: var(--wp--preset--color--neutral);
  font-size: var(--wp--preset--font-size--small);
  padding: 5px 8px;
}

/* -- Navigation -- */

.wp-block-navigation__responsive-container.is-menu-open {
  padding: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container.is-menu-open
  .wp-block-navigation__responsive-container-content {
  padding-top: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  border: 1px solid currentColor;
  padding: 2px;
}

.has-background .wp-block-navigation__responsive-container-open:focus,
.has-background .wp-block-navigation__responsive-container-open:hover {
  color: var(--wp--preset--color--base);
}

/* -- Navigation Submenu -- */

.wp-block-navigation:not(.has-background)
  .wp-block-navigation__submenu-container {
  background-color: var(--wp--preset--color--contrast);
  border: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  padding: 10px;
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) a {
  padding: 2px 10px;
}

/* Utility
---------------------------------------- */

/* -- Zoom Hover -- */

.zoom-hover {
  overflow: hidden;
}

.zoom-hover img {
  transition: transform 0.3s ease-in-out;
}

.zoom-hover:hover img {
  transform: scale(1.1);
}

/* -- Box Shadow -- */

.is-style-shadow-light {
  box-shadow: var(--wp--preset--shadow--light);
}

.is-style-shadow-solid {
  box-shadow: var(--wp--preset--shadow--solid);
}

/* Navigation Markup */

.wp-block-navigation .wp-block-navigation-item a,
.wp-block-navigation .wp-block-navigation-link {
  transition: all 0.3s ease;
  position: relative;
}

.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-link:hover {
  color: #27ac5f !important; /* Change to your brand color */
  text-decoration: none;
}

.wp-block-navigation .wp-block-navigation-item a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #27ac5f;
  transition: width 0.3s ease;
}

.wp-block-navigation .wp-block-navigation-item a:hover::after {
  width: 100%;
}

/* CONTACT FORM 7 STYLES */

/* Main form container */
.wpcf7-form {
  font-family: var(--wp--preset--font-family--inter);
  max-width: 100%;
  margin: 0 auto;
}

/* Labels */
.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 400;
  color: #979696;
}

/* Input fields & textarea */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: var(--wp--preset--font-family--inter);
  transition: all 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form textarea:focus {
  border-color: var(--wp--preset--color--primary);
  background-color: white;
  outline: none;
}

/* Submit button */
.wpcf7-form input[type="submit"] {
  font-family: var(--wp--preset--font-family--inter);
  font-weight: 900;
  background-color: #1e8549;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #27ac5f;
  transform: translateY(-2px);
}

/* Success & Error Messages */
.wpcf7-response-output {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  font-weight: 500;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Optional: Make it responsive */
@media (max-width: 768px) {
  .wpcf7-form input[type="submit"] {
    width: 100%;
  }
}
.wp-block-button.small-padding-button .wp-block-button__link {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.wp-block-button.small-padding-button .wp-block-button__link {
  background-color: #186a3a;
  transition: all 0.3s ease;
}

.wp-block-button.small-padding-button .wp-block-button__link:hover {
  background-color: #27ac5f;
}

.wp-block-button.contact-btn .wp-block-button__link {
  background-color: #186a3a;
  transition: all 0.3s ease;
}
.wp-block-button.contact-btn .wp-block-button__link:hover {
  background-color: #27ac5f;
  transition: all 0.3s ease;
}
/* Media Queries
---------------------------------------- */

@media only screen and (max-width: 600px) {
  /* -- Utility -- */

  .is-style-hidden-mobile {
    display: none !important;
  }
}

@media only screen and (max-width: 782px) {
  /* -- Columns -- */

  .is-style-columns-reverse {
    flex-direction: column-reverse;
  }
}

@media (max-width: 1120px) {
  .quote-btn {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* Force Mobile Menu (Hamburger) under 1140px*/
@media (max-width: 960px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: block !important;
  }

  .wp-block-navigation__responsive-container:not(.is-menu-open):not(
      .hidden-by-default
    ) {
    display: none !important;
  }
  .wp-container-core-group-is-layout-ad6528fd {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: left !important;
  }
}

/* Desktop behavior above 1140px */
@media (min-width: 961px) {
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: none !important;
  }

  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(
      .is-menu-open
    ) {
    display: block !important;
  }
}
