/*
 Theme Name: Terasu Media House Child
 Theme URI: https://terasumediahouse.com
 Description: Child theme for the Nikon SPA Velvet Chrome System
 Author: Terasu Media House
 Author URI: https://terasumediahouse.com
 Template: twentytwentythree
 Version: 1.0
*/

/* TMH Global Brand Styling */

/* Primary Brand Colors */
:root {
  --tmh-mint: #B8FFC8;
  --tmh-gold: #FFF8E7;
  --tmh-shadow-mint: 0 0 8px #A6FFD0;
  --tmh-shadow-gold: 0 0 12px #FFE8A6;
}

/* Links + Interaction Glow */
a {
  color: var(--tmh-mint);
  text-shadow: var(--tmh-shadow-mint);
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--tmh-gold);
  text-shadow: var(--tmh-shadow-gold);
}

/* Accent Buttons */
button,
.wp-element-button,
input[type="submit"] {
  background-color: var(--tmh-mint);
  border-radius: 6px;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  transition: transform 0.2s;
  box-shadow: var(--tmh-shadow-mint);
}

button:hover,
input[type="submit"]:hover {
  background-color: var(--tmh-gold);
  box-shadow: var(--tmh-shadow-gold);
  transform: scale(1.05);
}