/* OTM Insights — Custom Header */

.otm-header {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;
}

.otm-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
}

/* LEFT SIDE */
.otm-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* LOGO */
.otm-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.otm-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
}

.otm-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: #32363a;
}

/* NAV MENU */
.otm-nav {
    display: flex;
    align-items: center;
}

.otm-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.otm-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.otm-menu li a {
    display: block;
    padding: 6px 14px;
    color: #32363a;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.otm-menu li a:hover,
.otm-menu li.current-menu-item > a {
    color: #0070f2;
}

/* RIGHT SIDE */
.otm-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* SOCIAL ICONS */
.otm-social-icon {
    display: flex;
    align-items: center;
    color: #32363a;
    transition: color 0.15s ease;
    text-decoration: none;
}

.otm-social-icon[aria-label="LinkedIn"] { color: #0A66C2; }
.otm-social-icon[aria-label="YouTube"]  { color: #FF0000; }

.otm-social-icon:hover {
    color: #0070f2;
}

/* JOIN NOW BUTTON */
.otm-join-btn {
    background-color: #0070f2;
    color: #ffffff !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: background-color 0.15s ease;
    white-space: nowrap;
}

.otm-join-btn:hover {
    background-color: #0050b3;
    color: #ffffff !important;
}

/* Remove default GeneratePress header */
.site-header,
.main-navigation {
    display: none !important;
}

/* Mobile — hide nav for now */
@media (max-width: 768px) {
    .otm-menu {
        display: none;
    }
    .otm-header-inner {
        padding: 0 16px;
    }
}
