@charset "UTF-8";
/*!
Theme Name:   The Charlie Reid Group
Theme URI:    https://github.com/georgestephanis/thecharliereidgroup
Author:       George Stephanis
Author URI:   https://georgestephanis.wordpress.com
Description:  Corporate site for Charlie Reid — menopause education, manager training, and keynote speaking for the workplace.
Version:      1.0
License:      GPL-2.0-or-later
Text Domain:  thecharliereidgroup
Domain Path:  /languages
Requires PHP: 8.2
*/
/*
 * Small presentational layer for things theme.json can't express:
 * nav pill states, hover inversions, icon chips, sticky photo, form styling.
 */
/* Header, main, and footer sit flush — sections are full-bleed bands (per prototype,
   the only separation is the header's 1px bottom border). */
.wp-site-blocks > * + * {
  margin-block-start: 0;
}

/* --- Header navigation pills --- */
.tcrg-nav .wp-block-navigation-item__content {
  padding: 10px 16px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.75);
  transition: background 150ms ease, color 150ms ease;
}
.tcrg-nav .wp-block-navigation-item__content:hover, .tcrg-nav .wp-block-navigation-item__content:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.tcrg-nav .current-menu-item > .wp-block-navigation-item__content {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Overlay (mobile) menu: drop the pill treatment */
.tcrg-nav .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
  color: #fff;
}

/* --- Footer navigation columns --- */
.tcrg-footer-nav .wp-block-navigation-item__content {
  color: rgba(255, 255, 255, 0.7);
  transition: color 150ms ease;
}
.tcrg-footer-nav .wp-block-navigation-item__content:hover, .tcrg-footer-nav .wp-block-navigation-item__content:focus {
  color: #fff;
  text-decoration: none;
}

/* --- Icon chip on cards --- */
.tcrg-icon-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--wp--preset--color--sand);
  color: var(--wp--preset--color--gold);
  font-size: 20px;
  margin-bottom: 10px;
}

/* --- Gold-underlined text links --- */
.tcrg-text-link a {
  font-weight: 700;
  color: var(--wp--preset--color--plum);
  text-decoration: none;
  border-bottom: 2px solid var(--wp--preset--color--gold);
  padding-bottom: 3px;
  transition: color 150ms ease;
}
.tcrg-text-link a:hover, .tcrg-text-link a:focus {
  color: var(--wp--preset--color--plum-light);
}

/* --- Plain gold links ("Learn more →") --- */
.tcrg-gold-link a {
  color: var(--wp--preset--color--gold);
  text-decoration: none;
  transition: color 150ms ease;
}
.tcrg-gold-link a:hover, .tcrg-gold-link a:focus {
  color: #a9843f;
}

/* --- Button hover variants --- */
/* Ghost (outlined white on plum) */
.tcrg-btn-ghost .wp-block-button__link {
  transition: background 150ms ease;
}
.tcrg-btn-ghost .wp-block-button__link:hover, .tcrg-btn-ghost .wp-block-button__link:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

/* Outlined plum on light: invert to solid on hover */
.tcrg-btn-invert .wp-block-button__link {
  transition: background 150ms ease, color 150ms ease;
}
.tcrg-btn-invert .wp-block-button__link:hover, .tcrg-btn-invert .wp-block-button__link:focus {
  background: var(--wp--preset--color--plum);
  color: #fff;
}

/* Solid plum buttons lighten on hover (theme.json hover is gold-specific) */
.wp-block-button__link.has-plum-background-color {
  transition: background 150ms ease;
}
.wp-block-button__link.has-plum-background-color:hover, .wp-block-button__link.has-plum-background-color:focus {
  background-color: #55305e;
  color: #fff;
}

/* --- About page: sticky photo column --- */
.tcrg-sticky {
  position: sticky;
  top: 100px;
}

@media (max-width: 781px) {
  .tcrg-sticky {
    position: static;
  }
}
/* --- Contact form card (Jetpack form) --- */
.tcrg-form-card form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tcrg-form-card .grunion-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tcrg-form-card label {
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--plum);
  margin-bottom: 0;
}
.tcrg-form-card input[type=text],
.tcrg-form-card input[type=email],
.tcrg-form-card input[type=tel],
.tcrg-form-card textarea {
  width: 100%;
  border: 1px solid rgba(61, 31, 69, 0.15);
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #2c3542;
  background: #fff;
}
.tcrg-form-card textarea {
  resize: vertical;
  min-height: 110px;
}
.tcrg-form-card button.wp-block-button__link,
.tcrg-form-card button[type=submit] {
  margin-top: 6px;
  width: 100%;
  background: var(--wp--preset--color--plum);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 150ms ease;
}
.tcrg-form-card button.wp-block-button__link:hover, .tcrg-form-card button.wp-block-button__link:focus,
.tcrg-form-card button[type=submit]:hover,
.tcrg-form-card button[type=submit]:focus {
  background: #55305e;
}

/*# sourceMappingURL=style.css.map */
