:root {
  --gc-black: #101010;
  --gc-charcoal: #2f2f2f;
  --gc-white: #ffffff;
  --gc-orange: #fd4401;
  --gc-pink: #e44873;
  --gc-cyan: #84fef9;
  --gc-link: #35c5bf;
  --gc-surface: #ececed;
  --gc-border: #e0e0e0;
  --gc-radius: 10px;
  --gc-container: 1280px;
  --gc-font: "Inter", sans-serif;
}

body {
  color: var(--gc-charcoal);
  font-family: var(--gc-font);
}

a {
  color: var(--gc-link);
}

a:hover,
a:focus {
  color: var(--gc-cyan);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gc-charcoal);
  font-family: var(--gc-font);
  font-weight: 700;
}

h1 {
  font-size: clamp(35px, 6vw, 67px);
  letter-spacing: -2px;
  line-height: 1;
}

h2 {
  font-size: clamp(29px, 5vw, 51px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.3;
}

.elementor-button,
button,
input[type="submit"] {
  background: var(--gc-orange);
  border: 1px solid var(--gc-orange);
  border-radius: var(--gc-radius);
  color: var(--gc-white);
}

.elementor-button:hover,
.elementor-button:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: transparent;
  color: var(--gc-black);
  border-color: var(--gc-black);
}

.site-header,
.goodcasting-header {
  padding: 10px 0;
}

.site-footer,
.goodcasting-footer {
  background: var(--gc-black);
  color: var(--gc-white);
}

.site-footer a,
.goodcasting-footer a {
  color: var(--gc-white);
}

.site-footer a:hover,
.site-footer a:focus,
.goodcasting-footer a:hover,
.goodcasting-footer a:focus {
  color: var(--gc-cyan);
}

.goodcasting-eyebrow {
  color: var(--gc-orange);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.9;
  text-transform: uppercase;
}

.goodcasting-card,
.goodcasting-surface {
  background: var(--gc-surface);
  border-radius: var(--gc-radius);
}

.goodcasting-section-dark {
  background: var(--gc-black);
  color: var(--gc-white);
}

.goodcasting-section-dark h1,
.goodcasting-section-dark h2,
.goodcasting-section-dark h3,
.goodcasting-section-dark h4,
.goodcasting-section-dark h5,
.goodcasting-section-dark h6 {
  color: var(--gc-white);
}

