/*
Theme Name: Sydney Child GoldWare
Theme URI: https://goldware.ro/
Description: Child theme for Sydney with custom colors and typography.
Author: GoldWare
Template: sydney
Version: 1.0.0
*/

@import url("../sydney/style.css");

/* Custom Styles */
body {
    font-family: 'Poppins', sans-serif; /* Similar font to logo */
    background-color: #F5F5F5; /* Light gray background */
    color: #333333;
}

h1, h2, h3, h4, h5, h6 {
    color: #333333;
}

a {
    color: #C9A227; /* Gold accent */
}

a:hover {
    color: #A08A1E; /* Slightly darker gold */
}

button, .btn {
    background-color: #C9A227;
    color: white;
    border: none;
    transition: all 0.3s ease-in-out;
}

button:hover, .btn:hover {
    background-color: #A08A1E;
}
