/*/////////////////////////////////////////////////////////////////////
 // 守一國際 / 久大水產 - 完整頁首排版修正
 /////////////////////////////////////////////////////////////////////*/

/* --- 1. 頁首容器配置 --- */
body #header .header-inner.container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important; /* 禁止斷行 */
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* --- 2. 圖片縮小控制 --- */
.brand-logo {
    height: 50px !important; /* 在這裡控制圖片大小，你可以改為 40px 或 60px */
    width: auto !important;
    object-fit: contain;
    flex-shrink: 0; /* 防止圖片被擠壓 */
}

/* --- 3. 品牌文字樣式 --- */
.header-brand {
    display: flex !important;
    align-items: center !important;
    flex-shrink: 1; /* 空間不足時允許微縮 */
}

.header-brand-link {
    text-decoration: none !important;
    color: inherit !important;
    display: flex;
    align-items: center;
}

.brand-text {
    line-height: 1.2;
    white-space: nowrap; /* 防止名稱斷行 */
}

.main-title {
    font-size: 18px; /* 這裡調整公司名稱字級 */
    font-weight: 700;
    color: #333;
}

.main-title small {
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.header-divider {
    height: 30px;
    border-left: 1px solid #ddd;
    margin: 0 15px;
}

.header-slogan {
    font-size: 14px;
    color: #888;
    white-space: nowrap;
}

/* --- 4. 【核心修正】選單文字鎖定 16px --- */
/* 使用超具體路徑以蓋過主題預設樣式 */
body #header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px !important; 
    font-weight: 600 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    color: #333 !important;
    white-space: nowrap !important;
}

/* Home 圖示同步縮小 */
body #header .navbar .navbar-nav .nav-link .nav-link-icon {
    font-size: 18px !important;
}

/* --- 5. 響應式：避免空間不足導致的斷行 --- */
@media (max-width: 1200px) {
    /* 螢幕小於 1200px 時，先隱藏標語，把空間讓給選單 */
    .header-slogan, .header-divider {
        display: none !important;
    }
}

@media (max-width: 991px) {
    /* 平板以下字體稍微縮減 */
    body #header .navbar .navbar-nav .nav-item .nav-link {
        font-size: 15px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .brand-logo {
        height: 40px !important;
    }
}