/*
Theme Name: My Music Academy Child Theme
Template: my-music-academy-theme
Version: 1.0
*/

/* Erase the theme's default hardcoded Home header */
.home .page-content-wrapper > h1 {
    display: none !important;
}

/* --- NAVIGATION BAR STYLES (GLASSMORPHISM CONVERSION) --- */
.site-navigation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    z-index: 99999 !important;
    
    /* Your beautiful glassheader effect */
    background-color: rgba(17, 17, 17, 0.4) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: center;
}

.site-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.site-navigation li {
    display: inline-block;
    background: transparent !important;
    background-color: transparent !important;
}

.site-navigation a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
    
    /* Strip out any background blocks behind the links when scrolling */
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.site-navigation a:hover {
    color: #c1121f !important;
}

/* --- INSTAGRAM INTEGRATION --- */
.theme-instagram-integration {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5px !important;
    vertical-align: middle !important;
}
.theme-instagram-integration svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
}
.theme-instagram-integration:hover {
    transform: scale(1.1) !important;
}

/* --- ACCENT COLORS --- */
.cta-button-red, .submit-form-btn {
    background-color: #c1121f; /* Change this hex code to change button color */
}