/*
Theme Name:   TwentyTwentyFour Child
Theme URI:    https://stressfreerenovations.com.au/
Description:  A child theme of TwentyTwentyFour
Author:       Andrew Jennings
Author URI:   http://stressfreerenovations.com.au/
Template:     twentytwentyfour
Version:      1.0.0
*/
body, main, p, h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif !important;
    font-weight: 300;
}

p {
    font-size: 18px; /* Adjust size as needed */
    line-height: 1.6; /* Improves readability */
}
.btn-gold {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, 
              background-color 0.15s ease-in-out, 
              border-color 0.15s ease-in-out, 
              box-shadow 0.15s ease-in-out;

  background-color: #E5B80A;
  border: 1px solid #E5B80A;
  color: black;
}

.btn-gold:hover {
  background-color: #c49c08; /* Slightly darker on hover */
  border-color: #c49c08;
  color: black;
}
@media (min-aspect-ratio: 16/9) {
            .video-iframe {
                width: 100vw;
                height: 56.25vw; /* 100 * 9/16 */
            }
        }
@media (max-aspect-ratio: 16/9) {
            .video-iframe {
                width: 177.78vh; /* 100 * 16/9 */
                height: 100vh;
            }
        }