/*
Theme Name: Punchies 2024 Child
Theme URI: https://punchiesprotein.com/
Description: Simple, branded child theme for Punchies Protein Gummies, based on Twenty Twenty-Four.
Author: Punchies Team
Author URI: https://punchiesprotein.com/
Template: twentytwentyfour
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: punchies-2024-child
*/

:root {
  --punchies-pink: #ff497c;
  --punchies-blush: #ffe8ef;
  --punchies-gray: #3a3a3a;
  --punchies-white: #fff;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--punchies-white);
  color: var(--punchies-gray);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', Arial, sans-serif;
  color: var(--punchies-pink);
}

a {
  color: var(--punchies-pink);
  text-decoration: none;
}
a:hover {
  color: #c92b5c;
}

.site-footer, footer, .wp-block-group.alignfull {
  background: var(--punchies-pink) !important;
  color: var(--punchies-white) !important;
}
.site-footer a, footer a, .wp-block-group.alignfull a {
  color: var(--punchies-white) !important;
  text-decoration: underline;
}
.site-footer a:hover, footer a:hover {
  color: #ffe8ef !important;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 88px;
  border-bottom: 1px solid #f0ecea;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.site-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.site-branding .tagline {
  font-size: 1rem;
  margin-top: 0.15em;
  color: #f75a8f;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.site-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.site-nav a {
  font-weight: 500;
  color: #f75a8f;
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav a:hover,
.site-nav .current-menu-item > a {
  text-decoration: underline;
  font-weight: 700;
}