/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme with Trellis-style typography
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Import Google Fonts (optional) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Lora&display=swap');

/* Base Typography */
body {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.75;
  color: #222;
}
/* Last updated */
.entry-meta time:before {
    content: 'Last updated: ';
}

/* Paragraph spacing */
p {
  margin-bottom: 1.5em;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  color: #111;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

/* Links */
a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin-bottom: 1.5em;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 22px;
  }
}

/* Set full site background to white */
body {
  background-color: #fff;
}

/* Optional: Remove background from page wrapper if used */
.site,
.site-content,
.site-main,
.site-container {
  background-color: transparent;
}
/* Header background color */
.site-header {
  background-color: #f5f0e9; /* Change to your desired color */
}
/* Header navigation background color */
.main-navigation {
  background-color: #f5f0e9;
  color: #b85042;
}
.main-navigation .main-nav ul li a {
  color: #b85042;
}

.main-navigation .main-nav ul li.current-menu-item a {
  color: #000;
}
.main-navigation .main-nav ul li a:hover {
  color: #000 !important;
}
/* Footer background color */
.site-info {
  background-color: #f5f0e9; /* Change to your desired color */
}
/* All links */
a {
  color: #b85042;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
  color: #000;
}
/* General buttons */
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.wp-block-button__link,
.button {
  background-color: #b85042;
}

/* On hover */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.wp-block-button__link:hover,
.button:hover {
  background-color: #b85042; /* Optional: a slightly darker shade for hover */
}

/* Frist para */
div.entry-content p strong em {
  border-bottom: 0.5px solid #b85042;
}