/*
Theme Name: Infield
Theme URI: https://wordpress.com/themes/infield/
Description: A passionate sports fan blog celebrating your favorite game.
Version: 1.0.1
Author: Automattic
Author URI: https://automattic.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infield
*/

/*
 * Control the hover stylings of outline block style.
 * Unnecessary once block styles are configurable via theme.json
 * https://github.com/WordPress/gutenberg/issues/42794
 */
.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background):hover {
	background-color: var(--wp--preset--color--secondary);
	color: var(--wp--preset--color--background);
	border-color: var(--wp--preset--color--secondary);
}

.wp-block-table figcaption {
	font-size: var(--wp--preset--font-size--small);
	text-align: center;
}

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
	text-decoration-thickness: .0625em !important;
	text-underline-offset: .15em;
}

/*
 * Navigation Block
 * Reset the padding from List block
 * https://github.com/WordPress/gutenberg/issues/50486
 */
.wp-block-navigation ul {
	padding: unset;
}

.club-contact-form {
  max-width: 480px;
  padding: 24px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.club-contact-form .form-row {
  margin-bottom: 18px;
}

.club-contact-form label,
.club-contact-form .cf-label {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  display: block;
  margin-bottom: 6px;
}

.club-contact-form .cf-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d0d7e2;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.club-contact-form .cf-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.18);
  background-color: #f9fbff;
}

.club-contact-form .cf-radio label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d0d7e2;
  margin-right: 8px;
  margin-top: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.club-contact-form .cf-radio input[type="radio"] {
  accent-color: #2563eb;
}

.club-contact-form .cf-radio label:hover {
  background-color: #f3f4ff;
  border-color: #2563eb;
  box-shadow: 0 0 0 1px rgba(37,99,235,0.1);
}

.club-contact-form .cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  background-color: #b19e73;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 18px rgba(37,99,235,0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.club-contact-form .cf-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(37,99,235,0.4);
  filter: brightness(1.06);
}

.club-contact-form .cf-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(37,99,235,0.3);
}