/*
 Theme Name:   Danza Child
 Theme URI:    https://themeholy.com/wordpress/danza
 Description:  This is a child theme for Danza - WordPress Theme
 Author:       Themeholy
 Author URI:   https://themeforest.net/user/themeholy 
 Template:     danza
 Version:      1.0
 Tags:         two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, custom-background, custom-colors, custom-header, custom-menu, theme-options, editor-style, featured-images, microformats, post-formats,  sticky-post, threaded-comments, translation-ready
 Text Domain:  danza-child
*/

/*  [ Add your custom css below ]
- - - - - - - - - - - - - - - - - - - - */ 

/* === Custom White & Gray Color Scheme === */

/* Backgrounds */
body,
.site,
.site-content {
    background-color: #ffffff; /* White background */
}

/* Headers, Footer, and Sections */
header,
footer,
.section,
.site-header,
.site-footer {
    background-color: #f5f5f5; /* Light gray */
}

/* Text Color */
body,
p,
li,
span,
a,
h1, h2, h3, h4, h5, h6 {
    color: #333333; /* Dark gray for text */
}

/* Links */
a {
    color: #666666; /* Medium gray links */
}
a:hover {
    color: #000000; /* Black on hover */
}

/* Buttons */
button,
input[type="submit"],
.wp-block-button__link {
    background-color: #cccccc;
    color: #000000;
    border: none;
}
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background-color: #999999;
    color: #ffffff;
}

/* Navigation */
.main-navigation,
.menu,
.navbar {
    background-color: #f0f0f0;
}
.main-navigation a,
.navbar a {
    color: #444444;
}
.main-navigation a:hover,
.navbar a:hover {
    color: #000000;
}

/* Forms */
input,
textarea,
select {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #cccccc;
}
input:focus,
textarea:focus,
select:focus {
    border-color: #999999;
}
