/*
Theme Name: Saxophone Duo Dynamic
Theme URI: https://example.com/saxophone-duo-dynamic
Author: Your Name
Author URI: https://example.com
Description: A dynamic theme for San Jose and San Diego Saxophone sites.
Version: 1.0.0
Requires at least: 6.8
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: saxophone_duo_dynamic
*/

/* --- Color Palette --- */
:root {
    --color-blue-page: #ADD8E6; /* Light Blue/Sky Blue */
    --color-old-brass: #D4AF37; /* A bright, antique gold/brass color */
    --font-site-name: 'Georgia', serif; /* Good choice for italic/classic look */
    --font-script: 'Brush Script MT', 'cursive'; /* Script font for tagline */
}

body {
    background-color: var(--color-blue-page);
}

/* --- Banner Styling (header.php) --- */
.site-branding {
    text-align: center;
    padding: 40px 20px 10px;
    background: rgba(255, 255, 255, 0.8); /* Slight white background for text visibility */
}

/* Site Name: Large, Italic, Brass Color */
.site-title {
    font-family: var(--font-site-name);
    font-size: 5rem; /* Very large font */
    font-style: italic;
    color: var(--color-old-brass);
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Adds prominence */
}

/* Subtitle/Tagline: Smaller Script Font */
.site-description {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: #444;
    margin-top: 5px;
}

/* --- Navigation Menu (header.php) --- */
.main-navigation {
    padding: 10px 0;
    text-align: center;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Flexbox for even spacing */
    justify-content: space-around; /* Spreads items evenly across the front page */
    flex-wrap: wrap;
}

.menu-list li {
    margin: 0 15px;
}

.menu-list a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s;
}

.menu-list a:hover {
    border-bottom: 3px solid var(--color-old-brass);
}

/* --- Site Switcher Button (footer.php) --- */
.site-switcher-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    padding: 10px 20px;
    background-color: var(--color-old-brass);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s;
}

.site-switcher-button:hover {
    background-color: #FFD700; /* Brighter gold on hover */
}

/* --- Footer (footer.php) --- */
#site-footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 30px;
}

.copyright, .versioning {
    margin: 5px 0;
    font-size: 0.9rem;
}