/*
Theme Name: Piano Tuition
Description: A custom WordPress theme for piano tuition websites.
Version: 1.0.0
Author: Iris Salvador
Author URI: https://projectckigs.com/
*/

/* Ensure child elements respect global box sizing rules */
*, *::before, *::after {
    box-sizing: inherit;
}
p:empty {
    display: none !important;
}

p {
    margin: 0;
    line-height: 1.5;
    padding: 0px 0px 15px 0px;
}

body {
  color: var(--wp--preset--color--primary);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Fredoka", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
}

a {
  color: var(--wp--preset--color--active-color);
  text-decoration: underline;
}

a:hover, a:focus {
  text-decoration-color: var(--wp--preset--color--primary);
  transition: color 0.3s ease;
}


/* Global Styles */
.content-container, .site-main .wp-block-group {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.site-main > .wp-block-group, .entry-content > .wp-block-group {
    margin-top: 50px;
    margin-bottom: 50px;
}




/* Footer */
footer {
    background-color: #1E293B;
    color: #FFFFFF;
    padding-top: 50px;
    padding-bottom: 15px;
}
.footer-menu {
    display: flex;
    justify-content: space-between;
    margin-top: 15px
}
.footer-menu a {
    text-decoration: none;
    color: var(--wp--preset--color--base);
    font-family: "Fredoka", sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-menu a:hover, .footer-menu a:focus {
    color: var(--wp--preset--color--active-color);
    transition: color 0.3s ease;
    text-decoration: underline;
}

#menu-quick-links {
    column-count: 2;     /* Creates exactly 2 columns */
    column-gap: 20px;
}
.widget_nav_menu, .footer-menu ul {
    list-style: none;
    padding: 0;
}

.widget-title {
    color: var(--wp--preset--color--active-color);
    letter-spacing: 0.5px;
}

footer hr {
    border-width: 0.5px;
}

footer figure {
    margin: 0 auto;
}