/*
Theme Name: Porcelain Child
Description: Child theme for Porcelain theme. All customisations should be made here to preserve parent theme updates.
Author: Coulsy Ltd
Template: porcelain
Version: 1.0.0
*/

/* 
 * All custom styles should be added below this line.
 * The parent theme stylesheet is automatically enqueued via functions.php
 */

/* Global Font Override - Inter */
/* Override theme's inline styles with higher specificity */
html body,
body,
body p,
body div,
body span,
body input,
body textarea,
body select,
body button,
body a,
#content,
#content p,
#content div,
.sidebar-box,
.footer-widgets {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6,
h1, h2, h3, h4, h5, h6,
.site-title,
.widget-title,
.footer-box .title,
#menu ul li a,
.page-title h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 600;
}

/* Sub Footer Styles */
.footer-sub {
  float: left;
  width: 100%;
  clear: both;
}
.footer-sub-copyright {
  background-color: #2a2a2a;
  padding: 15px 0;
  text-align: center;
}
.footer-sub-copyright span {
  color: #b0b0b0;
  font-size: 12px;
  text-transform: none;
  letter-spacing: normal;
}
.footer-sub-builtby {
  background-color: #ffffff;
  padding: 40px 0;
}
.footer-sub-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-sub-text {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-sub-text p {
  margin: 0;
  color: #666666;
  font-size: 14px;
  font-family: inherit;
}
.coulsy-code-logo {
  display: inline-block;
  line-height: 0;
}
.coulsy-code-logo img {
  height: auto;
  max-height: 50px;
  width: auto;
  display: block;
}
.footer-sub-cta {
  color: #666666;
  font-size: 14px;
}
.footer-sub-cta a {
  color: #359bb4;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-sub-cta a:hover {
  color: #2a7a8a;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-sub-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-sub-text {
    justify-content: center;
  }
}
