/* MIKE THE PLUMBER - REFINED GLASS THEME (FIXED BLACK TEXT) */

/* 1. Main Banner */
.mini-banner { 
    background: #fff; 
    border: 5px solid #fff176 !important; 
    border-radius: 15px; 
    margin-bottom: 25px; 
    text-align: center; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
}

/* 2. Navigation - GLASS BUTTONS */
nav { 
    display: flex; 
    justify-content: center; 
    gap: 12px; 
    margin-bottom: 30px; 
    flex-wrap: wrap; 
}

nav a { 
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.1) 50.1%, rgba(0,0,0,0.2) 100%), #0056b3 !important; 
    color: #ffffff !important; 
    padding: 15px 25px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: bold; 
    border: 4px solid #bbdefb !important; 
    display: inline-block;
    box-shadow: inset 0 2px 2px rgba(255,255,255,0.6), 0 4px 8px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    transition: 0.2s ease;
}

nav a.call-btn { 
    background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.1) 50.1%, rgba(0,0,0,0.2) 100%), #d32f2f !important; 
    border: 4px solid #ffcdd2 !important; 
}

/* 3. Service Boxes */
.home-box, .detail-container, .main-box { 
    background: #fff; 
    border: 5px solid #fff176 !important; 
    border-radius: 20px; 
    text-decoration: none; 
    padding-bottom: 25px; 
    display: block; 
    text-align: center; 
    color: #222; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
    overflow: hidden;
    margin-bottom: 15px;
}

/* 4. REFINED GLASS TITLES - Fixed and Lightened */
h1, h2 { 
    font-weight: 800 !important;
    font-size: 1.7rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;

    /* The "Anti-Black-Text" Fix */
    color: #0056b3; /* Fallback color */
    background: linear-gradient(to bottom, #ffffff 0%, #7fb5ff 45%, #0056b3 50%, #3385ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Rounded edges with subtle 3D depth */
    -webkit-text-stroke: 0.5px #3385ff;
    filter: drop-shadow(1px 1px 0px #0056b3) drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

/* Red version for specific headers */
.detail-text h2, .main-box h1 {
    color: #d32f2f; /* Fallback color */
    background: linear-gradient(to bottom, #ffffff 0%, #ff8a80 45%, #d32f2f 50%, #ff5252 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px #ff5252;
    filter: drop-shadow(1px 1px 0px #8b0000) drop-shadow(1px 1px 2px rgba(0,0,0,0.2));
}

/* 5. The Footer */
footer { 
    background: linear-gradient(to bottom, #0056b3, #003366) !important; 
    text-align: center !important; 
    padding: 45px 20px !important; 
    margin-top: 60px !important; 
    margin-bottom: 120px !important; 
    border-radius: 20px; 
    border-top: 5px solid #fff176 !important; 
    display: block !important;
    clear: both;
}

footer p, footer strong { color: #ffffff !important; margin: 12px 0 !important; display: block; }
footer a { color: #ffffff !important; text-decoration: underline !important; }

/* Image Cropper */
.image-cutter { display: block; width: 92%; height: 180px; margin: 15px auto; overflow: hidden; border-radius: 12px; }
.image-cutter img { width: 100%; height: 100%; object-fit: cover; }