/* ===============================
   MDH HEADER — STANDALONE MODULE
   =============================== */

.mdh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 36px;
    background-color: #1a1a1a;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    box-sizing: border-box; /* 🔴 THIS IS CRITICAL */
}



/* Logo Area */
.mdh-header-left {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: rgba(26, 26, 26, 0.03);
    border-radius: 6px;
}

.mdh-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15)) contrast(1.15);
}

/* Right Menu Button */
.mdh-menu-btn {
    background: none;
    border: 1px solid #f8f7f4;
    color: #f8f7f4;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 8px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.mdh-menu-btn:hover {
    background: #f8f7f4;
    color: #1a1a1a;
}

/* Menu Overlay */
.mdh-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(248, 247, 244, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mdh-menu-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.mdh-menu-content {
    text-align: center;
}

.mdh-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mdh-menu-items li {
    margin: 30px 0;
}

.mdh-menu-items a {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mdh-menu-items a:hover {
    opacity: 0.5;
}


.mdh-header-inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
