/*
Theme Name: Tattoo Studio Custom Theme
Author: Dein Name
Version: 1.0
*/

body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: sans-serif;
}

.custom-tattoo-header {
    background-color: #000000;
    padding: 20px 30px;
    border-bottom: 1px solid #111111;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.header-container {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-end !important;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 25px !important;
}

.site-legal-footer {
    box-sizing: border-box;
    width: 100%;
    padding: 28px 20px;
    border-top: 1px solid rgba(215, 180, 95, 0.35);
    background: #071a15;
    color: #eee9df;
    text-align: center;
    font-size: 14px;
}

.site-legal-footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 12px;
}

.site-legal-footer a {
    color: #d7b45f;
    text-decoration: none;
}

.site-legal-footer a:hover,
.site-legal-footer a:focus-visible {
    color: #efd27b;
    text-decoration: underline;
}

.site-legal-footer p {
    margin: 0;
}


.header-logo,
.header-machines {
    display: block !important;
    flex-shrink: 0 !important;
}

.header-logo img,
.header-machines img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
}

.header-status-wrapper {
    display: flex !important;
    align-items: center !important; 
    flex-shrink: 0 !important;
}

/* ==========================================
   1. DESKTOP-ANSICHT (Feste Breitenverhältnisse)
   ========================================== */
@media (min-width: 1026px) {
    /* HIER STEUERST DU JETZT DIE BREITE DES LOGOS AUF DEM DESKTOP */
    .header-logo-container { 
        width: 420px !important; /* Erhöhe diesen Wert (z.B. auf 450px), falls es noch größer soll! */
        max-width: 420px !important; 
    }
    .header-logo-container img {
        width: 420px !important; /* MUSS exakt denselben Wert wie die Box darüber haben! */
        height: auto !important;
    }

    /* Die Höhe der Uhrzeit neben dem vergrößerten Logo austarieren */
    .header-status-wrapper { 
        padding-bottom: 25px !important; /* Erhöht, damit die Uhr bei dem größeren Logo wieder perfekt auf Höhe 'TATTOO' sitzt */
    } 

    /* Die Breite der Tattoomaschinen auf dem Desktop */
    .header-machines-container { 
        width: 240px !important; 
        max-width: 240px !important; 
    }
    .header-machines-container img {
        width: 240px !important; /* MUSS exakt denselben Wert wie die Box darüber haben! */
        height: auto !important;
    }
}


/* ==========================================
   2. TABLET-ANSICHT (Kompakt verkleinert)
   ========================================== */
@media (max-width: 1025px) and (min-width: 769px) {
    .header-logo-container { width: 140px !important; max-width: 1400px !important; }
    .header-status-wrapper { padding-bottom: 2px !important; }
    .header-machines-container { width: 110px !important; max-width: 110px !important; }
    
    .header-status-wrapper *, .plugin-status-text, [class*="mbhi"] {
        font-size: 20px !important;
    }
}

/* ==========================================
   3. SMARTPHONE-ANSICHT (Zierlich fürs Handy)
   ========================================== */
@media (max-width: 768px) {
    .header-logo-container { width: 100px !important; max-width: 100px !important; }
    .header-status-wrapper { padding-bottom: 0 !important; }
    .header-machines-container { width: 80px !important; max-width: 80px !important; }
    
    .header-status-wrapper *, .plugin-status-text, [class*="mbhi"] {
        font-size: 11px !important;
        letter-spacing: 0.3px !important;
    }
}

/* ==========================================
   STYLING DER SCHRIFT (Dunkles Grünmetallic)
   ========================================== */
.plugin-status-text,
.plugin-status-text *, 
[class*="mbhi"], 
.mbhi-status {
    font-family: 'Alex Brush', cursive !important; 
    letter-spacing: 1.5px; 
    text-align: center; 
    font-size: 28px; 
    white-space: nowrap !important; 
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
    background: linear-gradient(to bottom, #3b4d42 0%, #61796a 40%, #2e3d34 70%, #52665a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.9)) !important;
    font-weight: 900 !important; 
}

.plugin-status-text strong, 
.plugin-status-text b,
.mbhi-status strong {
    background: linear-gradient(to bottom, #52665a 0%, #799182 35%, #3b4d42 65%, #61796a 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-weight: 900 !important; 
}
