/*
Theme Name: Forgiveness Coach
Theme URI: https://example.com/forgiveness-coach
Author: Your Name
Author URI: https://example.com
Description: A calm green WordPress theme for forgiveness coaching websites
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: forgiveness-coach
*/

/* Paul Grotesk Font Faces */
/* @font-face {
  font-family: 'Paul Grotesk';
  font-style: normal;
  font-weight: 100;
  src: url('./fonts/paulgrotesk/Fontspring-DEMO-paulgrotesk-ultralight.otf') format('opentype');
} */

/* @font-face {
  font-family: 'Paul Grotesk';
  font-style: normal;
  font-weight: 300;
  src: url('./fonts/paulgrotesk/Fontspring-DEMO-paulgrotesk-light.otf') format('opentype');
} */

/* @font-face {
  font-family: 'Paul Grotesk';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/paulgrotesk/Fontspring-DEMO-paulgrotesk-regular.otf') format('opentype');
} */

/* @font-face {
  font-family: 'Paul Grotesk';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/paulgrotesk/Fontspring-DEMO-paulgrotesk-medium.otf') format('opentype');
} */

/* @font-face {
  font-family: 'Paul Grotesk';
  font-style: normal;
  font-weight: 600;
  src: url('./fonts/paulgrotesk/Fontspring-DEMO-paulgrotesk-semibold.otf') format('opentype');
} */

/* @font-face {
  font-family: 'Paul Grotesk';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/paulgrotesk/Fontspring-DEMO-paulgrotesk-bold.otf') format('opentype');
} */

/* @font-face {
  font-family: 'Paul Grotesk';
  font-style: normal;
  font-weight: 900;
  src: url('./fonts/paulgrotesk/Fontspring-DEMO-paulgrotesk-black.otf') format('opentype');
} */


@import url('https://fonts.cdnfonts.com/css/paul-grotesk');

:root {
  --color-primary: #4a7c59;
  --color-secondary: #8fbc8f;
  --color-accent: #6b8e6b;
  --color-light: #f0f8f0;
  --color-dark: #2d4a2d;
}

body {
  font-family: 'Paul Grotesk', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Paul Grotesk', sans-serif;
  font-weight: 600;
}

.btn-primary {
  background-color: #15803d;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #166534;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background-color: #dcfce7;
  color: #166534;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: #bbf7d0;
  color: #166534;
  text-decoration: none;
}
